From 8ef292b9caf5cae2197493a87480723138f10344 Mon Sep 17 00:00:00 2001 From: Vincent Sanders Date: Sat, 13 Jun 2015 11:31:23 +0100 Subject: Change GTK UI builder handling to use resource API 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. --- gtk/gui.h | 23 ----------------------- 1 file changed, 23 deletions(-) (limited to 'gtk/gui.h') diff --git a/gtk/gui.h b/gtk/gui.h index 63832f87a..ce234c4a0 100644 --- a/gtk/gui.h +++ b/gtk/gui.h @@ -21,26 +21,6 @@ struct nsurl; -/** glade file paths. */ -struct glade_file_location_s { - char *netsurf; - char *tabcontents; - char *password; - char *warning; - char *login; - char *ssl; - char *toolbar; - char *options; - char *downloads; - char *history; - char *hotlist; - char *cookies; - char *viewdata; -}; - -/** location of all glade files. */ -extern struct glade_file_location_s *glade_file_location; - /** language list file path. */ extern char *languages_file_location; @@ -65,9 +45,6 @@ extern char **respaths; /** input conversion. */ uint32_t gtk_gui_gdkkey_to_nskey(GdkEventKey *eventkey); -/** login window request. */ -extern void gui_401login_open(struct nsurl *url, const char *realm, nserror (*cb)(bool proceed, void *pw), void *cbpw); - /** set when no windows remain open. */ extern bool nsgtk_complete; -- cgit v1.2.3