-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathCSMetroLockScreenView.h
executable file
·57 lines (41 loc) · 1.61 KB
/
CSMetroLockScreenView.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
//
// CSMetroLockScreenView.h
// MetroLockScreen
//
// Created by CoolStar on 8/5/16.
// Copyright © 2016 CoolStar. All rights reserved.
//
#import <UIKit/UIKit.h>
#import "Headers.h"
@class CSMetroNotificationIconsView, CSMetroLockScreenGradientView;
@interface CSMetroLockScreenView : UIView <MPUNowPlayingDelegate, CFWAnalysisDelegate, CFWColorDelegate> {
CSMetroLockScreenGradientView *_mediaControlsView;
UIImageView *_mediaImageView;
UILabel *_mediaTitleLabel;
UILabel *_mediaArtistLabel;
BOOL _useDarkMediaButtons;
UIButton *_mediaPreviousButton, *_mediaPlayPauseButton, *_mediaForwardButton;
UILabel *_timeLabel, *_dateLabel;
UIImageView *_cellularIcon, *_wifiIcon, *_batteryIcon;
CSMetroNotificationIconsView *_notificationIcons;
UILabel *_notificationLabel;
UITableView *_notificationView;
UIView *_nativeNotificationView;
UICollectionView *_nativeNotificationView11;
NCNotificationCombinedListViewController *_nativeController;
NSTimer *_timeUpdater;
MPUNowPlayingController *_nowPlayingController;
UIButton *_siriButton;
UILabel *_siriLabel;
UIView *_lockGlyphView;
BOOL _shouldShowNotificationLabel;
}
@property (nonatomic, readonly) UIView *mediaControlsView;
@property (nonatomic, strong) UIView *nativeNotificationView;
@property (nonatomic, strong) UIView *nativeNotificationView11;
@property (nonatomic, strong) NCNotificationCombinedListViewController *nativeController;
@property (nonatomic, assign) BOOL shouldShowNotificationLabel;
@property (nonatomic, strong) UIView *lockGlyphView;
- (void)updateData;
- (void)resetLock;
@end