2013-03-15 13:11:33 +00:00
|
|
|
namespace phoenix {
|
|
|
|
|
|
|
|
struct pCheckButton : public pWidget {
|
2013-05-02 11:25:45 +00:00
|
|
|
CheckButton& checkButton;
|
2013-03-15 13:11:33 +00:00
|
|
|
|
|
|
|
void setChecked(bool checked);
|
2013-11-28 10:29:01 +00:00
|
|
|
void setImage(const image& image, Orientation orientation);
|
2013-05-05 09:21:30 +00:00
|
|
|
void setText(string text);
|
2013-03-15 13:11:33 +00:00
|
|
|
|
2013-05-02 11:25:45 +00:00
|
|
|
pCheckButton(CheckButton& checkButton) : pWidget(checkButton), checkButton(checkButton) {}
|
2013-03-15 13:11:33 +00:00
|
|
|
void constructor();
|
2013-03-21 12:59:01 +00:00
|
|
|
void destructor();
|
2013-03-15 13:11:33 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|