-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathDing.h
81 lines (67 loc) · 2.13 KB
/
Ding.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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
#ifndef DING_H
#define DING_H
#import <Foundation/Foundation.h>
#import <UIKit/UIKit.h>
#import <Cephei/HBPreferences.h>
@interface SBRingerPillView : UIView
@property (nonatomic,retain) UIView * materialView;
@property (nonatomic,retain) UIView * silentModeLabel;
@property (nonatomic,retain) UIView * ringerLabel;
@property (nonatomic,retain) UIView * onLabel;
@property (nonatomic,retain) UIView * offLabel;
@property (nonatomic,retain) UIView * slider;
@property (nonatomic,retain) UIColor * glyphTintColor;
@property (nonatomic,copy) NSArray * glyphTintBackgroundLayers;
@property (nonatomic,copy) NSArray * glyphTintShapeLayers;
@property (assign,nonatomic) unsigned long long state;
@end
@interface SBWiFiManager : NSObject
+ (id)sharedInstance;
- (void)setWiFiEnabled:(BOOL)enabled;
- (void)setMobileDataEnabled:(BOOL)enabled;
@end
@interface BluetoothManager : NSObject
+ (id)sharedInstance;
- (void)setEnabled:(BOOL)enabled;
- (void)setPowered:(BOOL)powered;
@end
@interface SBUIFlashlightController : NSObject
+ (id)sharedInstance;
- (void)setLevel:(unsigned long long)arg1;
@end
@interface RadiosPreferences : NSObject
- (id)init;
- (void)setAirplaneMode:(BOOL)arg1;
@end
@interface _PMLowPowerMode : NSObject
+ (id)sharedInstance;
- (NSInteger)getPowerMode;
- (void)setPowerMode:(NSInteger)arg0 fromSource:(id)arg1;
@end
// LPM for iOS 13+
@interface _CDBatterySaver
- (id)batterySaver;
- (BOOL)setPowerMode:(long long)arg1 error:(id *)arg2;
@end
@interface SBOrientationLockManager : NSObject
+ (id)sharedInstance;
- (void)lock;
- (void)unlock;
@end
@interface SBRingerControl
+ (id)ding_sharedInstance;
- (BOOL)isRingerMuted;
- (void)setRingerMuted:(BOOL)arg1;
@end
@interface DNDModeAssertionService : NSObject
+ (id)serviceForClientIdentifier:(id)arg1;
- (id)takeModeAssertionWithDetails:(id)arg1 error:(id*)arg2;
- (BOOL)invalidateAllActiveModeAssertionsWithError:(id*)arg1;
@end
@interface DNDModeAssertionDetails : NSObject
+ (id)userRequestedAssertionDetailsWithIdentifier:(id)arg1 modeIdentifier:(id)arg2 lifetime:(id)arg3;
@end
@interface UISUserInterfaceStyleMode : NSObject
@property (nonatomic, assign) long long modeValue;
@end
#endif