-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathOSDesktopPane.h
28 lines (23 loc) · 874 Bytes
/
OSDesktopPane.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
#import <objc/runtime.h>
#import <UIKit/UIKit.h>
#import "OSPane.h"
#import "OSWallpaperView.h"
#import "include.h"
#import "OSWindow.h"
#import "OSSlider.h"
@interface OSDesktopPane : OSPane <OSWindowDelegate> {
SBFStaticWallpaperView *_wallpaperView;
SBFakeStatusBarView *_statusBar;
OSWindow *_activeWindow;
NSMutableArray *_windows;
UIView *_desktopViewContainer;
}
@property (nonatomic, retain) SBWallpaperController *wallpaperController;
@property (nonatomic, assign) SBFStaticWallpaperView *wallpaperView;
@property (nonatomic, retain) SBFakeStatusBarView *statusBar;
@property (nonatomic, assign) OSWindow *activeWindow;
@property (nonatomic, retain) NSMutableArray *windows;
@property (nonatomic, assign) BOOL showingRightSnapIndicator;
@property (nonatomic, assign) BOOL showingLeftSnapIndicator;
@property (nonatomic, retain) UIView *snapIndicator;
@end