[empathy] linker: add a label explaining how to use the dialog
- From: Guillaume Desmottes <gdesmott src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [empathy] linker: add a label explaining how to use the dialog
- Date: Mon, 23 Aug 2010 12:42:34 +0000 (UTC)
commit 9609495ef4dedb1c80a39faeb780fe1f660cc411
Author: Guillaume Desmottes <guillaume desmottes collabora co uk>
Date: Mon Aug 23 14:22:32 2010 +0200
linker: add a label explaining how to use the dialog
libempathy-gtk/empathy-individual-linker.c | 20 ++++++++++++++++++--
1 files changed, 18 insertions(+), 2 deletions(-)
---
diff --git a/libempathy-gtk/empathy-individual-linker.c b/libempathy-gtk/empathy-individual-linker.c
index e98a35d..2d512ea 100644
--- a/libempathy-gtk/empathy-individual-linker.c
+++ b/libempathy-gtk/empathy-individual-linker.c
@@ -235,6 +235,7 @@ set_up (EmpathyIndividualLinker *self)
EmpathyIndividualLinkerPriv *priv;
EmpathyIndividualManager *individual_manager;
GtkCellRenderer *cell_renderer;
+ GtkWidget *top_vbox;
GtkPaned *paned;
GtkWidget *label, *scrolled_window, *search_bar;
GtkBox *vbox;
@@ -243,6 +244,8 @@ set_up (EmpathyIndividualLinker *self)
priv = GET_PRIV (self);
+ top_vbox = gtk_vbox_new (FALSE, 6);
+
/* Layout panes */
paned = GTK_PANED (gtk_hpaned_new ());
@@ -334,9 +337,22 @@ set_up (EmpathyIndividualLinker *self)
gtk_paned_pack2 (paned, GTK_WIDGET (vbox), TRUE, FALSE);
gtk_widget_show (GTK_WIDGET (vbox));
- /* Add the panes to the bin */
- gtk_container_add (GTK_CONTAINER (self), GTK_WIDGET (paned));
gtk_widget_show (GTK_WIDGET (paned));
+
+ /* Footer label */
+ label = gtk_label_new (NULL);
+ tmp = g_strdup_printf ("<i>%s</i>",
+ _("Contacts selected in the list on the left will be linked together."));
+ gtk_label_set_markup (GTK_LABEL (label), tmp);
+ g_free (tmp);
+ gtk_widget_show (label);
+
+ gtk_box_pack_start (GTK_BOX (top_vbox), GTK_WIDGET (paned), TRUE, TRUE, 0);
+ gtk_box_pack_start (GTK_BOX (top_vbox), label, FALSE, TRUE, 0);
+
+ /* Add the main vbox to the bin */
+ gtk_container_add (GTK_CONTAINER (self), GTK_WIDGET (top_vbox));
+ gtk_widget_show (GTK_WIDGET (top_vbox));
}
static void
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]