summaryrefslogtreecommitdiff
path: root/tikzit/src/osx/PropertyInspectorController.h
diff options
context:
space:
mode:
Diffstat (limited to 'tikzit/src/osx/PropertyInspectorController.h')
-rw-r--r--tikzit/src/osx/PropertyInspectorController.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/tikzit/src/osx/PropertyInspectorController.h b/tikzit/src/osx/PropertyInspectorController.h
index cb14021..0625f9b 100644
--- a/tikzit/src/osx/PropertyInspectorController.h
+++ b/tikzit/src/osx/PropertyInspectorController.h
@@ -18,6 +18,8 @@
IBOutlet NSView *nodePropertiesView;
IBOutlet NSView *graphPropertiesView;
IBOutlet NSView *edgePropertiesView;
+ IBOutlet NSComboBox *sourceAnchorComboBox;
+ IBOutlet NSComboBox *targetAnchorComboBox;
IBOutlet NSTextField *edgeNodeLabelField;
IBOutlet NSButton *edgeNodeCheckbox;
IBOutlet NSArrayController *nodeDataArrayController;
@@ -25,6 +27,12 @@
IBOutlet NSArrayController *edgeDataArrayController;
IBOutlet NSArrayController *edgeNodeDataArrayController;
+ NSMutableArray *sourceAnchorNames;
+ IBOutlet NSArrayController *sourceAnchorNamesArrayController;
+
+ NSMutableArray *targetAnchorNames;
+ IBOutlet NSArrayController *targetAnchorNamesArrayController;
+
NSMutableArray *selectedNodes;
IBOutlet NSArrayController *selectedNodesArrayController;
@@ -46,6 +54,8 @@
//@property (readonly) BOOL enableEdgeDataControls;
@property (retain) NSMutableArray *selectedNodes;
@property (retain) NSMutableArray *selectedEdges;
+@property (retain) NSMutableArray *sourceAnchorNames;
+@property (retain) NSMutableArray *targetAnchorNames;
@property (retain) StylePaletteController *stylePaletteController;
- (id)initWithWindowNibName:(NSString *)windowNibName;