1234567891011121314151617181920212223 |
- #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
|