summaryrefslogtreecommitdiff
path: root/tikzit/src/osx/PreferenceController.h
diff options
context:
space:
mode:
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