mirror of https://github.com/bsnes-emu/bsnes.git
20 lines
313 B
C++
20 lines
313 B
C++
#if defined(Hiro_ComboButton)
|
|
|
|
namespace hiro {
|
|
|
|
struct pComboButtonItem : pObject {
|
|
Declare(ComboButtonItem, Object)
|
|
|
|
auto setImage(const Image& icon) -> void;
|
|
auto setSelected() -> void;
|
|
auto setText(const string& text) -> void;
|
|
|
|
auto _parent() -> pComboButton*;
|
|
|
|
GtkTreeIter gtkIter;
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|