mirror of https://github.com/bsnes-emu/bsnes.git
17 lines
394 B
C++
17 lines
394 B
C++
namespace phoenix {
|
|
|
|
struct pRadioButton : public pWidget {
|
|
RadioButton& radioButton;
|
|
|
|
void setChecked();
|
|
void setGroup(const group<RadioButton>& group);
|
|
void setImage(const image& image, Orientation orientation);
|
|
void setText(string text);
|
|
|
|
pRadioButton(RadioButton& radioButton) : pWidget(radioButton), radioButton(radioButton) {}
|
|
void constructor();
|
|
void destructor();
|
|
};
|
|
|
|
}
|