mirror of https://github.com/axmolengine/axmol.git
24 lines
442 B
Objective-C
24 lines
442 B
Objective-C
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
@interface ConsoleWindowController : NSWindowController
|
|
{
|
|
NSTextView *textView;
|
|
IBOutlet NSButton *checkScroll;
|
|
IBOutlet NSButton *topCheckBox;
|
|
NSMutableArray *linesCount;
|
|
NSUInteger traceCount;
|
|
}
|
|
|
|
@property (assign) IBOutlet NSTextView *textView;
|
|
|
|
- (void) trace:(NSString*)msg;
|
|
- (IBAction)onClear:(id)sender;
|
|
- (IBAction)onScrollChange:(id)sender;
|
|
- (IBAction)onTopChange:(id)sender;
|
|
|
|
@end
|
|
|
|
|
|
|