mirror of https://github.com/bsnes-emu/bsnes.git
24 lines
475 B
C++
24 lines
475 B
C++
@interface CocoaCheckItem : NSMenuItem {
|
|
@public
|
|
phoenix::CheckItem* checkItem;
|
|
}
|
|
-(id) initWith:(phoenix::CheckItem&)checkItem;
|
|
-(void) activate;
|
|
@end
|
|
|
|
namespace phoenix {
|
|
|
|
struct pCheckItem : public pAction {
|
|
CheckItem& checkItem;
|
|
CocoaCheckItem* cocoaCheckItem = nullptr;
|
|
|
|
void setChecked(bool checked);
|
|
void setText(string text);
|
|
|
|
pCheckItem(CheckItem& checkItem) : pAction(checkItem), checkItem(checkItem) {}
|
|
void constructor();
|
|
void destructor();
|
|
};
|
|
|
|
}
|