mirror of https://github.com/bsnes-emu/bsnes.git
19 lines
305 B
C++
19 lines
305 B
C++
|
#if defined(Hiro_RadioLabel)
|
||
|
|
||
|
namespace hiro {
|
||
|
|
||
|
struct pRadioLabel : pWidget {
|
||
|
Declare(RadioLabel, Widget)
|
||
|
|
||
|
auto minimumSize() -> Size;
|
||
|
auto setChecked() -> void;
|
||
|
auto setGroup(sGroup group) -> void override;
|
||
|
auto setText(const string& text) -> void;
|
||
|
|
||
|
auto onActivate() -> void;
|
||
|
};
|
||
|
|
||
|
}
|
||
|
|
||
|
#endif
|