ibusshare.h   ibusshare.h 
skipping to change at line 261 skipping to change at line 261
* *
* Return the key symbol that associate with the key name. * Return the key symbol that associate with the key name.
*/ */
guint ibus_keyval_from_name (const gchar *keyval_name); guint ibus_keyval_from_name (const gchar *keyval_name);
/** /**
* ibus_free_strv: * ibus_free_strv:
* @strv: List of strings. * @strv: List of strings.
* *
* Free a list of strings. * Free a list of strings.
* Deprecated: This function has been deprecated and should
* not be used in newly written code.
*/ */
void ibus_free_strv (gchar **strv); void ibus_free_strv (gchar **strv)
G_GNUC_DEPRECATED;
/** /**
* ibus_key_event_to_string: * ibus_key_event_to_string:
* @keyval: Key symbol. * @keyval: Key symbol.
* @modifiers: Modifiers such as Ctrl or Shift. * @modifiers: Modifiers such as Ctrl or Shift.
* @returns: The name of a key symbol and modifier. * @returns: The name of a key symbol and modifier.
* *
* Return the name of a key symbol and modifiers. * Return the name of a key symbol and modifiers.
* *
* For example, if press ctrl, shift, and enter, then this function returns : * For example, if press ctrl, shift, and enter, then this function returns :
 End of changes. 2 change blocks. 
1 lines changed or deleted 4 lines changed or added


 ibustypes.h   ibustypes.h 
skipping to change at line 90 skipping to change at line 90
IBUS_HANDLED_MASK = 1 << 24, IBUS_HANDLED_MASK = 1 << 24,
IBUS_FORWARD_MASK = 1 << 25, IBUS_FORWARD_MASK = 1 << 25,
IBUS_IGNORED_MASK = IBUS_FORWARD_MASK, IBUS_IGNORED_MASK = IBUS_FORWARD_MASK,
IBUS_SUPER_MASK = 1 << 26, IBUS_SUPER_MASK = 1 << 26,
IBUS_HYPER_MASK = 1 << 27, IBUS_HYPER_MASK = 1 << 27,
IBUS_META_MASK = 1 << 28, IBUS_META_MASK = 1 << 28,
IBUS_RELEASE_MASK = 1 << 30, IBUS_RELEASE_MASK = 1 << 30,
IBUS_MODIFIER_MASK = 0x5c001fff IBUS_MODIFIER_MASK = 0x5f001fff
} IBusModifierType; } IBusModifierType;
/** /**
* IBusCapabilite: * IBusCapabilite:
* @IBUS_CAP_PREEDIT_TEXT: UI is capable to show pre-edit text. * @IBUS_CAP_PREEDIT_TEXT: UI is capable to show pre-edit text.
* @IBUS_CAP_AUXILIARY_TEXT: UI is capable to show auxiliary text. * @IBUS_CAP_AUXILIARY_TEXT: UI is capable to show auxiliary text.
* @IBUS_CAP_LOOKUP_TABLE: UI is capable to show the lookup table. * @IBUS_CAP_LOOKUP_TABLE: UI is capable to show the lookup table.
* @IBUS_CAP_FOCUS: UI is capable to get focus. * @IBUS_CAP_FOCUS: UI is capable to get focus.
* @IBUS_CAP_PROPERTY: UI is capable to have property. * @IBUS_CAP_PROPERTY: UI is capable to have property.
* @IBUS_CAP_SURROUNDING_TEXT: Client can provide surround text, * @IBUS_CAP_SURROUNDING_TEXT: Client can provide surround text,
 End of changes. 1 change blocks. 
1 lines changed or deleted 1 lines changed or added


 ibusversion.h   ibusversion.h 
skipping to change at line 52 skipping to change at line 52
* *
* IBus minor version. * IBus minor version.
*/ */
#define IBUS_MINOR_VERSION (3) #define IBUS_MINOR_VERSION (3)
/** /**
* IBUS_MICRO_VERSION: * IBUS_MICRO_VERSION:
* *
* IBus micro version. * IBus micro version.
*/ */
#define IBUS_MICRO_VERSION (2) #define IBUS_MICRO_VERSION (3)
/** /**
* IBUS_CHECK_VERSION: * IBUS_CHECK_VERSION:
* @major: Major version of ibus. * @major: Major version of ibus.
* @minor: Minor version of ibus. * @minor: Minor version of ibus.
* @micro: Micro version of ibus. * @micro: Micro version of ibus.
* *
* Check whether the current IBus version is equal to or greater than * Check whether the current IBus version is equal to or greater than
* given major.minor.micro. * given major.minor.micro.
*/ */
 End of changes. 1 change blocks. 
1 lines changed or deleted 1 lines changed or added

This html diff was produced by rfcdiff 1.41. The latest version is available from http://tools.ietf.org/tools/rfcdiff/