diff options
author | Chris Toshok <toshok@ximian.com> | 2002-09-12 07:02:16 +0800 |
---|---|---|
committer | Chris Toshok <toshok@src.gnome.org> | 2002-09-12 07:02:16 +0800 |
commit | 97c238ccd969e4945c37770f904b169c9d3248d0 (patch) | |
tree | f290205e09736388e81379636634fafb6fd8e3be /addressbook/gui/contact-editor/e-contact-editor-fullname.c | |
parent | 64d454a16c99af0418fbf31e7b6ba070ace6535e (diff) | |
download | gsoc2013-evolution-97c238ccd969e4945c37770f904b169c9d3248d0.tar.gz gsoc2013-evolution-97c238ccd969e4945c37770f904b169c9d3248d0.tar.zst gsoc2013-evolution-97c238ccd969e4945c37770f904b169c9d3248d0.zip |
[ fixes part of #17336 ] get the window title from the .glade file, and
2002-09-11 Chris Toshok <toshok@ximian.com>
[ fixes part of #17336 ]
* gui/contact-editor/e-contact-editor-fullname.c
(e_contact_editor_fullname_init): get the window title from the
.glade file, and supply a suitable wm icon.
* gui/contact-editor/e-contact-editor-address.c
(e_contact_editor_address_init): same.
svn path=/trunk/; revision=18050
Diffstat (limited to 'addressbook/gui/contact-editor/e-contact-editor-fullname.c')
-rw-r--r-- | addressbook/gui/contact-editor/e-contact-editor-fullname.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/addressbook/gui/contact-editor/e-contact-editor-fullname.c b/addressbook/gui/contact-editor/e-contact-editor-fullname.c index 5ae8b36a9b..8d602657c0 100644 --- a/addressbook/gui/contact-editor/e-contact-editor-fullname.c +++ b/addressbook/gui/contact-editor/e-contact-editor-fullname.c @@ -23,6 +23,8 @@ #include <libgnomeui/gnome-stock.h> #include <gal/widgets/e-unicode.h> #include "e-contact-editor-fullname.h" +#include <libgnomeui/gnome-window-icon.h> +#include <libgnome/gnome-util.h> #include <gtk/gtkcombo.h> static void e_contact_editor_fullname_init (EContactEditorFullname *card); @@ -95,6 +97,7 @@ e_contact_editor_fullname_init (EContactEditorFullname *e_contact_editor_fullnam { GladeXML *gui; GtkWidget *widget; + char *icon_path; gnome_dialog_append_button ( GNOME_DIALOG(e_contact_editor_fullname), GNOME_STOCK_BUTTON_OK); @@ -108,11 +111,19 @@ e_contact_editor_fullname_init (EContactEditorFullname *e_contact_editor_fullnam gui = glade_xml_new (EVOLUTION_GLADEDIR "/fullname.glade", NULL); e_contact_editor_fullname->gui = gui; + widget = glade_xml_get_widget(gui, "dialog-checkfullname"); + gtk_window_set_title (GTK_WINDOW (e_contact_editor_fullname), + GTK_WINDOW (widget)->title); + widget = glade_xml_get_widget(gui, "table-checkfullname"); gtk_widget_ref(widget); gtk_container_remove(GTK_CONTAINER(widget->parent), widget); gtk_box_pack_start (GTK_BOX (GNOME_DIALOG (e_contact_editor_fullname)->vbox), widget, TRUE, TRUE, 0); gtk_widget_unref(widget); + + icon_path = g_concat_dir_and_file (EVOLUTION_ICONSDIR, "evolution-contacts-mini.png"); + gnome_window_icon_set_from_file (GTK_WINDOW (e_contact_editor_fullname), icon_path); + g_free (icon_path); } void |