mirror of https://github.com/bsnes-emu/bsnes.git
23 lines
471 B
C++
23 lines
471 B
C++
#if defined(Hiro_CheckButton)
|
|
|
|
namespace hiro {
|
|
|
|
struct pCheckButton : pWidget {
|
|
Declare(CheckButton, Widget)
|
|
|
|
auto minimumSize() const -> Size override;
|
|
auto setBordered(bool bordered) -> void;
|
|
auto setChecked(bool checked) -> void;
|
|
auto setIcon(const image& icon) -> void;
|
|
auto setOrientation(Orientation orientation) -> void;
|
|
auto setText(const string& text) -> void;
|
|
|
|
auto _setState() -> void;
|
|
|
|
QtCheckButton* qtCheckButton = nullptr;
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|