-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathshared.h
61 lines (50 loc) · 1.81 KB
/
shared.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
#ifndef ADVANCED_BRIGHTNESS_SLIDER_SHARED_H
#define ADVANCED_BRIGHTNESS_SLIDER_SHARED_H
#import <UIKit/UIKit.h>
extern "C" {
void initNative();
void initPrysm();
void initBigSurCenter();
}
@interface BKSLocalDefaults
-(BOOL)isALSEnabled;
@end
@interface CCUIContinuousSliderView : UIControl
@property (nonatomic) BOOL isBrightnessSlider;
-(void)_handleValueChangeGestureRecognizer:(UIPanGestureRecognizer*)recognizer;
-(void)setGlyphState:(NSString*)arg1;
-(void)setValue:(float)arg1;
@end
@interface CCUIModuleSliderView : UIControl
@property (nonatomic) BOOL isBrightnessSlider;
-(void)setValue:(float)arg1;
@end
@interface CCUIDisplayModuleViewController : UIViewController
@property (nonatomic,retain) CCUIModuleSliderView* sliderView;
-(void)setGlyphState:(NSString*)arg1;
@end
@interface CCUICAPackageDescription : NSObject
-(NSURL *)packageURL;
@end
@interface CCUICAPackageView : UIView
@property CCUICAPackageDescription* packageDescription;
-(void)setPackageDescription:(CCUICAPackageDescription*)arg1;
-(void)setStateName:(NSString*)arg1;
@end
@interface PrysmSliderViewController : UIViewController
@property (nonatomic,retain) CCUICAPackageView * packageView;
@property (assign,nonatomic) int style;
-(BOOL)isBrightnessSlider;
-(void)setProgressValue:(double)arg1 animated:(BOOL)arg2;
-(void)setPackageOverlayView:(CCUICAPackageView *)arg1;
-(void)move:(UIPanGestureRecognizer*)recognizer;
@end
@interface SCDisplaySliderModuleViewController : UIViewController
@property (nonatomic,retain) UIView * sliderView;
@property (nonatomic,retain) NSLayoutConstraint * sliderLeadingConstraint;
@property (nonatomic,retain) UIView * knobView;
-(void)setImageForFraction:(double)arg1;
-(void)updateSliderValue;
-(long long)style; // 0: iOS style, 1: macOS style (with knobView)
@end
#endif // ADVANCED_BRIGHTNESS_SLIDER_SHARED_H