From fe86c4a618ed491be3b3e191a50a4f10b1c11400 Mon Sep 17 00:00:00 2001 From: Rob Kendrick Date: Mon, 20 Apr 2009 22:13:59 +0000 Subject: Check in missing files from previous commit svn path=/trunk/netsurf/; revision=7139 --- gtk/dialogs/gtk_source.h | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 gtk/dialogs/gtk_source.h (limited to 'gtk/dialogs/gtk_source.h') diff --git a/gtk/dialogs/gtk_source.h b/gtk/dialogs/gtk_source.h new file mode 100644 index 000000000..a3f966adc --- /dev/null +++ b/gtk/dialogs/gtk_source.h @@ -0,0 +1,34 @@ +/* + * Copyright 2009 Mark Benjamin + * + * 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 . + */ + + +#include +#include "desktop/browser.h" + +struct nsgtk_source_window { + gchar *url; + gchar *data; + GtkWindow *sourcewindow; + GtkTextView *gv; + struct browser_window *bw; + struct nsgtk_source_window *next; + struct nsgtk_source_window *prev; +}; + +void nsgtk_source_dialog_init(GtkWindow * parent, struct browser_window * bw); +void nsgtk_source_file_save(GtkWindow * parent, const char * filename, const char * data); -- cgit v1.2.3