summaryrefslogtreecommitdiff
path: root/tikzit/src/osx/AppDelegate.h
diff options
context:
space:
mode:
authorJohan Paulsson <gonz@users.sourceforge.net>2013-02-26 21:13:20 +0000
committerJohan Paulsson <gonz@users.sourceforge.net>2013-02-26 21:13:20 +0000
commit8408fed8718c5aafc89a7e22c3791904d505a425 (patch)
treeb66465d1d6ed09af42fc4f83e450ea80c391b6a5 /tikzit/src/osx/AppDelegate.h
parentce5930b13b15a98e0c365003ef56cedc1c9cb6b3 (diff)
osx gui initial preferences panel with defaults support
Diffstat (limited to 'tikzit/src/osx/AppDelegate.h')
-rw-r--r--tikzit/src/osx/AppDelegate.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/tikzit/src/osx/AppDelegate.h b/tikzit/src/osx/AppDelegate.h
index 349b47b..64acc38 100644
--- a/tikzit/src/osx/AppDelegate.h
+++ b/tikzit/src/osx/AppDelegate.h
@@ -28,6 +28,7 @@
#import "PreambleController.h"
#import "PreviewController.h"
#import "GraphicsView.h"
+#import "PreferenceController.h";
@interface AppDelegate : NSObject {
NSMapTable *table;
@@ -35,6 +36,7 @@
PropertyInspectorController *propertyInspectorController;
PreambleController *preambleController;
PreviewController *previewController;
+ PreferenceController *preferenceController;
ToolPaletteController *toolPaletteController;
IBOutlet GraphicsView *graphicsView;
NSString *tempDir;
@@ -44,10 +46,12 @@
@property IBOutlet ToolPaletteController *toolPaletteController;
- (void)awakeFromNib;
++ (void)setDefaults;
- (void)applicationWillTerminate:(NSNotification *)notification;
- (IBAction)toggleStyleInspector:(id)sender;
- (IBAction)togglePropertyInspector:(id)sender;
- (IBAction)togglePreamble:(id)sender;
+- (IBAction)togglePreferences:(id)sender;
- (IBAction)refreshShapes:(id)sender;
@end