[maemo-commits] [maemo-commits] r9838 - in projects/haf/branches/hildon-libs/hildon-1: . examples src

From: subversion at stage.maemo.org subversion at stage.maemo.org
Date: Wed Feb 14 11:04:29 EET 2007
Author: mdk
Date: 2007-02-14 11:04:26 +0200 (Wed, 14 Feb 2007)
New Revision: 9838

Added:
   projects/haf/branches/hildon-libs/hildon-1/examples/hildon-lookup-example.c
Modified:
   projects/haf/branches/hildon-libs/hildon-1/ChangeLog.2
   projects/haf/branches/hildon-libs/hildon-1/examples/Makefile.am
   projects/haf/branches/hildon-libs/hildon-1/src/hildon-caption.c
   projects/haf/branches/hildon-libs/hildon-1/src/hildon-color-button.c
   projects/haf/branches/hildon-libs/hildon-1/src/hildon-color-chooser-dialog.c
   projects/haf/branches/hildon-libs/hildon-1/src/hildon-color-chooser.c
   projects/haf/branches/hildon-libs/hildon-1/src/hildon-controlbar.c
   projects/haf/branches/hildon-libs/hildon-1/src/hildon-date-editor.c
   projects/haf/branches/hildon-libs/hildon-1/src/hildon-find-toolbar.c
   projects/haf/branches/hildon-libs/hildon-1/src/hildon-font-selection-dialog.c
   projects/haf/branches/hildon-libs/hildon-1/src/hildon-get-password-dialog.c
   projects/haf/branches/hildon-libs/hildon-1/src/hildon-hvolumebar.c
   projects/haf/branches/hildon-libs/hildon-1/src/hildon-login-dialog.c
   projects/haf/branches/hildon-libs/hildon-1/src/hildon-note.c
   projects/haf/branches/hildon-libs/hildon-1/src/hildon-number-editor.c
   projects/haf/branches/hildon-libs/hildon-1/src/hildon-range-editor.c
   projects/haf/branches/hildon-libs/hildon-1/src/hildon-seekbar.c
   projects/haf/branches/hildon-libs/hildon-1/src/hildon-set-password-dialog.c
   projects/haf/branches/hildon-libs/hildon-1/src/hildon-sort-dialog.c
   projects/haf/branches/hildon-libs/hildon-1/src/hildon-sound.c
   projects/haf/branches/hildon-libs/hildon-1/src/hildon-time-editor.c
   projects/haf/branches/hildon-libs/hildon-1/src/hildon-time-picker.c
   projects/haf/branches/hildon-libs/hildon-1/src/hildon-volumebar.c
   projects/haf/branches/hildon-libs/hildon-1/src/hildon-vvolumebar.c
   projects/haf/branches/hildon-libs/hildon-1/src/hildon-weekday-picker.c
   projects/haf/branches/hildon-libs/hildon-1/src/hildon-wizard-dialog.c
Log:
Adding an example test program to check icon-lookup functionality.
Doc updates.


Modified: projects/haf/branches/hildon-libs/hildon-1/ChangeLog.2
===================================================================
--- projects/haf/branches/hildon-libs/hildon-1/ChangeLog.2	2007-02-14 06:55:09 UTC (rev 9837)
+++ projects/haf/branches/hildon-libs/hildon-1/ChangeLog.2	2007-02-14 09:04:26 UTC (rev 9838)
@@ -1,3 +1,34 @@
+2007-02-14  Michael Dominic Kostrzewa  <michael.kostrzewa at nokia.com> 
+
+	* examples/Makefile.am:
+	* examples/hildon-lookup-example.c: Adding an example test program to
+	check icon-lookup functionality.
+
+	* src/hildon-caption.c:
+	* src/hildon-color-button.c:
+	* src/hildon-color-chooser-dialog.c:
+	* src/hildon-color-chooser.c:
+	* src/hildon-controlbar.c:
+	* src/hildon-date-editor.c:
+	* src/hildon-find-toolbar.c:
+	* src/hildon-font-selection-dialog.c:
+	* src/hildon-get-password-dialog.c:
+	* src/hildon-hvolumebar.c:
+	* src/hildon-login-dialog.c:
+	* src/hildon-note.c:
+	* src/hildon-number-editor.c:
+	* src/hildon-range-editor.c:
+	* src/hildon-seekbar.c:
+	* src/hildon-set-password-dialog.c:
+	* src/hildon-sort-dialog.c:
+	* src/hildon-sound.c:
+	* src/hildon-time-editor.c:
+	* src/hildon-time-picker.c:
+	* src/hildon-volumebar.c:
+	* src/hildon-vvolumebar.c:
+	* src/hildon-weekday-picker.c:
+	* src/hildon-wizard-dialog.c: Doc update.
+
 2007-02-13  Michael Dominic Kostrzewa  <michael.kostrzewa at nokia.com> 
 
 	* examples/Makefile.am:

Modified: projects/haf/branches/hildon-libs/hildon-1/examples/Makefile.am
===================================================================
--- projects/haf/branches/hildon-libs/hildon-1/examples/Makefile.am	2007-02-14 06:55:09 UTC (rev 9837)
+++ projects/haf/branches/hildon-libs/hildon-1/examples/Makefile.am	2007-02-14 09:04:26 UTC (rev 9838)
@@ -22,7 +22,8 @@
 					  hildon-vvolumebar-example		\
 					  hildon-toolbar-example		\
 					  hildon-code-dialog-example		\
-					  hildon-hvolumebar-example
+					  hildon-hvolumebar-example		\
+					  hildon-lookup-example
 
 # HIldon window
 hildon_window_example_LDADD		= $(HILDON_OBJ_LIBS)
@@ -134,4 +135,9 @@
 hildon_code_dialog_example_CFLAGS	= $(HILDON_OBJ_CFLAGS)
 hildon_code_dialog_example_SOURCES	= hildon-code-dialog-example.c
 
+# Hildon lookup example
+hildon_lookup_example_LDADD		= $(HILDON_OBJ_LIBS)
+hildon_lookup_example_CFLAGS		= $(HILDON_OBJ_CFLAGS)
+hildon_lookup_example_SOURCES		= hildon-lookup-example.c
+
 endif

Added: projects/haf/branches/hildon-libs/hildon-1/examples/hildon-lookup-example.c
===================================================================
--- projects/haf/branches/hildon-libs/hildon-1/examples/hildon-lookup-example.c	2007-02-14 06:55:09 UTC (rev 9837)
+++ projects/haf/branches/hildon-libs/hildon-1/examples/hildon-lookup-example.c	2007-02-14 09:04:26 UTC (rev 9838)
@@ -0,0 +1,89 @@
+/*
+ * This file is a part of hildon examples
+ *
+ * Copyright (C) 2005, 2006 Nokia Corporation, all rights reserved.
+ *
+ * Author: Michael Dominic Kostrzewa <michael.kostrzewa at nokia.com>
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public License
+ * as published by the Free Software Foundation; version 2.1 of
+ * the License.
+ *
+ * This library is distributed in the hope that it will be useful, but
+ * WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
+ * 02110-1301 USA
+ *
+ */
+
+#include                                        <stdio.h>
+#include                                        <stdlib.h>
+#include                                        <glib.h>
+#include                                        <gtk/gtk.h>
+#include                                        "hildon.h"
+
+static GtkWidget*
+create_button_with_icon                         (const gchar *icon);
+
+static GtkWidget*
+create_button_with_icon                         (const gchar *icon)
+{
+    GtkImage *image = GTK_IMAGE (gtk_image_new_from_icon_name (icon, GTK_ICON_SIZE_BUTTON));
+    if (image == NULL) {
+        g_warning ("Failed to create a GtkImage from icon name: %s", icon);
+        return NULL;
+    }
+
+    gtk_misc_set_padding (GTK_MISC (image), 12, 12);
+
+    GtkButton *button = GTK_BUTTON (gtk_button_new ());
+
+    gtk_container_add (GTK_CONTAINER (button), GTK_WIDGET (image));
+
+    return (GtkWidget *) button;
+}
+
+int
+main                                            (int argc, 
+                                                 char **args)
+{
+    gtk_init (&argc, &args);
+   
+    GtkDialog *dialog = GTK_DIALOG (gtk_dialog_new ());
+    gtk_window_set_title (GTK_WINDOW (dialog), "icons");
+
+    gtk_dialog_set_has_separator (dialog, FALSE);
+ 
+    GtkTable *table = GTK_TABLE (gtk_table_new (3, 3, TRUE));
+    gtk_table_attach (table, create_button_with_icon (GTK_STOCK_OK), 0, 1, 0, 1, 0, 0, 0, 0);
+    gtk_table_attach (table, create_button_with_icon (GTK_STOCK_CANCEL), 1, 2, 0, 1, 0, 0, 0, 0);
+    gtk_table_attach (table, create_button_with_icon (GTK_STOCK_QUIT), 2, 3, 0, 1, 0, 0, 0, 0);
+    
+    gtk_table_attach (table, create_button_with_icon (GTK_STOCK_MEDIA_PLAY), 0, 1, 1, 2, 0, 0, 0, 0);
+    gtk_table_attach (table, create_button_with_icon (GTK_STOCK_MEDIA_PAUSE), 1, 2, 1, 2, 0, 0, 0, 0);
+    gtk_table_attach (table, create_button_with_icon ("qgn_note_info"), 2, 3, 1, 2, 0, 0, 0, 0);
+    
+    gtk_table_attach (table, create_button_with_icon ("qgn_note_infoprint"), 0, 1, 2, 3, 0, 0, 0, 0);
+    gtk_table_attach (table, create_button_with_icon ("qgn_indi_pball_a"), 1, 2, 2, 3, 0, 0, 0, 0);
+    gtk_table_attach (table, create_button_with_icon ("qgn_note_confirm"), 2, 3, 2, 3, 0, 0, 0, 0);
+
+    gtk_table_set_col_spacings (table, 6);
+    gtk_table_set_row_spacings (table, 6);
+
+    gtk_box_pack_start (GTK_BOX (dialog->vbox), GTK_WIDGET (table), FALSE, FALSE, 0);
+
+    gtk_dialog_add_button (dialog, "Close", GTK_RESPONSE_CLOSE);
+
+    gtk_widget_show_all (GTK_WIDGET (dialog));
+    gtk_dialog_run (dialog);
+    
+    return 0;
+}
+
+

Modified: projects/haf/branches/hildon-libs/hildon-1/src/hildon-caption.c
===================================================================
--- projects/haf/branches/hildon-libs/hildon-1/src/hildon-caption.c	2007-02-14 06:55:09 UTC (rev 9837)
+++ projects/haf/branches/hildon-libs/hildon-1/src/hildon-caption.c	2007-02-14 09:04:26 UTC (rev 9838)
@@ -25,7 +25,7 @@
 /**
  * SECTION:hildon-caption
  * @short_description: A single-child container widget that precedes the 
- * contained widget with a field label and an optional icon
+ * contained widget with a field label and an optional icon.
  *
  * #HildonCaption is a single-child container widget that precedes the 
  * contained widget with a field label and an optional icon. It allows 

Modified: projects/haf/branches/hildon-libs/hildon-1/src/hildon-color-button.c
===================================================================
--- projects/haf/branches/hildon-libs/hildon-1/src/hildon-color-button.c	2007-02-14 06:55:09 UTC (rev 9837)
+++ projects/haf/branches/hildon-libs/hildon-1/src/hildon-color-button.c	2007-02-14 09:04:26 UTC (rev 9838)
@@ -24,7 +24,7 @@
 
 /**
  * SECTION:hildon-color-button
- * @short_description: A widget to open HildonColorChooserDialog
+ * @short_description: A widget to open HildonColorChooserDialog.
  * @see_also: #HildonColorChooserDialog, #HildonColorPopup
  *
  * HildonColorButton is a widget to open a HildonColorChooserDialog.

Modified: projects/haf/branches/hildon-libs/hildon-1/src/hildon-color-chooser-dialog.c
===================================================================
--- projects/haf/branches/hildon-libs/hildon-1/src/hildon-color-chooser-dialog.c	2007-02-14 06:55:09 UTC (rev 9837)
+++ projects/haf/branches/hildon-libs/hildon-1/src/hildon-color-chooser-dialog.c	2007-02-14 09:04:26 UTC (rev 9838)
@@ -25,7 +25,7 @@
 
 /**
  * SECTION:hildon-color-chooser-dialog
- * @short_description: A dialog used to select a color from HSV colorspace
+ * @short_description: A dialog used to select a color from HSV colorspace.
  * @see_also: #HildonColorButton
  *
  * HildonColorChooserDialog enables the user to 

Modified: projects/haf/branches/hildon-libs/hildon-1/src/hildon-color-chooser.c
===================================================================
--- projects/haf/branches/hildon-libs/hildon-1/src/hildon-color-chooser.c	2007-02-14 06:55:09 UTC (rev 9837)
+++ projects/haf/branches/hildon-libs/hildon-1/src/hildon-color-chooser.c	2007-02-14 09:04:26 UTC (rev 9838)
@@ -25,7 +25,7 @@
 
 /**
  * SECTION:hildon-color-chooser
- * @short_description: A widget used to select a color from an HSV colorspace
+ * @short_description: A widget used to select a color from an HSV colorspace.
  * @see_also: #HildonColorChooserDialog
  *
  * HildonColorChooser is a widget that displays an HSV colorspace. 

Modified: projects/haf/branches/hildon-libs/hildon-1/src/hildon-controlbar.c
===================================================================
--- projects/haf/branches/hildon-libs/hildon-1/src/hildon-controlbar.c	2007-02-14 06:55:09 UTC (rev 9837)
+++ projects/haf/branches/hildon-libs/hildon-1/src/hildon-controlbar.c	2007-02-14 09:04:26 UTC (rev 9838)
@@ -25,7 +25,7 @@
 /**
  * SECTION:hildon-controlbar
  * @short_description: A widget that allows increasing or decreasing
- * a value within a pre-defined range
+ * a value within a pre-defined range.
  *
  * #HildonControlbar is a horizontally positioned range widget that is
  * visually divided into blocks and supports setting a minimum and

Modified: projects/haf/branches/hildon-libs/hildon-1/src/hildon-date-editor.c
===================================================================
--- projects/haf/branches/hildon-libs/hildon-1/src/hildon-date-editor.c	2007-02-14 06:55:09 UTC (rev 9837)
+++ projects/haf/branches/hildon-libs/hildon-1/src/hildon-date-editor.c	2007-02-14 09:04:26 UTC (rev 9838)
@@ -25,7 +25,7 @@
 /**
  * SECTION:hildon-date-editor
  * @short_description: A widget which queries a date from user or opens
- * a HildonCalendarPopup
+ * a HildonCalendarPopup.
  * @see_also: #HildonCalendarPopup, #HildonTimeEditor
  * 
  * HildonDateEditor is a widget with three entry fields (day, month,

Modified: projects/haf/branches/hildon-libs/hildon-1/src/hildon-find-toolbar.c
===================================================================
--- projects/haf/branches/hildon-libs/hildon-1/src/hildon-find-toolbar.c	2007-02-14 06:55:09 UTC (rev 9837)
+++ projects/haf/branches/hildon-libs/hildon-1/src/hildon-find-toolbar.c	2007-02-14 09:04:26 UTC (rev 9838)
@@ -24,7 +24,7 @@
 
 /**
  * SECTION:hildon-find-toolbar
- * @short_description: A toolbar with a search field
+ * @short_description: A toolbar with a search field.
  * @see_also: #HildonWindow
  *
  * HildonFindToolbar is a toolbar that contains a search entry and a dropdown

Modified: projects/haf/branches/hildon-libs/hildon-1/src/hildon-font-selection-dialog.c
===================================================================
--- projects/haf/branches/hildon-libs/hildon-1/src/hildon-font-selection-dialog.c	2007-02-14 06:55:09 UTC (rev 9837)
+++ projects/haf/branches/hildon-libs/hildon-1/src/hildon-font-selection-dialog.c	2007-02-14 09:04:26 UTC (rev 9838)
@@ -25,7 +25,7 @@
 /**
  * SECTION:hildon-font-selection-dialog
  * @short_description: A widget used to allow users to select a font 
- * with certain properties
+ * with certain properties.
  *
  * Font selection can be made using this widget. Users can select font name, 
  * size, style, etc. Users can also preview text in the selected font.

Modified: projects/haf/branches/hildon-libs/hildon-1/src/hildon-get-password-dialog.c
===================================================================
--- projects/haf/branches/hildon-libs/hildon-1/src/hildon-get-password-dialog.c	2007-02-14 06:55:09 UTC (rev 9837)
+++ projects/haf/branches/hildon-libs/hildon-1/src/hildon-get-password-dialog.c	2007-02-14 09:04:26 UTC (rev 9838)
@@ -24,7 +24,7 @@
 
 /**
  * SECTION:hildon-get-password-dialog
- * @short_description: A widget used to get a password
+ * @short_description: A widget used to get a password.
  * @see_also: #HildonSetPasswordDialog
  * 
  * HildonGetPasswordDialog prompts the user for a password.  It allows

Modified: projects/haf/branches/hildon-libs/hildon-1/src/hildon-hvolumebar.c
===================================================================
--- projects/haf/branches/hildon-libs/hildon-1/src/hildon-hvolumebar.c	2007-02-14 06:55:09 UTC (rev 9837)
+++ projects/haf/branches/hildon-libs/hildon-1/src/hildon-hvolumebar.c	2007-02-14 09:04:26 UTC (rev 9838)
@@ -24,7 +24,7 @@
 
 /**
  * SECTION:hildon-hvolumebar
- * @short_description: A widget that displays a horizontal volume bar
+ * @short_description: A widget that displays a horizontal volume bar.
  * @see_also: #HildonVVolumebar, #HildonVolumebar
  * 
  * The #HildonHVolumebar widget displays a horizontal volume bar that allows

Modified: projects/haf/branches/hildon-libs/hildon-1/src/hildon-login-dialog.c
===================================================================
--- projects/haf/branches/hildon-libs/hildon-1/src/hildon-login-dialog.c	2007-02-14 06:55:09 UTC (rev 9837)
+++ projects/haf/branches/hildon-libs/hildon-1/src/hildon-login-dialog.c	2007-02-14 09:04:26 UTC (rev 9838)
@@ -25,7 +25,7 @@
 /**
  * SECTION:hildon-login-dialog
  * @short_description: A widget which allows a user to enter an username
- * and a password
+ * and a password.
  * @see_also: #HildonGetPasswordDialog, #HildonSetPasswordDialog
  *
  * #HildonLoginDialog is used to enter a username and password

Modified: projects/haf/branches/hildon-libs/hildon-1/src/hildon-note.c
===================================================================
--- projects/haf/branches/hildon-libs/hildon-1/src/hildon-note.c	2007-02-14 06:55:09 UTC (rev 9837)
+++ projects/haf/branches/hildon-libs/hildon-1/src/hildon-note.c	2007-02-14 09:04:26 UTC (rev 9838)
@@ -24,7 +24,7 @@
 
 /**
  * SECTION:hildon-note
- * @short_description: A widget to ask confirmation from the user
+ * @short_description: A widget to ask confirmation from the user.
  *
  * Notes are used to for confirmation (OK/Cancel/etc.) from the user.
  * A simple note contains an information text and an OK button to be

Modified: projects/haf/branches/hildon-libs/hildon-1/src/hildon-number-editor.c
===================================================================
--- projects/haf/branches/hildon-libs/hildon-1/src/hildon-number-editor.c	2007-02-14 06:55:09 UTC (rev 9837)
+++ projects/haf/branches/hildon-libs/hildon-1/src/hildon-number-editor.c	2007-02-14 09:04:26 UTC (rev 9838)
@@ -24,7 +24,7 @@
 
 /**
  * SECTION:hildon-number-editor
- * @short_description: A widget used to enter a number within a pre-defined range
+ * @short_description: A widget used to enter a number within a pre-defined range.
  *
  * HildonNumberEditor is used to enter a number from a specific range. 
  * There are two buttons to scroll the value in number field. 

Modified: projects/haf/branches/hildon-libs/hildon-1/src/hildon-range-editor.c
===================================================================
--- projects/haf/branches/hildon-libs/hildon-1/src/hildon-range-editor.c	2007-02-14 06:55:09 UTC (rev 9837)
+++ projects/haf/branches/hildon-libs/hildon-1/src/hildon-range-editor.c	2007-02-14 09:04:26 UTC (rev 9838)
@@ -24,7 +24,7 @@
 
 /**
  * SECTION:hildon-range-editor
- * @short_description: A widget is used to ask bounds of a range
+ * @short_description: A widget is used to ask bounds of a range.
  *
  * HidlonRangeEditor allows entering a pair of integers, e.g. the lower
  * and higher bounds of a range. A minimum and maximum can also be set

Modified: projects/haf/branches/hildon-libs/hildon-1/src/hildon-seekbar.c
===================================================================
--- projects/haf/branches/hildon-libs/hildon-1/src/hildon-seekbar.c	2007-02-14 06:55:09 UTC (rev 9837)
+++ projects/haf/branches/hildon-libs/hildon-1/src/hildon-seekbar.c	2007-02-14 09:04:26 UTC (rev 9838)
@@ -24,7 +24,7 @@
 
 /**
  * SECTION:hildon-seekbar
- * @short_description: A widget used to identify a place from a content
+ * @short_description: A widget used to identify a place from a content.
  *
  * HildonSeekbar allows seeking in media with a range widget.  It
  * supports for setting or getting the length (total time) of the media,

Modified: projects/haf/branches/hildon-libs/hildon-1/src/hildon-set-password-dialog.c
===================================================================
--- projects/haf/branches/hildon-libs/hildon-1/src/hildon-set-password-dialog.c	2007-02-14 06:55:09 UTC (rev 9837)
+++ projects/haf/branches/hildon-libs/hildon-1/src/hildon-set-password-dialog.c	2007-02-14 09:04:26 UTC (rev 9838)
@@ -24,7 +24,7 @@
 
 /**
  * SECTION:hildon-set-password-dialog
- * @short_description: A dialog used to set, change or remove a password
+ * @short_description: A dialog used to set, change or remove a password.
  * @see_also: #HildonGetPasswordDialog
  *
  * HildonSetPasswordDialog allows setting and changing a password. 

Modified: projects/haf/branches/hildon-libs/hildon-1/src/hildon-sort-dialog.c
===================================================================
--- projects/haf/branches/hildon-libs/hildon-1/src/hildon-sort-dialog.c	2007-02-14 06:55:09 UTC (rev 9837)
+++ projects/haf/branches/hildon-libs/hildon-1/src/hildon-sort-dialog.c	2007-02-14 09:04:26 UTC (rev 9838)
@@ -24,7 +24,7 @@
 
 /** 
  * SECTION:hildon-sort-dialog
- * @short_description: A widget for defining the sorting order of items
+ * @short_description: A widget for defining the sorting order of items.
  * 
  * HildonSortDialog is used to define an order (ascending/descending)
  * and a field by which items are sorted in a list. The combo boxes

Modified: projects/haf/branches/hildon-libs/hildon-1/src/hildon-sound.c
===================================================================
--- projects/haf/branches/hildon-libs/hildon-1/src/hildon-sound.c	2007-02-14 06:55:09 UTC (rev 9837)
+++ projects/haf/branches/hildon-libs/hildon-1/src/hildon-sound.c	2007-02-14 09:04:26 UTC (rev 9838)
@@ -24,7 +24,7 @@
 
 /**
  * SECTION:hildon-sound
- * @short_description: An esd-based utility function for playing a sound
+ * @short_description: An esd-based utility function for playing a sound.
  * 
  */
 

Modified: projects/haf/branches/hildon-libs/hildon-1/src/hildon-time-editor.c
===================================================================
--- projects/haf/branches/hildon-libs/hildon-1/src/hildon-time-editor.c	2007-02-14 06:55:09 UTC (rev 9837)
+++ projects/haf/branches/hildon-libs/hildon-1/src/hildon-time-editor.c	2007-02-14 09:04:26 UTC (rev 9838)
@@ -25,7 +25,7 @@
 /**
  * SECTION:hildon-time-editor
  * @short_description: A widget used to enter time or duration in hours, minutes,
- * and optional seconds
+ * and optional seconds.
  * @see_also: #HildonTimePicker
  * 
  * HildonTimeEditor is used to edit time or duration. Time mode is

Modified: projects/haf/branches/hildon-libs/hildon-1/src/hildon-time-picker.c
===================================================================
--- projects/haf/branches/hildon-libs/hildon-1/src/hildon-time-picker.c	2007-02-14 06:55:09 UTC (rev 9837)
+++ projects/haf/branches/hildon-libs/hildon-1/src/hildon-time-picker.c	2007-02-14 09:04:26 UTC (rev 9838)
@@ -24,7 +24,7 @@
 
 /**
  * SECTION:hildon-time-picker
- * @short_description: A dialog popup widget which lets the user set the time
+ * @short_description: A dialog popup widget which lets the user set the time.
  * @see_also: #HildonTimeEditor
  * 
  * #HildonTimePicker is a dialog popup widget which lets the user set the time,

Modified: projects/haf/branches/hildon-libs/hildon-1/src/hildon-volumebar.c
===================================================================
--- projects/haf/branches/hildon-libs/hildon-1/src/hildon-volumebar.c	2007-02-14 06:55:09 UTC (rev 9837)
+++ projects/haf/branches/hildon-libs/hildon-1/src/hildon-volumebar.c	2007-02-14 09:04:26 UTC (rev 9838)
@@ -24,7 +24,7 @@
 
 /**
  * SECTION:hildon-volumebar
- * @short_description: Base class for widgets that display a volume bar
+ * @short_description: Base class for widgets that display a volume bar.
  * @see_also: #HildonHVolumebar, #HildonVVolumebar
  *
  * #HildonVolumebar is a base class for widgets that display a volume bar that

Modified: projects/haf/branches/hildon-libs/hildon-1/src/hildon-vvolumebar.c
===================================================================
--- projects/haf/branches/hildon-libs/hildon-1/src/hildon-vvolumebar.c	2007-02-14 06:55:09 UTC (rev 9837)
+++ projects/haf/branches/hildon-libs/hildon-1/src/hildon-vvolumebar.c	2007-02-14 09:04:26 UTC (rev 9838)
@@ -24,7 +24,7 @@
 
 /**
  * SECTION:hildon-vvolumebar
- * @short_description: A widget that displays a vertical volume bar
+ * @short_description: A widget that displays a vertical volume bar.
  * @see_also: #HildonVolumebar, #HildonHVolumebar
  *
  * #HildonVVolumebar is a subclass of #HildonVolumebar.  It displays a

Modified: projects/haf/branches/hildon-libs/hildon-1/src/hildon-weekday-picker.c
===================================================================
--- projects/haf/branches/hildon-libs/hildon-1/src/hildon-weekday-picker.c	2007-02-14 06:55:09 UTC (rev 9837)
+++ projects/haf/branches/hildon-libs/hildon-1/src/hildon-weekday-picker.c	2007-02-14 09:04:26 UTC (rev 9838)
@@ -25,7 +25,7 @@
 /**
  * SECTION:hildon-weekday-picker
  * @short_description: A widget for picking days on which a certain event 
- * should take place
+ * should take place.
  * @see_also: #HildonWeekdayPicker 
  *
  * #HildonWeekdayPicker supports non-mutually exclusive selection of days of 

Modified: projects/haf/branches/hildon-libs/hildon-1/src/hildon-wizard-dialog.c
===================================================================
--- projects/haf/branches/hildon-libs/hildon-1/src/hildon-wizard-dialog.c	2007-02-14 06:55:09 UTC (rev 9837)
+++ projects/haf/branches/hildon-libs/hildon-1/src/hildon-wizard-dialog.c	2007-02-14 09:04:26 UTC (rev 9838)
@@ -26,7 +26,7 @@
 /**
  * SECTION:hildon-wizard-dialog
  * @short_description: A widget to create a guided installation
- * process wizard
+ * process wizard.
  *
  * #HildonWizardDialog is a widget to create a guided installation
  * process. The dialog has four standard buttons, previous, next,


More information about the maemo-commits mailing list