mirror of
https://github.com/bsnes-emu/bsnes.git
synced 2025-02-23 22:52:34 +01:00
* GB: integrated SameBoy v0.12.1 by Lior Halphon * SFC: added HG51B169 (Cx4) math tables into bsnes binary
23 lines
410 B
C++
Executable File
23 lines
410 B
C++
Executable File
#if defined(Hiro_MenuRadioItem)
|
|
|
|
namespace hiro {
|
|
|
|
struct pMenuRadioItem : pAction {
|
|
Declare(MenuRadioItem, Action)
|
|
|
|
auto setChecked() -> void;
|
|
auto setGroup(sGroup group) -> void;
|
|
auto setText(const string& text) -> void;
|
|
|
|
auto groupLocked() const -> bool;
|
|
|
|
auto _doActivate() -> void;
|
|
|
|
GtkCheckMenuItem* gtkCheckMenuItem = nullptr;
|
|
GtkRadioMenuItem* gtkRadioMenuItem = nullptr;
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|