obs-studio/UI/noncheckable-button.hpp

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
512 B
C++
Raw Normal View History

#pragma once
#include <QPushButton>
/* Button with its checked property not changed when clicked.
* Meant to be used in situations where manually changing the property
* is always preferred. */
class NonCheckableButton : public QPushButton {
Q_OBJECT
inline void nextCheckState() override {}
public:
inline NonCheckableButton(QWidget *parent = nullptr)
: QPushButton(parent)
{
}
inline NonCheckableButton(const QString &text,
QWidget *parent = nullptr)
: QPushButton(text, parent)
{
}
};