mirror of https://github.com/bsnes-emu/bsnes.git
16 lines
305 B
C++
16 lines
305 B
C++
|
namespace hiro {
|
||
|
|
||
|
struct pAction : pObject {
|
||
|
Declare(Action, Object)
|
||
|
|
||
|
auto setEnabled(bool enabled) -> void override;
|
||
|
auto setFont(const string& font) -> void override;
|
||
|
auto setVisible(bool visible) -> void override;
|
||
|
|
||
|
auto _mnemonic(string text) -> string;
|
||
|
|
||
|
GtkWidget* widget = nullptr;
|
||
|
};
|
||
|
|
||
|
}
|