[maemo-commits] [maemo-commits] r12288 - in projects/haf/trunk/gtk+: . docs/reference docs/reference/gtk/tmpl gtk
From: subversion at stage.maemo.org subversion at stage.maemo.orgDate: Thu Jun 14 12:06:16 EEST 2007
- Previous message: [maemo-commits] r12287 - in projects/haf/trunk/hildon-1: . src
- Next message: [maemo-commits] r12289 - in projects/haf/trunk/hildon-fm: . hildon-fm
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Author: xan Date: 2007-06-14 12:06:13 +0300 (Thu, 14 Jun 2007) New Revision: 12288 Modified: projects/haf/trunk/gtk+/ChangeLog projects/haf/trunk/gtk+/docs/reference/ChangeLog projects/haf/trunk/gtk+/docs/reference/gtk/tmpl/gtkimcontext.sgml projects/haf/trunk/gtk+/gtk/gtkenums.h projects/haf/trunk/gtk+/gtk/gtktextview.c Log: 2007-06-13 Tomas Junnonen <tomas.junnonen at nokia.com> * gtk/gtkenums.h, gtk/gtktextview.c: Add HILDON_GTK_INPUT_MODE_MULTILINE to hint widgets capable of receiving multiple lines of text. 2007-05-30 Tomas Junnonen <tomas.junnonen at nokia.com> * gtk/tmpl/gtkimcontext.sgml: Add HILDON_GTK_INPUT_MODE_MULTILINE Modified: projects/haf/trunk/gtk+/ChangeLog =================================================================== --- projects/haf/trunk/gtk+/ChangeLog 2007-06-14 08:50:37 UTC (rev 12287) +++ projects/haf/trunk/gtk+/ChangeLog 2007-06-14 09:06:13 UTC (rev 12288) @@ -1,3 +1,8 @@ +2007-06-13 Tomas Junnonen <tomas.junnonen at nokia.com> + + * gtk/gtkenums.h, gtk/gtktextview.c: Add HILDON_GTK_INPUT_MODE_MULTILINE + to hint widgets capable of receiving multiple lines of text. + 2007-06-12 Tommi Komulainen <tommi.komulainen at nokia.com> * gtk/gtkiconcachevalidator.c (check_image): Take MAEMO_CHANGES into Modified: projects/haf/trunk/gtk+/docs/reference/ChangeLog =================================================================== --- projects/haf/trunk/gtk+/docs/reference/ChangeLog 2007-06-14 08:50:37 UTC (rev 12287) +++ projects/haf/trunk/gtk+/docs/reference/ChangeLog 2007-06-14 09:06:13 UTC (rev 12288) @@ -1,3 +1,7 @@ +2007-05-30 Tomas Junnonen <tomas.junnonen at nokia.com> + + * gtk/tmpl/gtkimcontext.sgml: Add HILDON_GTK_INPUT_MODE_MULTILINE + 2007-05-02 Matthias Clasen <mclasen at redhat.com> * === Released 2.10.12 === Modified: projects/haf/trunk/gtk+/docs/reference/gtk/tmpl/gtkimcontext.sgml =================================================================== --- projects/haf/trunk/gtk+/docs/reference/gtk/tmpl/gtkimcontext.sgml 2007-06-14 08:50:37 UTC (rev 12287) +++ projects/haf/trunk/gtk+/docs/reference/gtk/tmpl/gtkimcontext.sgml 2007-06-14 09:06:13 UTC (rev 12288) @@ -196,6 +196,7 @@ @HILDON_GTK_INPUT_MODE_HEXA: hexadecimal characters; numbers 0-9, characters a-f, and A-F @HILDON_GTK_INPUT_MODE_TELE: telephone numbers; numbers 0-9, whitespace, and the characters "pwPW/().-+*#?," @HILDON_GTK_INPUT_MODE_FULL: unrestricted entry mode, combination of the alpha, numeric and special modes. + at HILDON_GTK_INPUT_MODE_MULTILINE: the client contains multiple lines of text or accepts linebreaks in the input. @HILDON_GTK_INPUT_MODE_INVISIBLE: do not echo or save the input in the IM when entering sensitive information such as passwords. @HILDON_GTK_INPUT_MODE_AUTOCAP: automatically capitalize the first letter at the start of a sentence. @HILDON_GTK_INPUT_MODE_DICTIONARY: enable predictive dictionaries and learning based on the input. Modified: projects/haf/trunk/gtk+/gtk/gtkenums.h =================================================================== --- projects/haf/trunk/gtk+/gtk/gtkenums.h 2007-06-14 08:50:37 UTC (rev 12287) +++ projects/haf/trunk/gtk+/gtk/gtkenums.h 2007-06-14 09:06:13 UTC (rev 12288) @@ -530,6 +530,7 @@ HILDON_GTK_INPUT_MODE_HEXA = 1 << 3, HILDON_GTK_INPUT_MODE_TELE = 1 << 4, HILDON_GTK_INPUT_MODE_FULL = (HILDON_GTK_INPUT_MODE_ALPHA | HILDON_GTK_INPUT_MODE_NUMERIC | HILDON_GTK_INPUT_MODE_SPECIAL), + HILDON_GTK_INPUT_MODE_MULTILINE = 1 << 28, HILDON_GTK_INPUT_MODE_INVISIBLE = 1 << 29, HILDON_GTK_INPUT_MODE_AUTOCAP = 1 << 30, HILDON_GTK_INPUT_MODE_DICTIONARY = 1 << 31 Modified: projects/haf/trunk/gtk+/gtk/gtktextview.c =================================================================== --- projects/haf/trunk/gtk+/gtk/gtktextview.c 2007-06-14 08:50:37 UTC (rev 12287) +++ projects/haf/trunk/gtk+/gtk/gtktextview.c 2007-06-14 09:06:13 UTC (rev 12288) @@ -663,6 +663,7 @@ P_("Define widget's input mode"), GTK_TYPE_GTK_INPUT_MODE, HILDON_GTK_INPUT_MODE_FULL | + HILDON_GTK_INPUT_MODE_MULTILINE | HILDON_GTK_INPUT_MODE_AUTOCAP | HILDON_GTK_INPUT_MODE_DICTIONARY, GTK_PARAM_READWRITE));
- Previous message: [maemo-commits] r12287 - in projects/haf/trunk/hildon-1: . src
- Next message: [maemo-commits] r12289 - in projects/haf/trunk/hildon-fm: . hildon-fm
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]