Send commitlog mailing list submissions to
        [email protected]

To subscribe or unsubscribe via the World Wide Web, visit
        http://lists.openmoko.org/mailman/listinfo/commitlog
or, via email, send a message with subject or body 'help' to
        [EMAIL PROTECTED]

You can reach the person managing the list at
        [EMAIL PROTECTED]

When replying, please edit your Subject line so it is more specific
than "Re: Contents of commitlog digest..."
Today's Topics:

   1. r3036 - in trunk/src/target/OM-2007.2/libraries/libmokoui2: .
      libmokoui ([EMAIL PROTECTED])
   2. r3037 - in trunk/src/target/OM-2007.2/libraries/libmokoui2: .
      libmokoui ([EMAIL PROTECTED])
   3. r3038 - in trunk/src/target/OM-2007.2/libraries/libmokoui2: .
      libmokoui ([EMAIL PROTECTED])
   4. r3039 - in trunk/src/target/OM-2007.2/libraries/libmokoui2: .
      libmokoui ([EMAIL PROTECTED])
   5. r3040 - in trunk/src/target/OM-2007.2/libraries/libmokoui2: .
      doc/reference doc/reference/tmpl libmokoui ([EMAIL PROTECTED])
--- Begin Message ---
Author: thomas
Date: 2007-09-25 13:57:42 +0200 (Tue, 25 Sep 2007)
New Revision: 3036

Modified:
   trunk/src/target/OM-2007.2/libraries/libmokoui2/ChangeLog
   
trunk/src/target/OM-2007.2/libraries/libmokoui2/libmokoui/moko-finger-scroll.c
   trunk/src/target/OM-2007.2/libraries/libmokoui2/libmokoui/moko-search-bar.c
Log:
* libmokoui/moko-finger-scroll.c:
* libmokoui/moko-search-bar.c:

Fix some typos in the documentation


Modified: trunk/src/target/OM-2007.2/libraries/libmokoui2/ChangeLog
===================================================================
--- trunk/src/target/OM-2007.2/libraries/libmokoui2/ChangeLog   2007-09-24 
14:16:58 UTC (rev 3035)
+++ trunk/src/target/OM-2007.2/libraries/libmokoui2/ChangeLog   2007-09-25 
11:57:42 UTC (rev 3036)
@@ -1,3 +1,10 @@
+2007-09-25  Thomas Wood  <[EMAIL PROTECTED]>
+
+       * libmokoui/moko-finger-scroll.c:
+       * libmokoui/moko-search-bar.c:
+
+       Fix some typos in the documentation
+
 2007-09-22  Holger Hans Peter Freyther  <[EMAIL PROTECTED]>
 
         Change the header file to be parsable by h2def.py, which will

Modified: 
trunk/src/target/OM-2007.2/libraries/libmokoui2/libmokoui/moko-finger-scroll.c
===================================================================
--- 
trunk/src/target/OM-2007.2/libraries/libmokoui2/libmokoui/moko-finger-scroll.c  
    2007-09-24 14:16:58 UTC (rev 3035)
+++ 
trunk/src/target/OM-2007.2/libraries/libmokoui2/libmokoui/moko-finger-scroll.c  
    2007-09-25 11:57:42 UTC (rev 3036)
@@ -826,7 +826,7 @@
 
 /**
  * moko_finger_scroll_add_with_viewport:
- * @self: A #MokoFingerScroll
+ * @scroll: A #MokoFingerScroll
  * @child: Child widget to add to the viewport
  *
  * Convenience function used to add a child to a #GtkViewport, and add the
@@ -834,12 +834,12 @@
  */
 
 void
-moko_finger_scroll_add_with_viewport (MokoFingerScroll *self, GtkWidget *child)
+moko_finger_scroll_add_with_viewport (MokoFingerScroll *scroll, GtkWidget 
*child)
 {
        GtkWidget *viewport = gtk_viewport_new (NULL, NULL);
        gtk_viewport_set_shadow_type (GTK_VIEWPORT (viewport), GTK_SHADOW_NONE);
        gtk_container_add (GTK_CONTAINER (viewport), child);
        gtk_widget_show (viewport);
-       gtk_container_add (GTK_CONTAINER (self), viewport);
+       gtk_container_add (GTK_CONTAINER (scroll), viewport);
 }
 

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-24 14:16:58 UTC (rev 3035)
+++ trunk/src/target/OM-2007.2/libraries/libmokoui2/libmokoui/moko-search-bar.c 
2007-09-25 11:57:42 UTC (rev 3036)
@@ -234,7 +234,7 @@
 
 /**
  * moko_search_bar_new_with_combo:
- * @comno: a GtkComboBox to use as the combobox
+ * @combo: a GtkComboBox to use as the combobox
  *
  * Creates a MokoSearchBar with the specified combo box
  *




--- End Message ---
--- Begin Message ---
Author: thomas
Date: 2007-09-25 15:58:52 +0200 (Tue, 25 Sep 2007)
New Revision: 3037

Modified:
   trunk/src/target/OM-2007.2/libraries/libmokoui2/ChangeLog
   
trunk/src/target/OM-2007.2/libraries/libmokoui2/libmokoui/moko-finger-scroll.h
   trunk/src/target/OM-2007.2/libraries/libmokoui2/libmokoui/moko-hint-entry.h
   trunk/src/target/OM-2007.2/libraries/libmokoui2/libmokoui/moko-search-bar.h
Log:
* libmokoui/moko-finger-scroll.h:
* libmokoui/moko-hint-entry.h:
* libmokoui/moko-search-bar.h:

Document enums and structs


Modified: trunk/src/target/OM-2007.2/libraries/libmokoui2/ChangeLog
===================================================================
--- trunk/src/target/OM-2007.2/libraries/libmokoui2/ChangeLog   2007-09-25 
11:57:42 UTC (rev 3036)
+++ trunk/src/target/OM-2007.2/libraries/libmokoui2/ChangeLog   2007-09-25 
13:58:52 UTC (rev 3037)
@@ -1,5 +1,13 @@
 2007-09-25  Thomas Wood  <[EMAIL PROTECTED]>
 
+       * libmokoui/moko-finger-scroll.h:
+       * libmokoui/moko-hint-entry.h:
+       * libmokoui/moko-search-bar.h:
+
+       Document enums and structs
+
+2007-09-25  Thomas Wood  <[EMAIL PROTECTED]>
+
        * libmokoui/moko-finger-scroll.c:
        * libmokoui/moko-search-bar.c:
 

Modified: 
trunk/src/target/OM-2007.2/libraries/libmokoui2/libmokoui/moko-finger-scroll.h
===================================================================
--- 
trunk/src/target/OM-2007.2/libraries/libmokoui2/libmokoui/moko-finger-scroll.h  
    2007-09-25 11:57:42 UTC (rev 3036)
+++ 
trunk/src/target/OM-2007.2/libraries/libmokoui2/libmokoui/moko-finger-scroll.h  
    2007-09-25 13:58:52 UTC (rev 3037)
@@ -32,6 +32,11 @@
 #define MOKO_IS_FINGER_SCROLL_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), 
MOKO_TYPE_FINGER_SCROLL))
 #define MOKO_FINGER_SCROLL_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), 
MOKO_TYPE_FINGER_SCROLL, MokoFingerScrollClass))
 
+/**
+ * MokoFingerScroll:
+ *
+ * MokoFingerScroll has no publicly accessible fields
+ */
 typedef struct _MokoFingerScroll MokoFingerScroll;
 typedef struct _MokoFingerScrollClass MokoFingerScrollClass;
 
@@ -43,6 +48,18 @@
   GtkEventBoxClass parent_class;
 };
 
+/**
+ * MokoFingerScrollMode:
+ * @MOKO_FINGER_SCROLL_MODE_PUSH: Scrolling follows pointer
+ * @MOKO_FINGER_SCROLL_MODE_ACCEL: Scrolling uses physics to "spin" the widget
+ *
+ * Used to change the behaviour of the finger scrolling
+ */
+
+/**
+ */
+/**
+ */
 typedef enum {
        MOKO_FINGER_SCROLL_MODE_PUSH,
        MOKO_FINGER_SCROLL_MODE_ACCEL,

Modified: 
trunk/src/target/OM-2007.2/libraries/libmokoui2/libmokoui/moko-hint-entry.h
===================================================================
--- trunk/src/target/OM-2007.2/libraries/libmokoui2/libmokoui/moko-hint-entry.h 
2007-09-25 11:57:42 UTC (rev 3036)
+++ trunk/src/target/OM-2007.2/libraries/libmokoui2/libmokoui/moko-hint-entry.h 
2007-09-25 13:58:52 UTC (rev 3037)
@@ -36,6 +36,11 @@
 #define MOKO_IS_HINT_ENTRY_CLASS(klass)     (G_TYPE_CHECK_CLASS_TYPE ((klass), 
MOKO_TYPE_HINT_ENTRY))
 #define MOKO_HINT_ENTRY_GET_CLASS(obj)      (G_TYPE_INSTANCE_GET_CLASS ((obj), 
MOKO_TYPE_HINT_ENTRY, MokoGroupComboClass))
 
+/**
+ * MokoHintEntry:
+ *
+ * MokoHintEntry has no publicly accessible fields
+ */
 typedef struct _MokoHintEntry MokoHintEntry;
 typedef struct _MokoHintEntryClass MokoHintEntryClass;
 

Modified: 
trunk/src/target/OM-2007.2/libraries/libmokoui2/libmokoui/moko-search-bar.h
===================================================================
--- trunk/src/target/OM-2007.2/libraries/libmokoui2/libmokoui/moko-search-bar.h 
2007-09-25 11:57:42 UTC (rev 3036)
+++ trunk/src/target/OM-2007.2/libraries/libmokoui2/libmokoui/moko-search-bar.h 
2007-09-25 13:58:52 UTC (rev 3037)
@@ -32,6 +32,11 @@
 #define MOKO_IS_SEARCH_BAR_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass),  
MOKO_TYPE_SEARCH_BAR))
 #define MOKO_SEARCH_BAR_GET_CLASS(obj)  (G_TYPE_INSTANCE_GET_CLASS ((obj),  
MOKO_TYPE_SEARCH_BAR, MokoSearchBarClass))
 
+/**
+ * MokoSearchBar:
+ *
+ * MokoSearchBar has no publicly accessible fields
+ */
 typedef struct _MokoSearchBar MokoSearchBar;
 typedef struct _MokoSearchBarClass MokoSearchBarClass;
 




--- End Message ---
--- Begin Message ---
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  <[EMAIL PROTECTED]>
+
+       * libmokoui/moko-search-bar.c: (moko_search_bar_class_init):
+       Document signals
+
 2007-09-25  Thomas Wood  <[EMAIL PROTECTED]>
 
        * 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),




--- End Message ---
--- Begin Message ---
Author: thomas
Date: 2007-09-25 16:11:24 +0200 (Tue, 25 Sep 2007)
New Revision: 3039

Modified:
   trunk/src/target/OM-2007.2/libraries/libmokoui2/ChangeLog
   
trunk/src/target/OM-2007.2/libraries/libmokoui2/libmokoui/moko-finger-scroll.h
   trunk/src/target/OM-2007.2/libraries/libmokoui2/libmokoui/moko-hint-entry.c
Log:
        * libmokoui/moko-finger-scroll.h: Remove redunent comment
        * libmokoui/moko-hint-entry.c: (moko_hint_entry_class_init): Add missing
        documentation


Modified: trunk/src/target/OM-2007.2/libraries/libmokoui2/ChangeLog
===================================================================
--- trunk/src/target/OM-2007.2/libraries/libmokoui2/ChangeLog   2007-09-25 
14:06:38 UTC (rev 3038)
+++ trunk/src/target/OM-2007.2/libraries/libmokoui2/ChangeLog   2007-09-25 
14:11:24 UTC (rev 3039)
@@ -1,3 +1,9 @@
+2007-09-25  Thomas Wood  <[EMAIL PROTECTED]>
+
+       * libmokoui/moko-finger-scroll.h: Remove redunent comment
+       * libmokoui/moko-hint-entry.c: (moko_hint_entry_class_init): Add missing
+       documentation
+
 2007-09-25  Chris Lord  <[EMAIL PROTECTED]>
 
        * libmokoui/moko-search-bar.c: (moko_search_bar_class_init):

Modified: 
trunk/src/target/OM-2007.2/libraries/libmokoui2/libmokoui/moko-finger-scroll.h
===================================================================
--- 
trunk/src/target/OM-2007.2/libraries/libmokoui2/libmokoui/moko-finger-scroll.h  
    2007-09-25 14:06:38 UTC (rev 3038)
+++ 
trunk/src/target/OM-2007.2/libraries/libmokoui2/libmokoui/moko-finger-scroll.h  
    2007-09-25 14:11:24 UTC (rev 3039)
@@ -55,11 +55,6 @@
  *
  * Used to change the behaviour of the finger scrolling
  */
-
-/**
- */
-/**
- */
 typedef enum {
        MOKO_FINGER_SCROLL_MODE_PUSH,
        MOKO_FINGER_SCROLL_MODE_ACCEL,

Modified: 
trunk/src/target/OM-2007.2/libraries/libmokoui2/libmokoui/moko-hint-entry.c
===================================================================
--- trunk/src/target/OM-2007.2/libraries/libmokoui2/libmokoui/moko-hint-entry.c 
2007-09-25 14:06:38 UTC (rev 3038)
+++ trunk/src/target/OM-2007.2/libraries/libmokoui2/libmokoui/moko-hint-entry.c 
2007-09-25 14:11:24 UTC (rev 3039)
@@ -168,7 +168,7 @@
   widget_class->focus_out_event = focus_out_event;
   
   g_object_class_install_property (object_class, PROP_HINT, g_param_spec_string
-                                   ("hint", "hint", NULL, "",
+                                   ("hint", "hint", "Text to display when the 
entry is empty", "",
                                     G_PARAM_READWRITE | G_PARAM_CONSTRUCT |
                                     G_PARAM_STATIC_NAME | G_PARAM_STATIC_NICK 
| G_PARAM_STATIC_BLURB));
 }
@@ -188,6 +188,8 @@
  * @hint: The hint to display when the widget is not focused
  *
  * Create a new #MokoHintEntry widget with the specified hint.
+ *
+ * Returns: a newly created #MokoHintEntry
  */
 GtkWidget *
 moko_hint_entry_new (const char *hint)




--- End Message ---
--- Begin Message ---
Author: thomas
Date: 2007-09-25 17:01:25 +0200 (Tue, 25 Sep 2007)
New Revision: 3040

Added:
   trunk/src/target/OM-2007.2/libraries/libmokoui2/doc/reference/tmpl/
   
trunk/src/target/OM-2007.2/libraries/libmokoui2/doc/reference/tmpl/moko-stock.sgml
Modified:
   trunk/src/target/OM-2007.2/libraries/libmokoui2/ChangeLog
   
trunk/src/target/OM-2007.2/libraries/libmokoui2/libmokoui/moko-finger-scroll.c
   trunk/src/target/OM-2007.2/libraries/libmokoui2/libmokoui/moko-hint-entry.c
   trunk/src/target/OM-2007.2/libraries/libmokoui2/libmokoui/moko-search-bar.c
   trunk/src/target/OM-2007.2/libraries/libmokoui2/libmokoui/moko-stock.c
Log:
* doc/reference/tmpl/moko-stock.sgml: Add stock item documentation

* libmokoui/moko-finger-scroll.c:
* libmokoui/moko-hint-entry.c:
* libmokoui/moko-search-bar.c:
* libmokoui/moko-stock.c:
Add section documentation


Modified: trunk/src/target/OM-2007.2/libraries/libmokoui2/ChangeLog
===================================================================
--- trunk/src/target/OM-2007.2/libraries/libmokoui2/ChangeLog   2007-09-25 
14:11:24 UTC (rev 3039)
+++ trunk/src/target/OM-2007.2/libraries/libmokoui2/ChangeLog   2007-09-25 
15:01:25 UTC (rev 3040)
@@ -1,5 +1,15 @@
 2007-09-25  Thomas Wood  <[EMAIL PROTECTED]>
 
+       * doc/reference/tmpl/moko-stock.sgml: Add stock item documentation
+
+       * libmokoui/moko-finger-scroll.c:
+       * libmokoui/moko-hint-entry.c:
+       * libmokoui/moko-search-bar.c:
+       * libmokoui/moko-stock.c:
+       Add section documentation
+
+2007-09-25  Thomas Wood  <[EMAIL PROTECTED]>
+
        * libmokoui/moko-finger-scroll.h: Remove redunent comment
        * libmokoui/moko-hint-entry.c: (moko_hint_entry_class_init): Add missing
        documentation

Added: 
trunk/src/target/OM-2007.2/libraries/libmokoui2/doc/reference/tmpl/moko-stock.sgml
===================================================================
--- 
trunk/src/target/OM-2007.2/libraries/libmokoui2/doc/reference/tmpl/moko-stock.sgml
  2007-09-25 14:11:24 UTC (rev 3039)
+++ 
trunk/src/target/OM-2007.2/libraries/libmokoui2/doc/reference/tmpl/moko-stock.sgml
  2007-09-25 15:01:25 UTC (rev 3040)
@@ -0,0 +1,271 @@
+<!-- ##### SECTION Title ##### -->
+moko-stock
+
+<!-- ##### SECTION Short_Description ##### -->
+
+
+<!-- ##### SECTION Long_Description ##### -->
+<para>
+
+</para>
+
+<!-- ##### SECTION See_Also ##### -->
+<para>
+
+</para>
+
+<!-- ##### SECTION Stability_Level ##### -->
+
+
+<!-- ##### MACRO MOKO_STOCK_CALL_ANSWER ##### -->
+<para>
+The "Answer" item
+</para>
+
+
+
+<!-- ##### MACRO MOKO_STOCK_CALL_DIAL ##### -->
+<para>
+The "Dial" item
+</para>
+
+
+
+<!-- ##### MACRO MOKO_STOCK_CALL_DIALED ##### -->
+<para>
+The "Dialed History" item
+</para>
+
+
+
+<!-- ##### MACRO MOKO_STOCK_CALL_HANGUP ##### -->
+<para>
+The "Hangup" item
+</para>
+
+
+
+<!-- ##### MACRO MOKO_STOCK_CALL_HISTORY ##### -->
+<para>
+The "Call History" item
+</para>
+
+
+
+<!-- ##### MACRO MOKO_STOCK_CALL_HOLD ##### -->
+<para>
+The "Hold" item
+</para>
+
+
+
+<!-- ##### MACRO MOKO_STOCK_CALL_IN ##### -->
+<para>
+The "Incoming Call" item
+</para>
+
+
+
+<!-- ##### MACRO MOKO_STOCK_CALL_MISSED ##### -->
+<para>
+The "Call Missed" item
+</para>
+
+
+
+<!-- ##### MACRO MOKO_STOCK_CALL_REDIAL ##### -->
+<para>
+The "Redial" item
+</para>
+
+
+
+<!-- ##### MACRO MOKO_STOCK_CALL_REJECT ##### -->
+<para>
+The "Reject Call" item
+</para>
+
+
+
+<!-- ##### MACRO MOKO_STOCK_CONTACT_ADDRESS ##### -->
+<para>
+The "Contact Address" item
+</para>
+
+
+
+<!-- ##### MACRO MOKO_STOCK_CONTACT_DELETE ##### -->
+<para>
+The "Delete Contact" item
+</para>
+
+
+
+<!-- ##### MACRO MOKO_STOCK_CONTACT_EMAIL ##### -->
+<para>
+The "Contact E-Mail" item
+</para>
+
+
+
+<!-- ##### MACRO MOKO_STOCK_CONTACT_GROUPS ##### -->
+<para>
+The "Contact Groups" item
+</para>
+
+
+
+<!-- ##### MACRO MOKO_STOCK_CONTACT_MODE ##### -->
+<para>
+The "Contact Mode" item
+</para>
+
+
+
+<!-- ##### MACRO MOKO_STOCK_CONTACT_NEW ##### -->
+<para>
+The "New Contact" item
+</para>
+
+
+
+<!-- ##### MACRO MOKO_STOCK_CONTACT_PHONE ##### -->
+<para>
+The "Contact Phone Number" item
+</para>
+
+
+
+<!-- ##### MACRO MOKO_STOCK_FOLDER_DELETE ##### -->
+<para>
+The "Delete Folder" item
+</para>
+
+
+
+<!-- ##### MACRO MOKO_STOCK_FOLDER_NEW ##### -->
+<para>
+The "New Folder" item
+</para>
+
+
+
+<!-- ##### MACRO MOKO_STOCK_HISTORY ##### -->
+<para>
+The "History" item
+</para>
+
+
+
+<!-- ##### MACRO MOKO_STOCK_MAIL_DELETE ##### -->
+<para>
+The "Delete Mail" item
+</para>
+
+
+
+<!-- ##### MACRO MOKO_STOCK_MAIL_FORWARD ##### -->
+<para>
+The "Forward Mail" item
+</para>
+
+
+
+<!-- ##### MACRO MOKO_STOCK_MAIL_MARK_READ ##### -->
+<para>
+The "Mark Read" item
+</para>
+
+
+
+<!-- ##### MACRO MOKO_STOCK_MAIL_NEW ##### -->
+<para>
+The "New Mail" item
+</para>
+
+
+
+<!-- ##### MACRO MOKO_STOCK_MAIL_READ ##### -->
+<para>
+The "Read Mail" item
+</para>
+
+
+
+<!-- ##### MACRO MOKO_STOCK_MAIL_REPLY_ALL ##### -->
+<para>
+The "Reply to All" item
+</para>
+
+
+
+<!-- ##### MACRO MOKO_STOCK_MAIL_REPLY_SENDER ##### -->
+<para>
+The "Reply to Sender" item
+</para>
+
+
+
+<!-- ##### MACRO MOKO_STOCK_MAIL_SEND ##### -->
+<para>
+The "Send Mail" item
+</para>
+
+
+
+<!-- ##### MACRO MOKO_STOCK_MAIL_SEND_RECEIVE ##### -->
+<para>
+The "Send and Receive" item
+</para>
+
+
+
+<!-- ##### MACRO MOKO_STOCK_PHONE_BOOK ##### -->
+<para>
+The "Phone Book" item
+</para>
+
+
+
+<!-- ##### MACRO MOKO_STOCK_SEARCH ##### -->
+<para>
+The "Search" item
+</para>
+
+
+
+<!-- ##### MACRO MOKO_STOCK_SMS_NEW ##### -->
+<para>
+The "New SMS" item
+</para>
+
+
+
+<!-- ##### MACRO MOKO_STOCK_SPEAKER ##### -->
+<para>
+The "Speaker" item
+</para>
+
+
+
+<!-- ##### MACRO MOKO_STOCK_HANDSET ##### -->
+<para>
+The "Handset" item
+</para>
+
+
+
+<!-- ##### MACRO MOKO_STOCK_VIEW ##### -->
+<para>
+The "View" item
+</para>
+
+
+
+<!-- ##### FUNCTION moko_stock_register ##### -->
+<para>
+
+</para>
+
+
+

Modified: 
trunk/src/target/OM-2007.2/libraries/libmokoui2/libmokoui/moko-finger-scroll.c
===================================================================
--- 
trunk/src/target/OM-2007.2/libraries/libmokoui2/libmokoui/moko-finger-scroll.c  
    2007-09-25 14:11:24 UTC (rev 3039)
+++ 
trunk/src/target/OM-2007.2/libraries/libmokoui2/libmokoui/moko-finger-scroll.c  
    2007-09-25 15:01:25 UTC (rev 3040)
@@ -17,6 +17,18 @@
  *  Current Version: $Rev$ ($Date$) [$Author$]
  */
 
+/**
+ * SECTION: moko-finger-scroll
+ * @short_description: A scrolling widget designed for touch screens
+ * @see_also: #GtkScrolledWindow
+ *
+ * #MokoFingerScroll implements a scrolled window designed to be used with a
+ * touch screen interface. The user scrolls the child widget by activating the
+ * pointing device and dragging it over the widget.
+ *
+ */
+
+
 #include "moko-finger-scroll.h"
 
 G_DEFINE_TYPE (MokoFingerScroll, moko_finger_scroll, GTK_TYPE_EVENT_BOX)

Modified: 
trunk/src/target/OM-2007.2/libraries/libmokoui2/libmokoui/moko-hint-entry.c
===================================================================
--- trunk/src/target/OM-2007.2/libraries/libmokoui2/libmokoui/moko-hint-entry.c 
2007-09-25 14:11:24 UTC (rev 3039)
+++ trunk/src/target/OM-2007.2/libraries/libmokoui2/libmokoui/moko-hint-entry.c 
2007-09-25 15:01:25 UTC (rev 3040)
@@ -1,5 +1,5 @@
 /*
- * moko-hint-history.c - taken from koto-hint-history.c
+ * moko-hint-entry.c - taken from koto-hint-entry.c
  *   <http://svn.o-hand.com/repos/tasks/trunk/libkoto/koto-hint-entry.c>
  *
  * Copyright (C) 2007 OpenedHand Ltd
@@ -21,6 +21,20 @@
  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
  */
 
+/**
+ * SECTION: moko-hint-entry
+ * @short_description: An entry widget with an additional "hint" when no value
+ * is entered.
+ * @see_also: #GtkEntry
+ *
+ * #MokoHintEntry is a simple #GtkEntry subclass that displays "hint" text if
+ * the user has not entered a value. This is useful when there is not enough
+ * space in the user interface to add a label next to the entry. However, it
+ * should only be used where the meaning and context of the user entered value
+ * is obvious without a label.
+ */
+
+
 #include <config.h>
 #include <string.h>
 #include <gtk/gtk.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 14:11:24 UTC (rev 3039)
+++ trunk/src/target/OM-2007.2/libraries/libmokoui2/libmokoui/moko-search-bar.c 
2007-09-25 15:01:25 UTC (rev 3040)
@@ -17,6 +17,19 @@
  *  Current Version: $Rev$ ($Date$) [$Author$]
  */
 
+
+/**
+ * SECTION: moko-search-bar
+ * @short_description: An implementation of the OpenMoko "Search Bar"
+ * user interface
+ * @see_also: #GtkEntry, #GtkComboBox
+ *
+ * The #MokoSearchBar is a composite widget that implements the "Search Bar"
+ * user interface from OpenMoko. It comprises of a #GtkEntry, a #GtkComboBox
+ * and a #GtkToggleButton that toggles the visibility of the entry and combo 
box.
+ *
+ */
+
 #include "moko-search-bar.h"
 
 G_DEFINE_TYPE (MokoSearchBar, moko_search_bar, GTK_TYPE_HBOX)

Modified: trunk/src/target/OM-2007.2/libraries/libmokoui2/libmokoui/moko-stock.c
===================================================================
--- trunk/src/target/OM-2007.2/libraries/libmokoui2/libmokoui/moko-stock.c      
2007-09-25 14:11:24 UTC (rev 3039)
+++ trunk/src/target/OM-2007.2/libraries/libmokoui2/libmokoui/moko-stock.c      
2007-09-25 15:01:25 UTC (rev 3040)
@@ -18,6 +18,13 @@
  */
 
 
+/**
+ * SECTION: moko-stock
+ * @short_description: Stock items for OpenMoko
+ *
+ * Stock items for use with OpenMoko
+ */
+
 #include <gtk/gtk.h>
 #include <moko-stock.h>
 #include <glib/gi18n.h>




--- End Message ---
_______________________________________________
commitlog mailing list
[email protected]
http://lists.openmoko.org/mailman/listinfo/commitlog

Reply via email to