1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
|
#if defined(Hiro_Button)
@interface CocoaButton : NSButton {
@public
hiro::mButton* button;
}
-(id) initWith:(hiro::mButton&)button;
-(IBAction) activate:(id)sender;
@end
namespace hiro {
struct pButton : pWidget {
Declare(Button, Widget)
auto minimumSize() const -> Size override;
auto setBordered(bool bordered) -> void;
auto setGeometry(Geometry geometry) -> void override;
auto setIcon(const multiFactorImage& icon) -> void;
auto setOrientation(Orientation orientation) -> void;
auto setText(const string& text) -> void;
CocoaButton* cocoaButton = nullptr;
};
}
#endif
|