2005-12-20 01:50:23 +03:00
|
|
|
/*
|
|
|
|
* Copyright 2005 James Bursa <bursa@users.sourceforge.net>
|
2007-08-08 20:16:03 +04:00
|
|
|
*
|
|
|
|
* 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/>.
|
2005-12-20 01:50:23 +03:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdbool.h>
|
2006-07-19 17:41:57 +04:00
|
|
|
#include <gtk/gtk.h>
|
2006-07-23 22:26:11 +04:00
|
|
|
#include <glade/glade.h>
|
2005-12-20 01:50:23 +03:00
|
|
|
|
|
|
|
extern bool gui_in_multitask;
|
2006-07-23 22:26:11 +04:00
|
|
|
extern GladeXML *gladeWindows;
|
2006-08-07 02:29:58 +04:00
|
|
|
extern char *glade_file_location;
|
2006-07-23 22:26:11 +04:00
|
|
|
extern char *options_file_location;
|
|
|
|
|
2006-11-05 02:38:18 +03:00
|
|
|
extern GtkWindow *wndAbout;
|
|
|
|
|
|
|
|
extern GtkWindow *wndTooltip;
|
|
|
|
extern GtkLabel *labelTooltip;
|
2007-06-22 19:16:48 +04:00
|
|
|
|
|
|
|
extern GtkDialog *wndOpenFile;
|