summaryrefslogtreecommitdiff
path: root/cocoa/TreeView.h
diff options
context:
space:
mode:
authorSven Weidauer <sven.weidauer@gmail.com>2011-02-01 08:39:32 +0000
committerSven Weidauer <sven.weidauer@gmail.com>2011-02-01 08:39:32 +0000
commit28ff0cfb0af7d58244dfd06546b2c8ec37f01c75 (patch)
treef4f64446469767174db5689b0c7155aa0b8c9f98 /cocoa/TreeView.h
parente20f69147d0f0d8c5e3abf087ff39724014fe251 (diff)
downloadnetsurf-28ff0cfb0af7d58244dfd06546b2c8ec37f01c75.tar.gz
netsurf-28ff0cfb0af7d58244dfd06546b2c8ec37f01c75.tar.bz2
Factored Tree class out of TreeView
svn path=/trunk/netsurf/; revision=11577
Diffstat (limited to 'cocoa/TreeView.h')
-rw-r--r--cocoa/TreeView.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/cocoa/TreeView.h b/cocoa/TreeView.h
index 3e6f18496..31dedbb0f 100644
--- a/cocoa/TreeView.h
+++ b/cocoa/TreeView.h
@@ -19,13 +19,16 @@
#import <Cocoa/Cocoa.h>
#import "cocoa/ScrollableView.h"
+@class Tree;
@interface TreeView : ScrollableView {
- struct tree *treeHandle;
+ Tree *tree;
BOOL isDragging;
NSPoint dragStart;
}
+@property (readwrite, retain, nonatomic) Tree *tree;
+
@end