forked from pilotmoon/Scroll-Reverser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPrefsWindowController.h
31 lines (25 loc) · 1.3 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
// 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>
@property (readonly) AppDelegate *appDelegate;
@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 *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 *menuStringTablet;
@end