forked from p2kdev/TinyWidget14
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTweak.h
42 lines (34 loc) · 1.31 KB
/
Tweak.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
#import <UIKit/UIKit.h>
@interface UIView ()
- (id)_viewControllerForAncestor;
@end
@interface MRUCoverSheetViewController : UIViewController
@end
@interface MRUNowPlayingLabelView : UIView
@property (nonatomic, assign) NSInteger context;
@property (nonatomic, assign) NSInteger tp_userInterfaceLayoutDirection;
@end
@interface MRUNowPlayingTransportControlsView : UIView
@property (nonatomic, assign) NSInteger layout;
@property (nonatomic, assign) NSInteger tp_userInterfaceLayoutDirection;
@property (nonatomic,retain) UIView * leftButton;
@end
@interface MRUNowPlayingControlsView : UIView
@property (nonatomic, assign) NSInteger context;
@property (nonatomic, retain) UIView *volumeControlsView;
@end
@interface MRUArtworkView : UIView
@property (nonatomic, assign) NSInteger style;
@property (nonatomic, assign) NSInteger tp_userInterfaceLayoutDirection;
@property (nonatomic,retain) UIView * iconView;
@property (nonatomic,retain) UIView * iconShadowView;
@end
@interface MRUNowPlayingHeaderView : UIView
@property (nonatomic, assign) NSInteger context;
@end
@interface MRUNowPlayingTimeControlsView : UIView
@property (nonatomic, assign) NSInteger context;
@property (nonatomic,retain) UIView * elapsedTimeLabel;
@property (nonatomic,retain) UIView * remainingTimeLabel;
@property (nonatomic,retain) UIView * knobView;
@end