bsnes/hiro/cocoa/widget/console.cpp
byuu 903d1e4012 v107.8
* GB: integrated SameBoy v0.12.1 by Lior Halphon
* SFC: added HG51B169 (Cx4) math tables into bsnes binary
2019-07-17 21:11:46 +09:00

46 lines
741 B
C++
Executable file

#if defined(Hiro_Console)
@implementation CocoaConsole : NSScrollView
-(id) initWith:(phoenix::Console&)consoleReference {
if(self = [super initWithFrame:NSMakeRect(0, 0, 0, 0)]) {
console = &consoleReference;
}
return self;
}
@end
namespace hiro {
void pConsole::print(string text) {
}
void pConsole::reset() {
}
void pConsole::setBackgroundColor(Color color) {
}
void pConsole::setForegroundColor(Color color) {
}
void pConsole::setPrompt(string prompt) {
}
void pConsole::constructor() {
@autoreleasepool {
cocoaView = cocoaConsole = [[CocoaConsole alloc] initWith:console];
}
}
void pConsole::destructor() {
@autoreleasepool {
[cocoaView removeFromSuperview];
[cocoaView release];
}
}
}
#endif