forked from gnachman/iTerm2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
FutureMethods.h
42 lines (33 loc) · 911 Bytes
/
FutureMethods.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
//
// FutureMethods.h
// iTerm
//
// Created by George Nachman on 8/29/11.
//
#import <Cocoa/Cocoa.h>
extern const int FutureNSWindowCollectionBehaviorStationary;
@interface NSView (Future)
- (void)futureSetAcceptsTouchEvents:(BOOL)value;
- (void)futureSetWantsRestingTouches:(BOOL)value;
@end
@interface NSEvent (Future)
- (NSArray *)futureTouchesMatchingPhase:(int)phase inView:(NSView *)view;
@end
@interface NSWindow (Future)
- (void)futureSetRestorable:(BOOL)value;
- (void)futureSetRestorationClass:(Class)class;
- (void)futureInvalidateRestorableState;
@end
enum {
FutureNSScrollerStyleLegacy = 0,
FutureNSScrollerStyleOverlay = 1
};
typedef NSInteger FutureNSScrollerStyle;
@interface NSScroller (Future)
- (FutureNSScrollerStyle)futureScrollerStyle;
@end
@interface NSScrollView (Future)
- (FutureNSScrollerStyle)futureScrollerStyle;
@end
@interface CIImage (Future)
@end