bsnes/phoenix/cocoa/widget/console.cpp

33 lines
523 B
C++
Raw Normal View History

@implementation CocoaConsole : NSScrollView
-(id) initWith:(phoenix::Console&)consoleReference {
if(self = [super initWithFrame:NSMakeRect(0, 0, 0, 0)]) {
console = &consoleReference;
}
return self;
}
@end
namespace phoenix {
void pConsole::print(string text) {
}
void pConsole::reset() {
}
void pConsole::constructor() {
@autoreleasepool {
cocoaView = cocoaConsole = [[CocoaConsole alloc] initWith:console];
}
}
void pConsole::destructor() {
@autoreleasepool {
[cocoaView release];
}
}
}