summaryrefslogtreecommitdiff
path: root/tikzit/src/osx/CustomNodeCellView.h
diff options
context:
space:
mode:
authorJohan Paulsson <gonz@badcode.net>2014-03-23 02:45:56 +0000
committerJohan Paulsson <gonz@badcode.net>2014-03-23 02:45:56 +0000
commit2d6b88d5d016237acbc8cb63f2cf2477ccfe9e69 (patch)
tree8ed28e84d5a7bb0a8b9b1fa795e7272a3f1c4370 /tikzit/src/osx/CustomNodeCellView.h
parent5506611ee009498f1f9bce89b6e6735b19d6b137 (diff)
osx gui: initial creation of custom node shapes preference panel
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