-
Notifications
You must be signed in to change notification settings - Fork 140
/
PrefsWindowController.h
54 lines (44 loc) · 2.31 KB
/
PrefsWindowController.h
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
// This file is part of Scroll Reverser <https://pilotmoon.com/scrollreverser/>
// Licensed under Apache License v2.0 <http://www.apache.org/licenses/LICENSE-2.0>
@class AppDelegate, LinkView;
#import <Cocoa/Cocoa.h>
@interface PrefsWindowController : NSWindowController <NSTabViewDelegate, NSToolbarDelegate, NSWindowDelegate>
@property (readonly) AppDelegate *appDelegate;
@property NSNumber *stepSizeSliderValue;
@property (weak) IBOutlet NSView *scrollingSettings;
@property (weak) IBOutlet NSView *appSettings;
@property (weak) IBOutlet LinkView *linkView;
@property (readonly) NSString *menuStringReverseScrolling;
@property (readonly) NSString *menuStringPreferencesTitle;
@property (readonly) NSString *menuStringScrollingSettings;
@property (readonly) NSString *menuStringAppSettings;
@property (readonly) NSString *menuStringScrollingAxes;
@property (readonly) NSString *menuStringScrollingDevices;
@property (readonly) NSString *menuStringCheckForUpdates;
@property (readonly) NSString *menuStringBetaUpdates;
@property (readonly) NSString *menuStringCheckNow;
@property (readonly) NSString *menuStringStartAtLogin;
@property (readonly) NSString *menuStringShowInMenuBar;
@property (readonly) NSString *menuStringHorizontal;
@property (readonly) NSString *menuStringVertical;
@property (readonly) NSString *menuStringTrackpad;
@property (readonly) NSString *menuStringMouse;
@property (readonly) NSString *menuStringClose;
@property (readonly) NSString *menuStringPermissionsHeader;
@property (readonly) NSString *menuStringPermissionsAXDescription;
@property (readonly) NSString *menuStringPermissionsIMDescription;
@property (readonly) NSString *menuStringPermissionsAX;
@property (readonly) NSString *menuStringPermissionsIM;
@property (readonly) NSString *menuStringAXButtonLabel;
@property (readonly) NSString *menuStringAXStatus;
@property (readonly) NSString *menuStringIMButtonLabel;
@property (readonly) NSString *menuStringIMStatus;
@property (readonly) NSString *menuStringMouseWheelHeader;
@property (readonly) NSString *menuStringMouseWheelStepSize;
@property (readonly) NSString *menuStringMouseWheelStepMin;
@property (readonly) NSString *menuStringMouseWheelStepMax;
- (IBAction)buttonPermissionsHelpClicked:(id)sender;
- (IBAction)buttonCheckForUpdatesClicked:(id)sender;
- (void)showPermissionsPane;
- (void)callAttention;
@end