-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathGeniusPreferencesController.h
More file actions
38 lines (29 loc) · 1.2 KB
/
GeniusPreferencesController.h
File metadata and controls
38 lines (29 loc) · 1.2 KB
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
// Genius
//
// This code is licensed under the Creative Commons Attribution-NonCommercial-ShareAlike 2.5 License.
// http://creativecommons.org/licenses/by-nc-sa/2.5/
#import <Cocoa/Cocoa.h>
// Study menu
extern NSString * GeniusPreferencesUseSoundEffectsKey; // bool
// Preferences panel
extern NSString * GeniusPreferencesListTextSizeModeKey; // integer (0-2)
extern NSString * GeniusPreferencesQuizUseFullScreenKey; // bool
extern NSString * GeniusPreferencesQuizUseVisualErrorsKey; // bool
extern NSString * GeniusPreferencesQuizMatchingModeKey; // integer (0-2)
enum {
GeniusPreferencesQuizExactMatchingMode = 0,
GeniusPreferencesQuizCaseInsensitiveMatchingMode,
GeniusPreferencesQuizSimilarMatchingMode
};
extern NSString * GeniusPreferencesQuizChooseModeKey; // integer (0-1)
enum {
GeniusPreferencesQuizNumItemsChooseMode = 0,
GeniusPreferencesQuizFixedTimeChooseMode,
};
extern NSString * GeniusPreferencesQuizNumItemsKey; // integer (1-)
extern NSString * GeniusPreferencesQuizFixedTimeMinKey; // integer (1-)
extern NSString * GeniusPreferencesQuizReviewLearnFloatKey; // float (0.0-100.0)
@interface GeniusPreferencesController : NSWindowController {
}
- (id) init;
@end