mirror of https://github.com/bsnes-emu/bsnes.git
23 lines
381 B
C++
23 lines
381 B
C++
![]() |
@interface CocoaLabel : NSTextField {
|
||
|
@public
|
||
|
phoenix::Label *label;
|
||
|
}
|
||
|
-(id) initWith :(phoenix::Label&)label;
|
||
|
@end
|
||
|
|
||
|
namespace phoenix {
|
||
|
|
||
|
struct pLabel : public pWidget {
|
||
|
Label &label;
|
||
|
CocoaLabel *cocoaLabel;
|
||
|
|
||
|
Size minimumSize();
|
||
|
void setText(const string &text);
|
||
|
|
||
|
pLabel(Label &label) : pWidget(label), label(label) {}
|
||
|
void constructor();
|
||
|
void destructor();
|
||
|
};
|
||
|
|
||
|
}
|