summaryrefslogtreecommitdiff
path: root/tikzit-old/src/osx/CustomNodeController.h
diff options
context:
space:
mode:
Diffstat (limited to 'tikzit-old/src/osx/CustomNodeController.h')
-rw-r--r--tikzit-old/src/osx/CustomNodeController.h35
1 files changed, 0 insertions, 35 deletions
diff --git a/tikzit-old/src/osx/CustomNodeController.h b/tikzit-old/src/osx/CustomNodeController.h
deleted file mode 100644
index 67adf0b..0000000
--- a/tikzit-old/src/osx/CustomNodeController.h
+++ /dev/null
@@ -1,35 +0,0 @@
-//
-// CustomNodeController.h
-// TikZiT
-//
-// Created by Johan Paulsson on 12/4/13.
-// Copyright (c) 2013 Aleks Kissinger. All rights reserved.
-//
-
-#import <Cocoa/Cocoa.h>
-#import "Shape.h"
-#import "TikzShape.h"
-
-#import "GraphicsView.h"
-#import "TikzSourceController.h"
-
-#import "SupportDir.h"
-
-@interface CustomNodeController : NSViewController <NSTableViewDelegate>{
- NSDictionary *nodeStyles;
- NSMutableArray* customNodeStyles;
-
- GraphicsView *__weak graphicsView;
- TikzSourceController *__weak tikzSourceController;
- NSTableView *customNodeTable;
-}
-
-@property NSDictionary *nodeStyles;
-@property NSMutableArray* customNodeStyles;
-
-@property IBOutlet NSTableView *customNodeTable;
-
-@property (weak) IBOutlet GraphicsView *graphicsView;
-@property (weak) IBOutlet TikzSourceController *tikzSourceController;
-
-@end