mirror of
https://github.com/netsurf-browser/netsurf
synced 2024-11-26 16:29:36 +03:00
8ef292b9ca
GTK UI builder resources have till now been exclusively stored on disc requiring netsurf to ship numerous additional resource files. This requires going to disc every time a UI action is performed which can become a lot of unwanted file handling. GLib/GTK has moved towards GResource handling for such resources instead. It now seems that migrating to this style of usage is expected and indeed the only portable way to include pixbufs. This introduces an API to hide the various implementation details of how resources are handled from the rest of the codebase.
42 lines
1.2 KiB
C
42 lines
1.2 KiB
C
/*
|
|
* Copyright 2008 Michael Lester <element3260@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/>.
|
|
*/
|
|
|
|
#ifndef GTK_DOWNLOAD_H
|
|
#define GTK_DOWNLOAD_H
|
|
|
|
#include <gtk/gtk.h>
|
|
|
|
/**
|
|
* download operation table for gtk
|
|
*/
|
|
struct gui_download_table *nsgtk_download_table;
|
|
|
|
/**
|
|
* Initialise download window ready for use.
|
|
*
|
|
* \return NSERROR_OK on success else appropriate error code on faliure.
|
|
*/
|
|
nserror nsgtk_download_init(void);
|
|
|
|
void nsgtk_download_destroy (void);
|
|
bool nsgtk_check_for_downloads(GtkWindow *parent);
|
|
void nsgtk_download_show(GtkWindow *parent);
|
|
void nsgtk_download_add(gchar *url, gchar *destination);
|
|
|
|
#endif
|