2011-01-26 22:17:27 +03:00
|
|
|
/*
|
|
|
|
* 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>
|
|
|
|
|
2014-01-15 23:37:05 +04:00
|
|
|
extern struct gui_window_table *cocoa_window_table;
|
|
|
|
extern struct gui_clipboard_table *cocoa_clipboard_table;
|
|
|
|
extern struct gui_browser_table *cocoa_browser_table;
|
|
|
|
|
2011-01-26 22:17:27 +03:00
|
|
|
extern NSString * const kCookiesFileOption;
|
|
|
|
extern NSString * const kURLsFileOption;
|
|
|
|
extern NSString * const kHotlistFileOption;
|
|
|
|
extern NSString * const kHomepageURLOption;
|
2011-01-27 12:01:16 +03:00
|
|
|
extern NSString * const kOptionsFileOption;
|
2011-01-29 13:24:54 +03:00
|
|
|
extern NSString * const kAlwaysCancelDownload;
|
2011-01-31 11:07:22 +03:00
|
|
|
extern NSString * const kAlwaysCloseMultipleTabs;
|
2011-01-27 12:01:16 +03:00
|
|
|
|
|
|
|
void cocoa_autorelease( void );
|