forked from pilotmoon/Scroll-Reverser
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathDebugWindowController.h
More file actions
31 lines (24 loc) · 874 Bytes
/
DebugWindowController.h
File metadata and controls
31 lines (24 loc) · 874 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
//
// DebugWindowController.h
// ScrollReverser
//
// Created by Nicholas Moore on 07/05/2015.
//
//
#import <Cocoa/Cocoa.h>
@class Logger, LoggerScrollView, AppDelegate;
@interface DebugWindowController : NSWindowController <NSTableViewDataSource, NSTableViewDelegate>
@property (weak) IBOutlet NSTableView *consoleTableView;
@property (weak) IBOutlet LoggerScrollView *consoleScrollView;
@property (weak, nonatomic) Logger *logger;
@property BOOL paused;
@property (readonly) NSString *uiStringDebugConsole;
@property (readonly) NSString *uiStringClear;
@property (readonly) NSString *uiStringPause;
@property (readonly) NSString *uiStringLogState;
@property (readonly) NSString *uiStringShowTestWindow;
@property (readonly) AppDelegate *appDelegate;
- (IBAction)clearLog:(id)sender;
- (IBAction)logState:(id)sender;
- (IBAction)showDemoWindow:(id)sender;
@end