From cca607fbe85ae6b6ad517a08eee80ac6a6e83c50 Mon Sep 17 00:00:00 2001 From: Sven Weidauer Date: Tue, 25 Jan 2011 15:09:06 +0000 Subject: Creating select menus for forms svn path=/trunk/netsurf/; revision=11484 --- cocoa/FormSelectMenu.h | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 cocoa/FormSelectMenu.h (limited to 'cocoa/FormSelectMenu.h') 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 + * + * 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 . + */ + +#import + + +@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 -- cgit v1.2.3