forked from jessegrosjean/NOTTaskPaperForIOS
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBrowserView.h
More file actions
executable file
·64 lines (55 loc) · 1.94 KB
/
Copy pathBrowserView.h
File metadata and controls
executable file
·64 lines (55 loc) · 1.94 KB
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
//
// ScrollViewWithMargins.h
// MarginsTest
//
// Created by Jesse Grosjean on 10/27/10.
//
#import <Foundation/Foundation.h>
#import <AVFoundation/AVFoundation.h>
@class ItemViewController;
@class GradientFadeView;
@class MarginScrollView;
@class ScrollerView;
@class Titlebar;
@class Toolbar;
@class Searchbar;
@interface BrowserView : UIView <UITextViewDelegate, UIScrollViewDelegate, UITableViewDelegate> {
UIEdgeInsets padding;
UIButton *statusBarReplacement;
Titlebar *titlebar;
Searchbar *searchbar;
BOOL headerBarsScroll;
GradientFadeView *headerBarsGradientFadeView;
Toolbar *toolbar;
GradientFadeView *toolbarGradientFadeView;
UIScrollView *contentView;
UIView *contentWrapper;
BOOL isPrimaryBrowser;
BOOL performingScrollAnimation;
BOOL isPerformingLayout;
ScrollerView *scrollerView;
MarginScrollView *leftMarginScrollView;
MarginScrollView *rightMarginScrollView;
id <UITextViewDelegate, UIScrollViewDelegate, UITableViewDelegate> originalContentViewDelegate;
ItemViewController *currentViewController;
CATransition *pushAnimation;
CATransition *popAnimation;
UILabel *statusLabel;
}
#pragma mark -
#pragma mark Attributes
@property (nonatomic, assign) UIEdgeInsets padding;
@property (nonatomic, retain) Titlebar *titlebar;
@property (nonatomic, retain) Searchbar *searchbar;
@property (nonatomic, assign) BOOL headerBarsScroll;
@property (nonatomic, retain) Toolbar *toolbar;
@property (nonatomic, readonly) UILabel *statusLabel;
@property (nonatomic, retain) UIScrollView *contentView;
@property (nonatomic, readonly) UIScrollView *activeScrollView;
@property (nonatomic, assign) BOOL isPrimaryBrowser;
@property (nonatomic, readonly) BOOL performingScrollAnimation;
#pragma mark -
#pragma mark Current View Controller
@property (nonatomic, readonly) ItemViewController *currentViewController;
- (void)setViewController:(ItemViewController *)aViewController editingPath:(BOOL)editing animated:(BOOL)animated isPush:(BOOL)isPush;
@end