rpms/control-center/devel control-center-2.15.4-gecos.patch, NONE, 1.1 control-center.spec, 1.157, 1.158

fedora-cvs-commits at redhat.com fedora-cvs-commits at redhat.com
Mon Jul 24 04:41:39 UTC 2006


Author: mclasen

Update of /cvs/dist/rpms/control-center/devel
In directory cvs.devel.redhat.com:/tmp/cvs-serv2209

Modified Files:
	control-center.spec 
Added Files:
	control-center-2.15.4-gecos.patch 
Log Message:
fix gnome-about-me


control-center-2.15.4-gecos.patch:
 capplets/about-me/Makefile.am          |    7 -
 capplets/about-me/gnome-about-me.c     |  229 ++++++++++++++++++++++++++++++---
 capplets/about-me/gnome-about-me.glade |   41 +++--
 configure.in                           |    2 
 4 files changed, 238 insertions(+), 41 deletions(-)

--- NEW FILE control-center-2.15.4-gecos.patch ---
--- control-center-2.15.4/configure.in.gecos	2006-07-11 10:34:26.000000000 -0400
+++ control-center-2.15.4/configure.in	2006-07-24 00:36:51.000000000 -0400
@@ -1,7 +1,6 @@
 AC_INIT([control-center], [2.15.4],
         [http://bugzilla.gnome.org/enter_bug.cgi?product=control-center])
 
-AC_CONFIG_MACRO_DIR([m4])
 AC_CONFIG_SRCDIR([control-center])
 AC_CONFIG_HEADERS([config.h])
 
@@ -344,6 +343,7 @@
        
      PKG_CHECK_MODULES(LIBEBOOK, libebook-1.2)
   fi
+  PKG_CHECK_MODULES(EEL, eel-2.0)
 fi
 
 if test -n "$LIBEBOOK_REQUIREMENT"; then
--- control-center-2.15.4/capplets/about-me/gnome-about-me.c.gecos	2006-07-24 00:36:51.000000000 -0400
+++ control-center-2.15.4/capplets/about-me/gnome-about-me.c	2006-07-24 00:36:51.000000000 -0400
@@ -36,6 +36,7 @@
 #include <libebook/e-book.h>
 
 #include "e-image-chooser.h"
+#include <eel/eel-editable-label.h>
 
 #include "capplet-util.h"
 
@@ -58,6 +59,7 @@
 	gboolean      	 have_image;
 	gboolean      	 image_changed;
 	gboolean      	 create_self;
+        gboolean         editing_username;
 
 	gchar        	*person;
 	gchar 		*login;
@@ -132,7 +134,7 @@
 
 
 static void about_me_set_address_field (EContactAddress *, guint, gchar *);
-
+static gchar *about_me_get_address_field (EContactAddress *, guint);
 
 /*** Utility functions ***/
 static void
@@ -196,6 +198,54 @@
 	me->create_self = FALSE;
 }
 
+static void
+update_gecos (GnomeAboutMe *me)
+{
+       const gchar *argv[12];
+       gint i = 0;
+       const gchar *fullname;
+       const gchar *office;
+       const gchar *office_phone;
+       const gchar *home_phone;
+
+       argv[i++] = "/usr/bin/userinfo";
+
+       fullname = e_contact_get_const (me->contact, E_CONTACT_FULL_NAME);
+       office = about_me_get_address_field (me->addr2, ADDRESS_LOCALITY);
+       office_phone = e_contact_get_const (me->contact, E_CONTACT_PHONE_BUSINESS);
+       home_phone = e_contact_get_const (me->contact, E_CONTACT_PHONE_HOME);
+
+       if (fullname) {
+               argv[i++] = "-f";
+               argv[i++] = fullname;
+       }
+
+       if (office) {
+               argv[i++] = "-o";
+               argv[i++] = office;
+       }
+
+       if (office_phone) {
+               argv[i++] = "-p";
+               argv[i++] = office_phone;
+       }
+
+       if (home_phone) {
+               argv[i++] = "-h";
+               argv[i++] = home_phone;
+       }
+
+       argv[i++] = "-x";
+       argv[i++] = NULL;
+
+       g_print ("calling");
+       for (i = 0; argv[i]; i++)
+         g_print (" %s", argv[i]);
+       g_print ("\n");
+       g_spawn_sync (NULL, (gchar **)argv, NULL, 0,
+                     NULL, NULL, NULL, NULL, NULL, NULL);
+}
+
 static gboolean 
 about_me_commit_from_timeout (GnomeAboutMe *me)
 {
@@ -262,22 +312,6 @@
 	return FALSE;
 }
 
-static char *
-get_user_login (void)
-{
-	char buf[LINE_MAX * 4];
-	struct passwd pwd, *err;
-
-	int i;
-#if __sun
-	i = getpwuid_r (getuid (), &pwd, buf, sizeof (buf));
-	return (i != 0) ? g_strdup (pwd.pw_name) : NULL;
-#else
-	i = getpwuid_r (getuid (), &pwd, buf, sizeof (buf), &err);
-	return ((i == 0) && (err == &pwd)) ? g_strdup (pwd.pw_name) : NULL;
-#endif
-}
-
 /*
  * Helpers
  */
@@ -692,6 +726,8 @@
 			about_me_commit (me);
 		}
 
+		update_gecos (me);
+
 		e_contact_address_free (me->addr1);
 		e_contact_address_free (me->addr2);
 
@@ -710,13 +746,149 @@
 about_me_passwd_clicked_cb (GtkWidget *button, GnomeAboutMe *me)
 {
         gchar *argv[2]; 
-	GladeXML *dialog;
 	
         argv[0] = "/usr/bin/userpasswd";
         argv[1] = NULL;
 	g_spawn_async (NULL, argv, NULL, 0, NULL, NULL, NULL, NULL);
 }
 
+static GtkWidget *
+find_fullname_editable_label (GnomeAboutMe *me)
+{
+       GtkWidget    *widget;
+       GList        *list;
+       GtkWidget    *c;
+       GladeXML     *dialog;
+
+       dialog = me->dialog;
+
+       widget = WID ("fullnamebox");
+
+       list = gtk_container_get_children (GTK_CONTAINER (widget->parent));
+
+       while (list) {
+               c = list->data;
+
+               if (EEL_IS_EDITABLE_LABEL (c))
+                      break;
+
+               c = NULL;
+
+               list = list->next;
+       }
+
+       g_list_free (list);
+
+       return c;
+}
+
+static void
+about_me_button_clicked (GtkWidget      *button,
+                        GnomeAboutMe   *me)
+{
+       GtkWidget    *label;
+       GtkWidget    *entry;
+       PangoFontDescription *font;
+       gint size;
+       const gchar *text;
+
+       label = gtk_bin_get_child (GTK_BIN (button));
+       entry = find_fullname_editable_label (me);
+
+       font = pango_font_description_copy (label->style->font_desc);
+        size = pango_font_description_get_size (font);
+        if (size == 0)
+               size = 10;
+       pango_font_description_set_size (font, size * PANGO_SCALE_XX_LARGE);
+       pango_font_description_set_weight (font, PANGO_WEIGHT_BOLD);
+
+       eel_editable_label_set_font_description (EEL_EDITABLE_LABEL (entry), font);
+       pango_font_description_free (font);
+
+       gtk_misc_set_alignment (GTK_MISC (entry), 0.0, 0.5);
+
+        me->editing_username = TRUE;
+
+        text = gtk_label_get_text (GTK_LABEL (label));
+        eel_editable_label_set_text (EEL_EDITABLE_LABEL (entry), text);
+
+       gtk_widget_hide (button);
+       gtk_widget_show (entry);
+       gtk_widget_grab_focus (entry);
+}
+
+static void stop_editing (GnomeAboutMe *me, gboolean commit)
+{
+       GtkWidget   *button;
+       GtkWidget   *label;
+       GtkWidget   *entry;
+       GtkWidget   *main_dialog;
+       const gchar *text;
+       gchar *str;
+       GladeXML     *dialog;
+
+       if (!me->editing_username)
+               return;
+
+       me->editing_username = FALSE;
+
+       dialog = me->dialog;
+
+       button = WID ("fullnamebox");
+       label = gtk_bin_get_child (GTK_BIN (button));
+       entry = find_fullname_editable_label (me);
+
+       if (commit) {
+               text = eel_editable_label_get_text (EEL_EDITABLE_LABEL (entry));
+               str = g_strdup_printf ("<b><span size=\"xx-large\">%s</span></b>", text);
+               gtk_label_set_markup (GTK_LABEL (label), str);
+               g_free (str);
+
+               g_free (me->username);
+               me->username = g_strdup (text);
+               e_contact_set (me->contact, E_CONTACT_FULL_NAME, me->username);
+
+               main_dialog = WID ("about-me-dialog");
+               str = g_strdup_printf (_("About %s"), me->username);
+               gtk_window_set_title (GTK_WINDOW (main_dialog), str);
+               g_free (str);
+       }
+
+       gtk_widget_hide (entry);
+       gtk_widget_show (button);
+}
+
+static gboolean
+about_me_entry_focus_out (GtkWidget     *entry,
+                         GdkEventFocus *event,
+                         GnomeAboutMe  *me)
+{
+       stop_editing (me, TRUE);
+
+       return FALSE;
+}
+
+static gboolean
+about_me_entry_key_press (GtkWidget    *entry,
+                         GdkEventKey  *event,
+                         GnomeAboutMe *me)
+{
+        switch (event->keyval)
+        {
+        case GDK_Return:
+        case GDK_KP_Enter:
+                stop_editing (me, TRUE);
+                return TRUE;
+        case GDK_Escape:
+                stop_editing (me, FALSE);
+                return TRUE;
+        default:
+                break;
+        }
+
+        return FALSE;
+}
+
 static gint
 about_me_setup_dialog (void)
 {
@@ -726,6 +898,8 @@
 	GladeXML     *dialog;
 	GError 	     *error = NULL;
 	gchar        *str;
+       GtkWidget    *entry;
+       GtkWidget    *button;
 
 	me = g_new0 (GnomeAboutMe, 1);
 
@@ -804,6 +978,25 @@
 	gtk_label_set_markup (GTK_LABEL (widget), str);
 	g_free (str);
 
+       button = WID ("fullnamebox");
+       g_signal_connect (button, "clicked",
+                         G_CALLBACK (about_me_button_clicked), me);
+
+       entry = eel_editable_label_new (me->username);
+       eel_editable_label_set_line_wrap (EEL_EDITABLE_LABEL (entry), TRUE);
+        gtk_container_add (GTK_CONTAINER (button->parent), entry);
+       gtk_box_reorder_child (GTK_BOX (button->parent), entry, 3);
+       g_signal_connect (entry, "focus-out-event",
+                         G_CALLBACK (about_me_entry_focus_out), me);
+       g_signal_connect (entry, "key-press-event",
+                         G_CALLBACK (about_me_entry_key_press), me);
+
+       gtk_widget_set_no_show_all (button, TRUE);
+       gtk_widget_set_no_show_all (entry, TRUE);
+       gtk_widget_show (widget);
+       gtk_widget_show (button);
+       gtk_widget_hide (entry);
+
 	widget = WID ("login");
 	gtk_label_set_text (GTK_LABEL (widget), me->login);
 
--- control-center-2.15.4/capplets/about-me/Makefile.am.gecos	2006-05-17 07:15:53.000000000 -0400
+++ control-center-2.15.4/capplets/about-me/Makefile.am	2006-07-24 00:36:51.000000000 -0400
@@ -5,12 +5,9 @@
 	gnome-about-me-lock.png		\
 	gnome-about-me-lock-open.png
 
-gnome_about_me_LDADD = $(GNOMECC_CAPPLETS_LIBS) $(LIBEBOOK_LIBS) $(ABOUTME_LIBS)
+gnome_about_me_LDADD = $(GNOMECC_CAPPLETS_LIBS) $(LIBEBOOK_LIBS) $(ABOUTME_LIBS) $(EEL_LIBS)
 gnome_about_me_LDFLAGS = -export-dynamic
 gnome_about_me_SOURCES = 		\
-	eel-alert-dialog.c		\
-	eel-alert-dialog.h		\
-	eel-gtk-macros.h		\
 	gnome-about-me-password.c	\
 	gnome-about-me-password.h	\
 	e-image-chooser.c		\
@@ -26,6 +23,6 @@
 Gladedir   = $(GNOMECC_GLADE_DIR)
 Glade_DATA = gnome-about-me.glade
 
-INCLUDES   = $(GNOMECC_CAPPLETS_CFLAGS) $(LIBEBOOK_CFLAGS)
+INCLUDES   = $(GNOMECC_CAPPLETS_CFLAGS) $(LIBEBOOK_CFLAGS) $(EEL_CFLAGS)
 CLEANFILES = $(GNOMECC_CAPPLETS_CLEANFILES) $(Desktop_in_files) $(desktop_DATA)
 EXTRA_DIST = $(Glade_DATA) $(pixmap_DATA)
--- control-center-2.15.4/capplets/about-me/gnome-about-me.glade.gecos	2006-05-26 16:00:08.000000000 -0400
+++ control-center-2.15.4/capplets/about-me/gnome-about-me.glade	2006-07-24 00:39:30.000000000 -0400
@@ -113,23 +113,30 @@
 		  </child>
 
 		  <child>
-		    <widget class="GtkLabel" id="fullname">
-		      <property name="visible">True</property>
-		      <property name="label" translatable="yes">Full Name</property>
-		      <property name="use_underline">False</property>
-		      <property name="use_markup">False</property>
-		      <property name="justify">GTK_JUSTIFY_LEFT</property>
-		      <property name="wrap">False</property>
-		      <property name="selectable">False</property>
-		      <property name="xalign">0</property>
-		      <property name="yalign">0.5</property>
-		      <property name="xpad">0</property>
-		      <property name="ypad">0</property>
-		      <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
-		      <property name="width_chars">-1</property>
-		      <property name="single_line_mode">False</property>
-		      <property name="angle">0</property>
-		    </widget>
+                    <widget class="GtkButton" id="fullnamebox">
+                      <property name="relief">GTK_RELIEF_NONE</property>
+                      <property name="focus_on_click">True</property>
+ 
+                      <child>
+                        <widget class="GtkLabel" id="fullname">
+                          <property name="visible">True</property>
+                          <property name="label" translatable="yes">Full Name</property>
+                          <property name="use_underline">False</property>
+                          <property name="use_markup">False</property>
+                          <property name="justify">GTK_JUSTIFY_LEFT</property>
+                          <property name="wrap">False</property>
+                          <property name="selectable">False</property>
+                          <property name="xalign">0</property>
+                          <property name="yalign">0.5</property>
+                          <property name="xpad">0</property>
+                          <property name="ypad">0</property>
+                          <property name="ellipsize">PANGO_ELLIPSIZE_NONE</property>
+                          <property name="width_chars">-1</property>
+                          <property name="single_line_mode">False</property>
+                          <property name="angle">0</property>
+                        </widget>
+                      </child>
+                    </widget>
 		    <packing>
 		      <property name="padding">0</property>
 		      <property name="expand">False</property>


Index: control-center.spec
===================================================================
RCS file: /cvs/dist/rpms/control-center/devel/control-center.spec,v
retrieving revision 1.157
retrieving revision 1.158
diff -u -r1.157 -r1.158
--- control-center.spec	22 Jul 2006 04:21:04 -0000	1.157
+++ control-center.spec	24 Jul 2006 04:41:35 -0000	1.158
@@ -21,7 +21,7 @@
 Summary: GNOME Control Center
 Name: control-center
 Version: 2.15.4
-Release: 5 
+Release: 6 
 Epoch: 1
 License: GPL/LGPL
 Group: User Interface/Desktops
@@ -33,7 +33,7 @@
 Patch4: control-center-2.13.90-about-me-faces.patch
 Patch5: control-center-2.12.0-run-power-manager.patch
 Patch6: control-center-2.12.1-passwd.patch
-Patch7: control-center-2.14.2-gecos.patch
+Patch7: control-center-2.15.4-gecos.patch
 Patch8: control-center-2.13.5-m4.patch
 Patch9: control-center-2.15.4-add-dbus-flags.patch
 # Dobey being unreasonable again
@@ -251,6 +251,9 @@
 %{_libdir}/pkgconfig/*
 
 %changelog
+* Mon Jul 24 2006 Matthias Clasen <mclasen at redhat.com> - 2.15.4-6
+- Make gnome-about-me start 
+
 * Sat Jul 22 2006 Matthias Clasen <mclasen at redhat.com> - 2.15.4-5
 - Fix the close button of the background capplet
 




More information about the fedora-cvs-commits mailing list