mirror of https://github.com/bsnes-emu/bsnes.git
18 lines
399 B
C++
18 lines
399 B
C++
|
namespace phoenix {
|
||
|
|
||
|
struct pComboButton : public pWidget {
|
||
|
ComboButton &comboButton;
|
||
|
|
||
|
void append(const string &text);
|
||
|
void modify(unsigned row, const string &text);
|
||
|
void remove(unsigned row);
|
||
|
void reset();
|
||
|
unsigned selection();
|
||
|
void setSelection(unsigned row);
|
||
|
|
||
|
pComboButton(ComboButton &comboButton) : pWidget(comboButton), comboButton(comboButton) {}
|
||
|
void constructor();
|
||
|
};
|
||
|
|
||
|
}
|