bsnes/hiro/cocoa/widget/check-button.hpp

27 lines
643 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 = nullptr;
Size minimumSize();
void setChecked(bool checked);
void setGeometry(Geometry geometry);
void setImage(const image& image, Orientation orientation);
void setText(string text);
pCheckButton(CheckButton& checkButton) : pWidget(checkButton), checkButton(checkButton) {}
void constructor();
void destructor();
};
}