tagging release
[dasher.git] / Src / Gtk2 / dasher_action_keyboard.h
blobd5613be68b05505c63197a40bf38358feed58657
1 #ifndef __dasher_action_keyboard_h__
2 #define __dasher_action_keyboard_h__
4 #include "dasher_action.h"
5 #include "dasher_buffer_set.h"
7 G_BEGIN_DECLS
8 #define TYPE_DASHER_ACTION_KEYBOARD (dasher_action_keyboard_get_type())
9 #define DASHER_ACTION_KEYBOARD(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), TYPE_DASHER_ACTION_KEYBOARD, DasherActionKeyboard ))
10 #define DASHER_ACTION_KEYBOARD_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), TYPE_DASHER_ACTION_KEYBOARD, DasherActionKeyboardClass ))
11 #define IS_DASHER_ACTION_KEYBOARD(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj), TYPE_DASHER_ACTION_KEYBOARD))
12 #define IS_DASHER_ACTION_KEYBOARD_CLASS(klass)(G_TYPE_CHECK_CLASS_TYPE ((klass), TYPE_DASHER_ACTION_KEYBOARD))
13 #define DASHER_ACTION_KEYBOARD_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), TYPE_DASHER_ACTION_KEYBOARD, DasherActionKeyboardClass))
15 typedef struct _DasherActionKeyboard DasherActionKeyboard;
16 typedef struct _DasherActionKeyboardClass DasherActionKeyboardClass;
18 struct _DasherActionKeyboard {
19 DasherAction parent;
20 gpointer private_data;
23 struct _DasherActionKeyboardClass {
24 DasherActionClass parent_class;
27 DasherActionKeyboard *dasher_action_keyboard_new(IDasherBufferSet *pBufferSet);
28 GType dasher_action_keyboard_get_type();
30 G_END_DECLS
32 #endif