summaryrefslogtreecommitdiff
path: root/tikzit/src/osx/CustomNodeController.h
diff options
context:
space:
mode:
authorJohan Paulsson <gonz@badcode.net>2014-03-25 17:30:35 +0000
committerJohan Paulsson <gonz@badcode.net>2014-03-25 17:30:35 +0000
commit4c3a82c9146aa0e147b49b429b49fefb0e785a17 (patch)
tree532436ec35f19d6de54579734df22c20a8d67ca5 /tikzit/src/osx/CustomNodeController.h
parent5532f8878b7219720de6145eabbe57efb894957c (diff)
osx gui: custom nodes preference panel shows tikzit preview and tikz code for selected custom node.
Diffstat (limited to 'tikzit/src/osx/CustomNodeController.h')
-rw-r--r--tikzit/src/osx/CustomNodeController.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/tikzit/src/osx/CustomNodeController.h b/tikzit/src/osx/CustomNodeController.h
index 56cb74c..5553fcd 100644
--- a/tikzit/src/osx/CustomNodeController.h
+++ b/tikzit/src/osx/CustomNodeController.h
@@ -18,14 +18,16 @@
@interface CustomNodeController : NSViewController <NSTableViewDelegate>{
NSDictionary* __weak nodeStyles;
NSMutableArray* customNodeStyles;
- NSMutableArray* __weak onodeStyles;
GraphicsView *__weak graphicsView;
TikzSourceController *__weak tikzSourceController;
+ NSTableView *customNodeTable;
}
@property (weak, readonly) NSDictionary *nodeStyles;
-@property (weak, readonly) NSMutableArray* onodeStyles;
+@property NSMutableArray* customNodeStyles;
+
+@property IBOutlet NSTableView *customNodeTable;
@property (weak) IBOutlet GraphicsView *graphicsView;
@property (weak) IBOutlet TikzSourceController *tikzSourceController;