r3038 - in trunk/src/target/OM-2007.2/libraries/libmokoui2: . libmokoui

chris at sita.openmoko.org chris at sita.openmoko.org
Tue Sep 25 16:06:39 CEST 2007


Author: chris
Date: 2007-09-25 16:06:38 +0200 (Tue, 25 Sep 2007)
New Revision: 3038

Modified:
   trunk/src/target/OM-2007.2/libraries/libmokoui2/ChangeLog
   trunk/src/target/OM-2007.2/libraries/libmokoui2/libmokoui/moko-search-bar.c
Log:
        * libmokoui/moko-search-bar.c: (moko_search_bar_class_init):
        Document signals


Modified: trunk/src/target/OM-2007.2/libraries/libmokoui2/ChangeLog
===================================================================
--- trunk/src/target/OM-2007.2/libraries/libmokoui2/ChangeLog	2007-09-25 13:58:52 UTC (rev 3037)
+++ trunk/src/target/OM-2007.2/libraries/libmokoui2/ChangeLog	2007-09-25 14:06:38 UTC (rev 3038)
@@ -1,3 +1,8 @@
+2007-09-25  Chris Lord  <chris at openedhand.com>
+
+	* libmokoui/moko-search-bar.c: (moko_search_bar_class_init):
+	Document signals
+
 2007-09-25  Thomas Wood  <thomas at openedhand.com>
 
 	* libmokoui/moko-finger-scroll.h:

Modified: trunk/src/target/OM-2007.2/libraries/libmokoui2/libmokoui/moko-search-bar.c
===================================================================
--- trunk/src/target/OM-2007.2/libraries/libmokoui2/libmokoui/moko-search-bar.c	2007-09-25 13:58:52 UTC (rev 3037)
+++ trunk/src/target/OM-2007.2/libraries/libmokoui2/libmokoui/moko-search-bar.c	2007-09-25 14:06:38 UTC (rev 3038)
@@ -139,6 +139,16 @@
 			GTK_TYPE_ENTRY,
 			G_PARAM_READABLE));
 
+	/**
+	 * MokoSearchBar::toggled:
+	 * @searchbar: The #MokoSearchBar that received the signal
+	 * @search_visible: %TRUE if the search entry is visible, %FALSE
+	 * otherwise
+	 * @user_data: User data set when the signal handler was connected.
+	 *
+	 * The ::toggled signal is emitted each time the search button is
+	 * pressed.
+	 */
 	signals[TOGGLED] =
 		g_signal_new ("toggled",
 			G_OBJECT_CLASS_TYPE (object_class),
@@ -147,7 +157,17 @@
 			NULL, NULL,
 			g_cclosure_marshal_VOID__BOOLEAN,
 			G_TYPE_NONE, 1, G_TYPE_BOOLEAN);
-
+	
+	/**
+	 * MokoSearchBar::text-changed:
+	 * @searchbar: The #MokoSearchBar that received the signal
+	 * @editable: The underlying #GtkEditable that received the ::changed 
+	 * signal.
+	 * @user_data: User data set when the signal handler was connected.
+	 *
+	 * The ::text-changed signal is emitted each time the underlying 
+	 * #GtkEditable receives its ::changed signal.
+	 */
 	signals[TEXT_CHANGED] =
 		g_signal_new ("text-changed",
 			G_OBJECT_CLASS_TYPE (object_class),
@@ -157,6 +177,16 @@
 			g_cclosure_marshal_VOID__POINTER,
 			G_TYPE_NONE, 1, G_TYPE_POINTER);
 
+	/**
+	 * MokoSearchBar::combo-changed:
+	 * @searchbar: The #MokoSearchBar that received the signal
+	 * @combo: The underlying #GtkComboBox that received the ::changed 
+	 * signal.
+	 * @user_data: User data set when the signal handler was connected.
+	 *
+	 * The ::combo-changed signal is emitted each time the underlying 
+	 * #GtkComboBox receives its ::changed signal.
+	 */
 	signals[COMBO_CHANGED] =
 		g_signal_new ("combo-changed",
 			G_OBJECT_CLASS_TYPE (object_class),





More information about the commitlog mailing list