2013-03-15 13:11:33 +00:00
|
|
|
namespace phoenix {
|
|
|
|
|
|
|
|
struct pRadioItem : public pAction {
|
2013-05-02 11:25:45 +00:00
|
|
|
RadioItem& radioItem;
|
2013-03-15 13:11:33 +00:00
|
|
|
|
|
|
|
bool checked();
|
|
|
|
void setChecked();
|
2013-05-02 11:25:45 +00:00
|
|
|
void setGroup(const group<RadioItem>& group);
|
|
|
|
void setText(const string& text);
|
2013-03-15 13:11:33 +00:00
|
|
|
|
2013-05-02 11:25:45 +00:00
|
|
|
pRadioItem(RadioItem& radioItem) : pAction(radioItem), radioItem(radioItem) {}
|
2013-03-15 13:11:33 +00:00
|
|
|
void constructor();
|
|
|
|
void destructor();
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|