summaryrefslogtreecommitdiff
path: root/cocoa/FormSelectMenu.h
diff options
context:
space:
mode:
authorSven Weidauer <sven.weidauer@gmail.com>2011-01-25 15:09:06 +0000
committerSven Weidauer <sven.weidauer@gmail.com>2011-01-25 15:09:06 +0000
commitcca607fbe85ae6b6ad517a08eee80ac6a6e83c50 (patch)
tree1edbd4951c3c62630a351178adf7c19b57345285 /cocoa/FormSelectMenu.h
parent5615eb65af3cb4c775b36254e2579b98aa1439fe (diff)
downloadnetsurf-cca607fbe85ae6b6ad517a08eee80ac6a6e83c50.tar.gz
netsurf-cca607fbe85ae6b6ad517a08eee80ac6a6e83c50.tar.bz2
Creating select menus for forms
svn path=/trunk/netsurf/; revision=11484
Diffstat (limited to 'cocoa/FormSelectMenu.h')
-rw-r--r--cocoa/FormSelectMenu.h33
1 files changed, 33 insertions, 0 deletions
diff --git a/cocoa/FormSelectMenu.h b/cocoa/FormSelectMenu.h
new file mode 100644
index 000000000..54f226fed
--- /dev/null
+++ b/cocoa/FormSelectMenu.h
@@ -0,0 +1,33 @@
+/*
+ * Copyright 2011 Sven Weidauer <sven.weidauer@gmail.com>
+ *
+ * This file is part of NetSurf, http://www.netsurf-browser.org/
+ *
+ * NetSurf is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; version 2 of the License.
+ *
+ * NetSurf is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ */
+
+#import <Cocoa/Cocoa.h>
+
+
+@interface FormSelectMenu : NSObject {
+ NSMenu *menu;
+ NSPopUpButtonCell *cell;
+
+ struct browser_window *browser;
+ struct form_control *control;
+}
+
+- initWithControl: (struct form_control *) control forWindow: (struct browser_window *) window;
+- (void) runInView: (NSView *) view;
+
+@end