aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorXan Lopez <xan@src.gnome.org>2009-01-12 23:22:58 +0800
committerXan Lopez <xan@src.gnome.org>2009-01-12 23:22:58 +0800
commit744e5d0149971b61659a5ff3f5970c5c9540d43b (patch)
tree0201d8ddb687e67783322d480335aa1ff37d4532 /lib
parent695622efe5aca6670b94f13189fcad5d5479f302 (diff)
downloadgsoc2013-epiphany-744e5d0149971b61659a5ff3f5970c5c9540d43b.tar
gsoc2013-epiphany-744e5d0149971b61659a5ff3f5970c5c9540d43b.tar.gz
gsoc2013-epiphany-744e5d0149971b61659a5ff3f5970c5c9540d43b.tar.bz2
gsoc2013-epiphany-744e5d0149971b61659a5ff3f5970c5c9540d43b.tar.lz
gsoc2013-epiphany-744e5d0149971b61659a5ff3f5970c5c9540d43b.tar.xz
gsoc2013-epiphany-744e5d0149971b61659a5ff3f5970c5c9540d43b.tar.zst
gsoc2013-epiphany-744e5d0149971b61659a5ff3f5970c5c9540d43b.zip
Port to use GtkBuilder.
Bug #567490 We keep the old glade files as master source and convert them to GtkBuilder format at compile-time because glade-3 is not ready yet for day-to-day edition of GtkBuilder files. svn path=/trunk/; revision=8678
Diffstat (limited to 'lib')
-rw-r--r--lib/ephy-dialog.c25
1 files changed, 16 insertions, 9 deletions
diff --git a/lib/ephy-dialog.c b/lib/ephy-dialog.c
index 07ada45d5..4cc66da9c 100644
--- a/lib/ephy-dialog.c
+++ b/lib/ephy-dialog.c
@@ -30,7 +30,6 @@
#include <stdlib.h>
#include <string.h>
#include <gtk/gtk.h>
-#include <glade/glade.h>
enum
{
@@ -920,7 +919,7 @@ disconnect_signals (gpointer key, PropertyInfo *info, EphyDialog *dialog)
}
static void
-init_props (EphyDialog *dialog, const EphyDialogProperty *properties, GladeXML *gxml)
+init_props (EphyDialog *dialog, const EphyDialogProperty *properties, GtkBuilder *builder)
{
int i;
@@ -935,7 +934,7 @@ init_props (EphyDialog *dialog, const EphyDialogProperty *properties, GladeXML *
info->string_enum = NULL;
info->data_col = -1;
- info->widget = glade_xml_get_widget (gxml, info->id);
+ info->widget = (GtkWidget*)gtk_builder_get_object (builder, info->id);
if (GTK_IS_COMBO_BOX (info->widget))
{
@@ -1068,12 +1067,20 @@ impl_construct (EphyDialog *dialog,
const char *domain)
{
EphyDialogPrivate *priv = dialog->priv;
- GladeXML *gxml;
+ GtkBuilder *builder;
+ GError *error = NULL;
- gxml = glade_xml_new (file, name, domain);
- g_return_if_fail (gxml != NULL);
+ builder = gtk_builder_new ();
+ gtk_builder_set_translation_domain (builder, domain);
+ gtk_builder_add_from_file (builder, file, &error);
+ if (error)
+ {
+ g_warning ("Unable to load UI file %s: %s", file, error->message);
+ g_error_free (error);
+ return;
+ }
- priv->dialog = glade_xml_get_widget (gxml, name);
+ priv->dialog = (GtkWidget*)gtk_builder_get_object (builder, name);
g_return_if_fail (priv->dialog != NULL);
if (priv->name == NULL)
@@ -1083,13 +1090,13 @@ impl_construct (EphyDialog *dialog,
if (properties)
{
- init_props (dialog, properties, gxml);
+ init_props (dialog, properties, builder);
}
g_signal_connect_object (dialog->priv->dialog, "destroy",
G_CALLBACK(dialog_destroy_cb), dialog, 0);
- g_object_unref (gxml);
+ g_object_unref (builder);
}
static void