old-hiro/gtk/widget/radio-label.hpp
2016-05-15 12:45:15 +02:00

21 lines
400 B
C++

#if defined(Hiro_RadioLabel)
namespace hiro {
struct pRadioLabel : pWidget {
Declare(RadioLabel, Widget)
auto minimumSize() const -> Size;
auto setChecked() -> void;
auto setGroup(sGroup group) -> void;
auto setText(const string& text) -> void;
auto groupLocked() const -> bool;
GtkToggleButton* gtkToggleButton = nullptr;
GtkRadioButton* gtkRadioButton = nullptr;
};
}
#endif