| Top |
| #define | SKK_TYPE_COMPLETION_SOURCE |
| struct | SkkCompletionSource |
| struct | SkkCompletionSourceClass |
| #define | SKK_TYPE_DICT_COMPLETION_SOURCE |
| struct | SkkDictCompletionSource |
| struct | SkkDictCompletionSourceClass |
| #define | SKK_TYPE_COMPLETION_SERVICE |
| struct | SkkCompletionService |
| struct | SkkCompletionServiceClass |
#define SKK_TYPE_COMPLETION_SOURCE (skk_completion_source_get_type ())
The type for SkkCompletionSource.
struct SkkCompletionSource {
GObject parent_instance;
SkkCompletionSourcePrivate * priv;
};
struct SkkCompletionSourceClass {
GObjectClass parent_class;
gchar** (*get_completions) (SkkCompletionSource* self, const gchar* midasi, gint* result_length1);
};
The class structure for SKK_TYPE_COMPLETION_SOURCE. All the fields in this structure are private and should never be accessed directly.
#define SKK_TYPE_DICT_COMPLETION_SOURCE (skk_dict_completion_source_get_type ())
The type for SkkDictCompletionSource.
struct SkkDictCompletionSource {
SkkCompletionSource parent_instance;
SkkDictCompletionSourcePrivate * priv;
};
struct SkkDictCompletionSourceClass {
SkkCompletionSourceClass parent_class;
};
The class structure for SKK_TYPE_DICT_COMPLETION_SOURCE. All the fields in this structure are private and should never be accessed directly.
#define SKK_TYPE_COMPLETION_SERVICE (skk_completion_service_get_type ())
The type for SkkCompletionService.
struct SkkCompletionService {
GTypeInstance parent_instance;
volatile int ref_count;
SkkCompletionServicePrivate * priv;
};
struct SkkCompletionServiceClass {
GTypeClass parent_class;
void (*finalize) (SkkCompletionService *self);
};
The class structure for SKK_TYPE_COMPLETION_SERVICE. All the fields in this structure are private and should never be accessed directly.