summaryrefslogtreecommitdiff
path: root/src/osx/MultiCombo.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/osx/MultiCombo.h')
-rw-r--r--src/osx/MultiCombo.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/osx/MultiCombo.h b/src/osx/MultiCombo.h
new file mode 100644
index 0000000..c8ec769
--- /dev/null
+++ b/src/osx/MultiCombo.h
@@ -0,0 +1,18 @@
+//
+// MultiCombo.h
+// TikZiT
+//
+// Created by Aleks Kissinger on 21/04/2011.
+// Copyright 2011 __MyCompanyName__. All rights reserved.
+//
+
+#import <Cocoa/Cocoa.h>
+
+
+@interface MultiCombo : NSComboBox {
+ BOOL multi;
+}
+
+@property (readwrite,assign) BOOL multi;
+
+@end