documentation description: Mention the various properties and the
2009-01-15 Murray Cumming <murrayc@murrayc.com> * gtk/gtkimcontext.c: documentation description: Mention the various properties and the environment variable, with links to their documentation. * gtk/gtksettings.c: * gtk/gtktextview.c: Make the im-module property documentation more expansive. svn path=/trunk/; revision=22123
This commit is contained in:
parent
b289023a5b
commit
53097873ca
@ -1,3 +1,12 @@
|
|||||||
|
2009-01-15 Murray Cumming <murrayc@murrayc.com>
|
||||||
|
|
||||||
|
* gtk/gtkimcontext.c: documentation description: Mention the various
|
||||||
|
properties and the environment variable, with links to their
|
||||||
|
documentation.
|
||||||
|
* gtk/gtksettings.c:
|
||||||
|
* gtk/gtktextview.c: Make the im-module property documentation more
|
||||||
|
expansive.
|
||||||
|
|
||||||
2009-01-15 Diego Escalante Urrelo <diegoe@gnome.org>
|
2009-01-15 Diego Escalante Urrelo <diegoe@gnome.org>
|
||||||
|
|
||||||
Bug 562701 – GtkEntryCompletion popup sizes its rows wrong
|
Bug 562701 – GtkEntryCompletion popup sizes its rows wrong
|
||||||
|
@ -1089,10 +1089,12 @@ gtk_entry_class_init (GtkEntryClass *class)
|
|||||||
/**
|
/**
|
||||||
* GtkEntry:im-module:
|
* GtkEntry:im-module:
|
||||||
*
|
*
|
||||||
* Which IM module should be used for this entry.
|
* Which IM (input method) module should be used for this entry.
|
||||||
|
* See #GtkIMContext.
|
||||||
*
|
*
|
||||||
* Setting this to a non-%NULL value overrides the
|
* Setting this to a non-%NULL value overrides the
|
||||||
* system-wide IM module setting. See #GtkSettings:gtk-im-module
|
* system-wide IM module setting. See the GtkSettings
|
||||||
|
* #GtkSettings:gtk-im-module property.
|
||||||
*
|
*
|
||||||
* Since: 2.16
|
* Since: 2.16
|
||||||
*/
|
*/
|
||||||
|
@ -35,6 +35,18 @@
|
|||||||
* is used by GTK+ text input widgets like #GtkEntry to map from key events to
|
* is used by GTK+ text input widgets like #GtkEntry to map from key events to
|
||||||
* Unicode character strings.
|
* Unicode character strings.
|
||||||
*
|
*
|
||||||
|
* The user may change the current input method via a context menu, unless the
|
||||||
|
* #GtkSettings:gtk-show-input-method-menu GtkSettings property is set to FALSE.
|
||||||
|
* The default input method can be set programmatically via the
|
||||||
|
* #GtkSettings:gtk-im-module GtkSettings property. Alternatively, you may set
|
||||||
|
* the GTK_IM_MODULE environment variable as documented in #gtk-running.
|
||||||
|
*
|
||||||
|
* The #GtkEntry #GtkEntry:im-module and #GtkTextView #GtkTextView:im-module
|
||||||
|
* properties may also be used to set input methods for specific widget
|
||||||
|
* instances. For instance, a certain entry widget might be expected to contain
|
||||||
|
* certain characters which would be easier to input with a certain input
|
||||||
|
* method.
|
||||||
|
*
|
||||||
* An input method may consume multiple key events in sequence and finally
|
* An input method may consume multiple key events in sequence and finally
|
||||||
* output the composed result. This is called preediting, and an input method
|
* output the composed result. This is called preediting, and an input method
|
||||||
* may provide feedback about this process by displaying the intermediate
|
* may provide feedback about this process by displaying the intermediate
|
||||||
|
@ -834,7 +834,11 @@ gtk_settings_class_init (GtkSettingsClass *class)
|
|||||||
/**
|
/**
|
||||||
* GtkSettings:gtk-im-module:
|
* GtkSettings:gtk-im-module:
|
||||||
*
|
*
|
||||||
* Which IM module should be used by default.
|
* Which IM (input method) module should be used by default. This is the
|
||||||
|
* input method that will be used if the user has not explicitly chosen
|
||||||
|
* another input method from the IM context menu.
|
||||||
|
*
|
||||||
|
* See #GtkIMContext and see the #GtkSettings:gtk-show-input-method-menu property.
|
||||||
*/
|
*/
|
||||||
result = settings_install_property_parser (class,
|
result = settings_install_property_parser (class,
|
||||||
g_param_spec_string ("gtk-im-module",
|
g_param_spec_string ("gtk-im-module",
|
||||||
|
@ -666,10 +666,12 @@ gtk_text_view_class_init (GtkTextViewClass *klass)
|
|||||||
/**
|
/**
|
||||||
* GtkTextView:im-module:
|
* GtkTextView:im-module:
|
||||||
*
|
*
|
||||||
* Which IM module should be used for this widget.
|
* Which IM (input method) module should be used for this entry.
|
||||||
|
* See #GtkIMContext.
|
||||||
*
|
*
|
||||||
* Setting this to a non-%NULL value overrides the
|
* Setting this to a non-%NULL value overrides the
|
||||||
* system-wide IM module setting. See #GtkSettings:gtk-im-module
|
* system-wide IM module setting. See the GtkSettings
|
||||||
|
* #GtkSettings:gtk-im-module property.
|
||||||
*
|
*
|
||||||
* Since: 2.16
|
* Since: 2.16
|
||||||
*/
|
*/
|
||||||
|
Loading…
Reference in New Issue
Block a user