2013-03-15 13:11:33 +00:00
|
|
|
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();
|
2013-03-21 12:59:01 +00:00
|
|
|
void destructor();
|
2013-03-15 13:11:33 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|