summaryrefslogtreecommitdiff
path: root/tikzit/src/osx/PreferenceController.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/PreferenceController.h
parentce5930b13b15a98e0c365003ef56cedc1c9cb6b3 (diff)
osx gui initial preferences panel with defaults support
Diffstat (limited to 'tikzit/src/osx/PreferenceController.h')
-rw-r--r--tikzit/src/osx/PreferenceController.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/tikzit/src/osx/PreferenceController.h b/tikzit/src/osx/PreferenceController.h
new file mode 100644
index 0000000..9143851
--- /dev/null
+++ b/tikzit/src/osx/PreferenceController.h
@@ -0,0 +1,21 @@
+//
+// PreferenceController.h
+// TikZiT
+//
+// Created by Karl Johan Paulsson on 26/02/2013.
+// Copyright (c) 2013 Aleks Kissinger. All rights reserved.
+//
+
+#import <Cocoa/Cocoa.h>
+
+@interface PreferenceController : NSWindowController{
+
+ IBOutlet NSView *engineView;
+ IBOutlet NSView *generalView;
+
+ int currentViewTag;
+}
+
+- (IBAction)switchView:(id)sender;
+
+@end