summaryrefslogtreecommitdiff
path: root/cocoa/NetSurfAppDelegate.h
diff options
context:
space:
mode:
authorSven Weidauer <sven.weidauer@gmail.com>2011-01-13 17:20:13 +0000
committerSven Weidauer <sven.weidauer@gmail.com>2011-01-13 17:20:13 +0000
commit2ab5636619d6e0a44c32e10cd71c9f99c5fe5977 (patch)
tree43fc76eb474eac7dff1c18e85374513a9fc3345e /cocoa/NetSurfAppDelegate.h
parenta9b60753f9c7a57aae2af50943e3ad81203e73e1 (diff)
downloadnetsurf-2ab5636619d6e0a44c32e10cd71c9f99c5fe5977.tar.gz
netsurf-2ab5636619d6e0a44c32e10cd71c9f99c5fe5977.tar.bz2
Zooming, opening files, accepting http and https URLs
svn path=/trunk/netsurf/; revision=11310
Diffstat (limited to 'cocoa/NetSurfAppDelegate.h')
-rw-r--r--cocoa/NetSurfAppDelegate.h28
1 files changed, 28 insertions, 0 deletions
diff --git a/cocoa/NetSurfAppDelegate.h b/cocoa/NetSurfAppDelegate.h
new file mode 100644
index 000000000..e070b3fa9
--- /dev/null
+++ b/cocoa/NetSurfAppDelegate.h
@@ -0,0 +1,28 @@
+/*
+ * 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 NetSurfAppDelegate : NSObject {
+ NSWindow *historyWindow;
+}
+
+@property (readwrite, retain, nonatomic) IBOutlet NSWindow *historyWindow;
+
+@end