2013-03-15 13:11:33 +00:00
|
|
|
@interface CocoaLabel : NSTextField {
|
|
|
|
@public
|
|
|
|
phoenix::Label *label;
|
|
|
|
}
|
2013-03-21 12:59:01 +00:00
|
|
|
-(id) initWith:(phoenix::Label&)label;
|
2013-03-15 13:11:33 +00:00
|
|
|
@end
|
|
|
|
|
|
|
|
namespace phoenix {
|
|
|
|
|
|
|
|
struct pLabel : public pWidget {
|
|
|
|
Label &label;
|
2013-03-21 12:59:01 +00:00
|
|
|
CocoaLabel *cocoaLabel = nullptr;
|
2013-03-15 13:11:33 +00:00
|
|
|
|
|
|
|
Size minimumSize();
|
2013-04-09 13:31:46 +00:00
|
|
|
void setGeometry(const Geometry &geometry);
|
2013-03-15 13:11:33 +00:00
|
|
|
void setText(const string &text);
|
|
|
|
|
|
|
|
pLabel(Label &label) : pWidget(label), label(label) {}
|
|
|
|
void constructor();
|
|
|
|
void destructor();
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|