summaryrefslogtreecommitdiff
path: root/tikzit/src/osx/CustomNodeCellView.h
diff options
context:
space:
mode:
Diffstat (limited to 'tikzit/src/osx/CustomNodeCellView.h')
-rw-r--r--tikzit/src/osx/CustomNodeCellView.h23
1 files changed, 23 insertions, 0 deletions
diff --git a/tikzit/src/osx/CustomNodeCellView.h b/tikzit/src/osx/CustomNodeCellView.h
new file mode 100644
index 0000000..5b3b1ee
--- /dev/null
+++ b/tikzit/src/osx/CustomNodeCellView.h
@@ -0,0 +1,23 @@
+//
+// CustomNodeCellView.h
+// TikZiT
+//
+// Created by Johan Paulsson on 12/12/13.
+// Copyright (c) 2013 Aleks Kissinger. All rights reserved.
+//
+
+#import <Cocoa/Cocoa.h>
+
+#import "NodeLayer.h"
+#import "NodeStyle.h"
+#import "NodeStyle+Coder.h"
+
+@interface CustomNodeCellView : NSTableCellView{
+ NodeLayer *nodeLayer;
+ NodeStyle *nodeStyle;
+ BOOL selected;
+}
+
+@property (retain) id objectValue;
+
+@end