![]() |
![]() |
![]() |
IBus Reference Manual | ![]() |
---|---|---|---|---|
Top | Description | Object Hierarchy | Properties |
IBusPanelService; IBusPanelService * ibus_panel_service_new (IBusConnection *connection); void ibus_panel_service_candidate_clicked (IBusPanelService *panel, guint index, guint button, guint state); void ibus_panel_service_cursor_down (IBusPanelService *panel); void ibus_panel_service_cursor_up (IBusPanelService *panel); void ibus_panel_service_page_down (IBusPanelService *panel); void ibus_panel_service_page_up (IBusPanelService *panel); void ibus_panel_service_property_active (IBusPanelService *panel, const gchar *prop_name, int prop_state); void ibus_panel_service_property_show (IBusPanelService *panel, const gchar *prop_name); void ibus_panel_service_property_hide (IBusPanelService *panel, const gchar *prop_name);
GObject +----GInitiallyUnowned +----IBusObject +----IBusService +----IBusPanelService
An IBusPanelService is a base class for UI services. Developers can "extend" this class for panel UI development.
typedef struct _IBusPanelService IBusPanelService;
An opaque data type representing an IBusPanelService.
IBusPanelService * ibus_panel_service_new (IBusConnection *connection);
New an IBusPanelService from an IBusConnection.
|
An IBusConnection. |
Returns : |
A newly allocated IBusPanelService. |
void ibus_panel_service_candidate_clicked (IBusPanelService *panel, guint index, guint button, guint state);
Notify that a candidate is clicked by sending a "CandidateClicked" to IBus service.
|
An IBusPanelService |
|
Index in the Lookup table |
|
GdkEventButton::button (1: left button, etc.) |
|
GdkEventButton::state (key modifier flags) |
void ibus_panel_service_cursor_down (IBusPanelService *panel);
Notify that the cursor is down by sending a "CursorDown" to IBus service.
|
An IBusPanelService |
void ibus_panel_service_cursor_up (IBusPanelService *panel);
Notify that the cursor is up by sending a "CursorUp" to IBus service.
|
An IBusPanelService |
void ibus_panel_service_page_down (IBusPanelService *panel);
Notify that the page is down by sending a "PageDown" to IBus service.
|
An IBusPanelService |
void ibus_panel_service_page_up (IBusPanelService *panel);
Notify that the page is up by sending a "PageUp" to IBus service.
|
An IBusPanelService |
void ibus_panel_service_property_active (IBusPanelService *panel, const gchar *prop_name, int prop_state);
Notify that a property is active by sending a "PropertyActivate" message to IBus service.
|
An IBusPanelService |
|
A property name |
|
State of the property |
void ibus_panel_service_property_show (IBusPanelService *panel, const gchar *prop_name);
Notify that a property is shown by sending a "ValueChanged" message to IBus service.
|
An IBusPanelService |
|
A property name |
void ibus_panel_service_property_hide (IBusPanelService *panel, const gchar *prop_name);
Notify that a property is hidden by sending a "ValueChanged" message to IBus service.
|
An IBusPanelService |
|
A property name |
"connection"
property"connection" IBusConnection* : Read / Write / Construct Only
Connection of this IBusPanelService.