mirror of
https://github.com/DerKoun/bsnes-hd.git
synced 2025-04-02 10:52:49 -04:00
19 lines
355 B
C++
19 lines
355 B
C++
#if defined(Hiro_Menu)
|
|
|
|
namespace hiro {
|
|
|
|
struct pMenu : pAction {
|
|
Declare(Menu, Action)
|
|
|
|
auto append(sAction action) -> void;
|
|
auto remove(sAction action) -> void;
|
|
auto setFont(const Font& font) -> void override;
|
|
auto setIcon(const image& icon) -> void;
|
|
auto setText(const string& text) -> void;
|
|
|
|
GtkWidget* gtkMenu = nullptr;
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|