mirror of https://github.com/bsnes-emu/bsnes.git
26 lines
559 B
C++
26 lines
559 B
C++
@interface CocoaCheckButton : NSButton {
|
|
@public
|
|
phoenix::CheckButton *checkButton;
|
|
}
|
|
-(id) initWith :(phoenix::CheckButton&)checkButton;
|
|
-(IBAction) activate :(id)sender;
|
|
@end
|
|
|
|
namespace phoenix {
|
|
|
|
struct pCheckButton : public pWidget {
|
|
CheckButton &checkButton;
|
|
CocoaCheckButton *cocoaCheckButton;
|
|
|
|
bool checked();
|
|
Size minimumSize();
|
|
void setChecked(bool checked);
|
|
void setText(const string &text);
|
|
|
|
pCheckButton(CheckButton &checkButton) : pWidget(checkButton), checkButton(checkButton) {}
|
|
void constructor();
|
|
void destructor();
|
|
};
|
|
|
|
}
|