#ifndef __SCIM_KEY_SELECTION_H__ #define __SCIM_KEY_SELECTION_H__ #include #include G_BEGIN_DECLS #define SCIM_TYPE_KEY_SELECTION (scim_key_selection_get_type ()) #define SCIM_KEY_SELECTION(obj) (GTK_CHECK_CAST ((obj), SCIM_TYPE_KEY_SELECTION, ScimKeySelection)) #define SCIM_KEY_SELECTION_CLASS(klass) (GTK_CHECK_CLASS_CAST ((klass), SCIM_TYPE_KEY_SELECTION, ScimKeySelectionClass)) #define SCIM_IS_KEY_SELECTION(obj) (GTK_CHECK_TYPE ((obj), SCIM_TYPE_KEY_SELECTION)) #define SCIM_IS_KEY_SELECTION_CLASS(klass) (GTK_CHECK_CLASS_TYPE ((klass), SCIM_TYPE_KEY_SELECTION)) #define SCIM_KEY_SELECTION_GET_CLASS(obj) (GTK_CHECK_GET_CLASS ((obj), SCIM_TYPE_KEY_SELECTION, ScimKeySelectionClass)) #define SCIM_TYPE_KEY_SELECTION_DIALOG (scim_key_selection_dialog_get_type ()) #define SCIM_KEY_SELECTION_DIALOG(obj) (GTK_CHECK_CAST ((obj), SCIM_TYPE_KEY_SELECTION_DIALOG, ScimKeySelectionDialog)) #define SCIM_KEY_SELECTION_DIALOG_CLASS(klass) (GTK_CHECK_CLASS_CAST ((klass), SCIM_TYPE_KEY_SELECTION_DIALOG, ScimKeySelectionDialogClass)) #define SCIM_IS_KEY_SELECTION_DIALOG(obj) (GTK_CHECK_TYPE ((obj), SCIM_TYPE_KEY_SELECTION_DIALOG)) #define SCIM_IS_KEY_SELECTION_DIALOG_CLASS(klass) (GTK_CHECK_CLASS_TYPE ((klass), SCIM_TYPE_KEY_SELECTION_DIALOG)) #define SCIM_KEY_SELECTION_DIALOG_GET_CLASS(obj) (GTK_CHECK_GET_CLASS ((obj), SCIM_TYPE_KEY_SELECTION_DIALOG, ScimKeySelectionDialogClass)) typedef struct _ScimKeySelection ScimKeySelection; typedef struct _ScimKeySelectionClass ScimKeySelectionClass; typedef struct _ScimKeySelectionDialog ScimKeySelectionDialog; typedef struct _ScimKeySelectionDialogClass ScimKeySelectionDialogClass; struct _ScimKeySelection { GtkVBox vbox; GtkWidget *toggle_ctrl; GtkWidget *toggle_alt; GtkWidget *toggle_shift; GtkWidget *toggle_meta; GtkWidget *toggle_super; GtkWidget *toggle_hyper; GtkWidget *toggle_release; GtkWidget *key_code; GtkWidget *list_view; GtkTreeSelection *list_selection; GtkListStore *list_model; gchar *keys; }; struct _ScimKeySelectionClass { GtkVBoxClass parent_class; void (*changed) (ScimKeySelection *keyselection); }; struct _ScimKeySelectionDialog { GtkDialog parent_instance; GtkWidget *keysel; GtkWidget *main_vbox; GtkWidget *action_area; GtkWidget *ok_button; GtkWidget *cancel_button; }; struct _ScimKeySelectionDialogClass { GtkDialogClass parent_class; /* Padding for future expansion */ void (*_gtk_reserved1) (void); void (*_gtk_reserved2) (void); void (*_gtk_reserved3) (void); void (*_gtk_reserved4) (void); }; GType scim_key_selection_get_type (void) G_GNUC_CONST; GtkWidget* scim_key_selection_new (void); void scim_key_selection_set_keys (ScimKeySelection *keyselection, const gchar *keys); void scim_key_selection_append_keys (ScimKeySelection *keyselection, const gchar *keys); G_CONST_RETURN gchar* scim_key_selection_get_keys (ScimKeySelection *keyselection); GType scim_key_selection_dialog_get_type (void) G_GNUC_CONST; GtkWidget* scim_key_selection_dialog_new (const gchar *title); void scim_key_selection_dialog_set_keys (ScimKeySelectionDialog *ksd, const gchar *keys); G_CONST_RETURN gchar* scim_key_selection_dialog_get_keys (ScimKeySelectionDialog *ksd); G_END_DECLS #endif /* __GTK_KEY_SELECTION_H__ */ /* vi:ts=4:nowrap:ai:expandtab */