-
Notifications
You must be signed in to change notification settings - Fork 4
/
STKPreferences.h
27 lines (20 loc) · 970 Bytes
/
STKPreferences.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
#import "STKConstants.h"
@class STKGroup;
@interface STKPreferences : NSObject <STKGroupObserver>
+ (instancetype)sharedPreferences;
- (void)reloadPreferences;
@property (nonatomic, readonly) STKActivationMode activationMode;
@property (nonatomic, readonly) BOOL shouldLockLayouts;
@property (nonatomic, readonly) BOOL shouldShowPreviews;
@property (nonatomic, readonly) BOOL shouldShowSummedBadges;
@property (nonatomic, readonly) BOOL shouldCloseOnLaunch;
@property (nonatomic, readonly) BOOL shouldHideGrabbers;
@property (nonatomic, readonly) BOOL shouldDisableSearchGesture;
@property (nonatomic, readonly) BOOL shouldOpenSpotlightFromStatusBarTap;
@property (nonatomic, assign) BOOL welcomeAlertShown;
@property (nonatomic, readonly) NSArray *identifiersForSubappIcons;
- (void)addOrUpdateGroup:(STKGroup *)group;
- (void)removeGroup:(STKGroup *)group;
- (STKGroup *)groupForCentralIcon:(SBIcon *)icon;
- (STKGroup *)groupForSubappIcon:(SBIcon *)icon;
@end