ibusbus.h   ibusbus.h 
skipping to change at line 202 skipping to change at line 202
* Return the name owner. * Return the name owner.
*/ */
gchar *ibus_bus_get_name_owner (IBusBus *bus, gchar *ibus_bus_get_name_owner (IBusBus *bus,
const gchar *name); const gchar *name);
/* declare ibus methods */ /* declare ibus methods */
/** /**
* ibus_bus_exit: * ibus_bus_exit:
* @bus: An IBusBus. * @bus: An IBusBus.
* @restart: Whether restarting the ibus. * @restart: Whether restarting the ibus.
* @returns: TRUE if the "Exit" call is suceeded, FALSE otherwise.
* *
* Exit or restart an IBusBus. * Exit or restart an IBusBus.
*/ */
void ibus_bus_exit (IBusBus *bus, gboolean ibus_bus_exit (IBusBus *bus,
gboolean restart); gboolean restart);
/** /**
* ibus_bus_create_input_context: * ibus_bus_create_input_context:
* @bus: An IBusBus. * @bus: An IBusBus.
* @client_name: Name of client. * @client_name: Name of client.
* @returns: An newly allocated IBusInputContext if the "CreateInputContext " call * @returns: An newly allocated IBusInputContext if the "CreateInputContext " call
* is suceeded, NULL otherwise. * is suceeded, NULL otherwise.
* *
* Create an input context for client. * Create an input context for client.
 End of changes. 2 change blocks. 
1 lines changed or deleted 2 lines changed or added


 ibusshare.h   ibusshare.h 
skipping to change at line 243 skipping to change at line 243
/** /**
* ibus_get_socket_path: * ibus_get_socket_path:
* @returns: A newly allocated string that stores the path of socket file. * @returns: A newly allocated string that stores the path of socket file.
* *
* Get the path of socket file. * Get the path of socket file.
*/ */
const gchar *ibus_get_socket_path (void); const gchar *ibus_get_socket_path (void);
/** /**
* ibus_get_timeout:
* @returns: A GDBus timeout in milliseconds. -1 when default timeout for G
DBus should be used.
*
* Get the GDBus timeout in milliseconds. The timeout is for clients (e.g.
im-ibus.so), not for ibus-daemon.
* Note that the timeout for ibus-daemon could be set by --timeout command
line option of the daemon.
*/
gint ibus_get_timeout (void);
/**
* ibus_keyval_name: * ibus_keyval_name:
* @keyval: Key symbol. * @keyval: Key symbol.
* @returns: Corresponding key name. %NULL if no such key symbol. * @returns: Corresponding key name. %NULL if no such key symbol.
* *
* Return the name of a key symbol. * Return the name of a key symbol.
* *
* Note that the returned string is used internally, so don't free it. * Note that the returned string is used internally, so don't free it.
*/ */
const gchar *ibus_keyval_name (guint keyval); const gchar *ibus_keyval_name (guint keyval);
 End of changes. 1 change blocks. 
0 lines changed or deleted 12 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/