-
Notifications
You must be signed in to change notification settings - Fork 82
Expand file tree
/
Copy pathPreferencesWindowController.h
More file actions
28 lines (24 loc) · 988 Bytes
/
PreferencesWindowController.h
File metadata and controls
28 lines (24 loc) · 988 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
//
// PreferencesWindowController.h
// Thyme
//
// Created by João on 3/18/13.
//
//
#import <Cocoa/Cocoa.h>
#import "ShortcutRecorder/ShortcutRecorder.h"
@interface PreferencesWindowController : NSWindowController <SRRecorderControlDelegate> {
SRRecorderControl *startPauseShortcutRecorder;
SRRecorderControl *restartShortcutRecorder;
SRRecorderControl *finishShortcutRecorder;
NSButton *pauseOnSleepButton;
NSButton *pauseOnScreensaverButton;
NSButton *askForTagOnFinishButton;
}
@property (nonatomic, retain) IBOutlet SRRecorderControl *startPauseShortcutRecorder;
@property (nonatomic, retain) IBOutlet SRRecorderControl *restartShortcutRecorder;
@property (nonatomic, retain) IBOutlet SRRecorderControl *finishShortcutRecorder;
@property (nonatomic, retain) IBOutlet NSButton *pauseOnSleepButton;
@property (nonatomic, retain) IBOutlet NSButton *pauseOnScreensaverButton;
@property (nonatomic, retain) IBOutlet NSButton *askForTagOnFinishButton;
@end