mirror of https://github.com/bsnes-emu/bsnes.git
20 lines
324 B
C++
20 lines
324 B
C++
|
#if defined(Hiro_CheckLabel)
|
||
|
|
||
|
namespace hiro {
|
||
|
|
||
|
struct pCheckLabel : pWidget {
|
||
|
Declare(CheckLabel, Widget)
|
||
|
|
||
|
auto minimumSize() const -> Size override;
|
||
|
auto setChecked(bool checked) -> void;
|
||
|
auto setText(const string& text) -> void;
|
||
|
|
||
|
auto _setState() -> void;
|
||
|
|
||
|
QtCheckLabel* qtCheckLabel = nullptr;
|
||
|
};
|
||
|
|
||
|
}
|
||
|
|
||
|
#endif
|