summaryrefslogtreecommitdiff
path: root/frontends/cocoa/BrowserView.h
diff options
context:
space:
mode:
Diffstat (limited to 'frontends/cocoa/BrowserView.h')
-rw-r--r--frontends/cocoa/BrowserView.h36
1 files changed, 18 insertions, 18 deletions
diff --git a/frontends/cocoa/BrowserView.h b/frontends/cocoa/BrowserView.h
index 1d02fb02b..596100f09 100644
--- a/frontends/cocoa/BrowserView.h
+++ b/frontends/cocoa/BrowserView.h
@@ -23,30 +23,30 @@
@class LocalHistoryController;
@interface BrowserView : ScrollableView <NSTextInput> {
- struct browser_window *browser;
-
- NSPoint caretPoint;
- CGFloat caretHeight;
- BOOL caretVisible;
- BOOL hasCaret;
- NSTimer *caretTimer;
-
- BOOL isDragging;
- NSPoint dragStart;
-
- BOOL historyVisible;
- LocalHistoryController *history;
-
- NSString *markedText;
+ struct browser_window *browser;
+
+ NSPoint caretPoint;
+ CGFloat caretHeight;
+ BOOL caretVisible;
+ BOOL hasCaret;
+ NSTimer *caretTimer;
+
+ BOOL isDragging;
+ NSPoint dragStart;
+
+ BOOL historyVisible;
+ LocalHistoryController *history;
+
+ NSString *markedText;
}
@property (readwrite, assign, nonatomic) struct browser_window *browser;
@property (readwrite, retain, nonatomic) NSTimer *caretTimer;
@property (readwrite, assign, nonatomic, getter=isHistoryVisible) BOOL historyVisible;
-- (void) removeCaret;
-- (void) addCaretAt: (NSPoint) point height: (CGFloat) height;
+- (void)removeCaret;
+- (void)addCaretAt:(NSPoint)point height:(CGFloat)height;
-- (void) updateHistory;
+- (void)updateHistory;
@end