ibus.h   ibus.h 
skipping to change at line 52 skipping to change at line 52
#include <ibuskeysyms.h> #include <ibuskeysyms.h>
#include <ibuskeymap.h> #include <ibuskeymap.h>
#include <ibusenumtypes.h> #include <ibusenumtypes.h>
#include <ibushotkey.h> #include <ibushotkey.h>
#include <ibusxml.h> #include <ibusxml.h>
#include <ibusenginedesc.h> #include <ibusenginedesc.h>
#include <ibusobservedpath.h> #include <ibusobservedpath.h>
#include <ibuscomponent.h> #include <ibuscomponent.h>
#include <ibusconfig.h> #include <ibusconfig.h>
#include <ibusconfigservice.h> #include <ibusconfigservice.h>
#include <ibuspanelservice.h>
#undef __IBUS_H_INSIDE__ #undef __IBUS_H_INSIDE__
#endif #endif
 End of changes. 1 change blocks. 
0 lines changed or deleted 1 lines changed or added


 ibusbus.h   ibusbus.h 
skipping to change at line 247 skipping to change at line 247
* @returns: TRUE if the "RegisterComponent" call is suceeded, FALSE otherw ise. * @returns: TRUE if the "RegisterComponent" call is suceeded, FALSE otherw ise.
* *
* Register a componet to an IBusBus. * Register a componet to an IBusBus.
*/ */
gboolean ibus_bus_register_component(IBusBus *bus, gboolean ibus_bus_register_component(IBusBus *bus,
IBusComponent *component); IBusComponent *component);
/** /**
* ibus_bus_list_engines: * ibus_bus_list_engines:
* @bus: An IBusBus. * @bus: An IBusBus.
* @returns: (transfer full) (element-type IBusEngineDesc): A List of engin es. * @returns: (transfer container) (element-type IBusEngineDesc): A List of engines.
* *
* List engines. * List engines.
* Note that this function is not yet implemented.
*/ */
GList *ibus_bus_list_engines (IBusBus *bus); GList *ibus_bus_list_engines (IBusBus *bus);
/** /**
* ibus_bus_list_active_engines: * ibus_bus_list_active_engines:
* @bus: An IBusBus. * @bus: An IBusBus.
* @returns: (transfer full) (element-type IBusEngineDesc): A List of activ e engines. * @returns: (transfer container) (element-type IBusEngineDesc): A List of active engines.
* *
* List active engines. * List active engines.
* Note that this function is not yet implemented.
* <note><para>Not yet implemented.</para></note>
*/ */
GList *ibus_bus_list_active_engines GList *ibus_bus_list_active_engines
(IBusBus *bus); (IBusBus *bus);
/** /**
* ibus_bus_get_use_sys_layout: * ibus_bus_get_use_sys_layout:
* @bus: An IBusBus. * @bus: An IBusBus.
* @returns: TRUE if "use_sys_layout" option is enabled. * @returns: TRUE if "use_sys_layout" option is enabled.
* *
* Check if the bus's "use_sys_layout" option is enabled or not. * Check if the bus's "use_sys_layout" option is enabled or not.
 End of changes. 4 change blocks. 
5 lines changed or deleted 2 lines changed or added


 ibuscomponent.h   ibuscomponent.h 
skipping to change at line 268 skipping to change at line 268
* @engine: A description of an engine. * @engine: A description of an engine.
* *
* Add an engine to IBusComponent according to the description in @engine. * Add an engine to IBusComponent according to the description in @engine.
*/ */
void ibus_component_add_engine (IBusComponent *component, void ibus_component_add_engine (IBusComponent *component,
IBusEngineDesc *engine); IBusEngineDesc *engine);
/** /**
* ibus_component_get_engines: * ibus_component_get_engines:
* @component: An IBusComponent. * @component: An IBusComponent.
* @returns: (transfer none) (element-type IBusEngineDesc): A newly allocat ed GList that contains engines. * @returns: (transfer container) (element-type IBusEngineDesc): A newly al located GList that contains engines.
* *
* Get the engines of this component. * Get the engines of this component.
*/ */
GList *ibus_component_get_engines (IBusComponent *component) ; GList *ibus_component_get_engines (IBusComponent *component) ;
/** /**
* ibus_component_output: * ibus_component_output:
* @component: An IBusComponent. * @component: An IBusComponent.
* @output: GString that holds the result. * @output: GString that holds the result.
* @indent: level of indent. * @indent: level of indent.
 End of changes. 1 change blocks. 
1 lines changed or deleted 1 lines changed or added


 ibusinputcontext.h   ibusinputcontext.h 
skipping to change at line 199 skipping to change at line 199
* @prop_name: A property name (e.g. "InputMode.WideLatin") * @prop_name: A property name (e.g. "InputMode.WideLatin")
* @state: A status of the property (e.g. PROP_STATE_CHECKED) * @state: A status of the property (e.g. PROP_STATE_CHECKED)
* *
* Activate the property. * Activate the property.
* *
* @see_also: #IBusEngine::property_activate * @see_also: #IBusEngine::property_activate
*/ */
void ibus_input_context_property_activate void ibus_input_context_property_activate
(IBusInputContext *context, (IBusInputContext *context,
const gchar *prop_name, const gchar *prop_name,
gint32 state); guint32 state);
/** /**
* ibus_input_context_focus_in: * ibus_input_context_focus_in:
* @context: An IBusInputContext. * @context: An IBusInputContext.
* *
* Invoked when the client application get focus. * Invoked when the client application get focus.
* *
* @see_also: #IBusEngine::focus_in. * @see_also: #IBusEngine::focus_in.
*/ */
void ibus_input_context_focus_in (IBusInputContext *context); void ibus_input_context_focus_in (IBusInputContext *context);
 End of changes. 1 change blocks. 
1 lines changed or deleted 1 lines changed or added


 ibusproxy.h   ibusproxy.h 
skipping to change at line 81 skipping to change at line 81
/** /**
* IBusProxy: * IBusProxy:
* *
* An opaque data type representing an IBusProxy. * An opaque data type representing an IBusProxy.
*/ */
struct _IBusProxy { struct _IBusProxy {
GDBusProxy parent; GDBusProxy parent;
/* instance members */ /* instance members */
guint32 flags; guint32 flags;
gboolean own;
}; };
struct _IBusProxyClass { struct _IBusProxyClass {
GDBusProxyClass parent; GDBusProxyClass parent;
/* class members */ /* class members */
void (* destroy) (IBusProxy *proxy); void (* destroy) (IBusProxy *proxy);
/*< private >*/ /*< private >*/
/* padding */ /* padding */
gpointer pdummy[7]; gpointer pdummy[7];
}; };
GType ibus_proxy_get_type (void); GType ibus_proxy_get_type (void);
/**
* ibus_proxy_destroy:
*
* Dispose the proxy object. If the dbus connection is alive and the own va
riable above
* is TRUE (which is the default), org.freedesktop.IBus.Service.Destroy met
hod will be
* called. Note that "destroy" signal might be emitted when ibus_proxy_dest
roy is called
* or the underlying dbus connection for the proxy is terminated. In the ca
llback of the
* destroy signal, you might have to call something like 'g_object_unref(th
e_proxy);'.
*/
void ibus_proxy_destroy (IBusProxy *proxy); void ibus_proxy_destroy (IBusProxy *proxy);
G_END_DECLS G_END_DECLS
#endif #endif
 End of changes. 2 change blocks. 
0 lines changed or deleted 15 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/