summaryrefslogtreecommitdiff
path: root/src/totem-interface.h
diff options
context:
space:
mode:
authorBastien Nocera <hadess@hadess.net>2007-07-05 23:08:20 +0000
committerBastien Nocera <hadess@src.gnome.org>2007-07-05 23:08:20 +0000
commitc350d9302fd8315cdc89679da49e9b0711c3945b (patch)
tree0eb240d5bf2b5bb12e586017cc0c93df278e6094 /src/totem-interface.h
parentaf1add6c6dfc9de042fc64e888002c4bdcb738a0 (diff)
downloadtotem-c350d9302fd8315cdc89679da49e9b0711c3945b.tar.gz
Patch from Philip Withnall <pwithnall@svn.gnome.org> to use GtkBuilder
2007-07-05 Bastien Nocera <hadess@hadess.net> * Load of files: Patch from Philip Withnall <pwithnall@svn.gnome.org> to use GtkBuilder instead of libglade (Closes: #450635) svn path=/trunk/; revision=4427
Diffstat (limited to 'src/totem-interface.h')
-rw-r--r--src/totem-interface.h18
1 files changed, 6 insertions, 12 deletions
diff --git a/src/totem-interface.h b/src/totem-interface.h
index 8ca9d422b..1b722b2e2 100644
--- a/src/totem-interface.h
+++ b/src/totem-interface.h
@@ -23,22 +23,16 @@
#ifndef TOTEM_INTERFACE_H
#define TOTEM_INTERFACE_H
-#include <glade/glade.h>
-#include <gtk/gtkwindow.h>
+#include <gtk/gtk.h>
G_BEGIN_DECLS
GdkPixbuf *totem_interface_load_pixbuf (const char *name);
char *totem_interface_get_full_path (const char *name);
-GladeXML *totem_interface_load (const char *name,
- const char *display_name,
+GtkBuilder *totem_interface_load (const char *name,
gboolean fatal,
- GtkWindow *parent);
-GladeXML *totem_interface_load_with_root (const char *name,
- const char *root_widget,
- const char *display_name,
- gboolean fatal,
- GtkWindow *parent);
+ GtkWindow *parent,
+ gpointer user_data);
void totem_interface_error (const char *title,
const char *reason,
GtkWindow *parent);
@@ -48,9 +42,9 @@ void totem_interface_error_blocking (const char *title,
void totem_interface_set_transient_for (GtkWindow *window,
GtkWindow *parent);
char * totem_interface_get_license (void);
-void totem_interface_boldify_label (GladeXML *xml,
+void totem_interface_boldify_label (GtkBuilder *xml,
const char *label);
-void totem_interface_italicise_label(GladeXML *xml,
+void totem_interface_italicise_label(GtkBuilder *xml,
const char *label);
G_END_DECLS