mirror of https://github.com/bsnes-emu/bsnes.git
16 lines
273 B
C++
16 lines
273 B
C++
|
namespace hiro {
|
||
|
|
||
|
struct pComboButtonItem : pObject {
|
||
|
Declare(ComboButtonItem, Object)
|
||
|
|
||
|
auto setIcon(const image& icon) -> void;
|
||
|
auto setSelected() -> void;
|
||
|
auto setText(const string& text) -> void;
|
||
|
|
||
|
auto _parent() -> pComboButton*;
|
||
|
|
||
|
GtkTreeIter gtkIter;
|
||
|
};
|
||
|
|
||
|
}
|