blob: 6fe097be54c0a521b63cf00234a703f0fca6d3af (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
#ifndef EGG_RADIO_ACTION_H
#define EGG_RADIO_ACTION_H
#include <gtk/gtk.h>
#include <egg-action.h>
#include <egg-toggle-action.h>
#define EGG_TYPE_RADIO_ACTION (egg_radio_action_get_type ())
#define EGG_RADIO_ACTION(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), EGG_TYPE_RADIO_ACTION, EggRadioAction))
#define EGG_RADIO_ACTION_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), EGG_TYPE_RADIO_ACTION, EggRadioActionClass))
#define EGG_IS_RADIO_ACTION(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), EGG_TYPE_RADIO_ACTION))
#define EGG_IS_RADIO_ACTION_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((obj), EGG_TYPE_RADIO_ACTION))
#define EGG_RADIO_ACTION_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS((obj), EGG_TYPE_RADIO_ACTION, EggRadioActionClass))
typedef struct _EggRadioAction EggRadioAction;
typedef struct _EggRadioActionClass EggRadioActionClass;
struct _EggRadioAction {
EggToggleAction parent;
GSList *group;
};
struct _EggRadioActionClass {
EggToggleActionClass parent_class;
};
GType egg_radio_action_get_type (void);
GSList *egg_radio_action_get_group (EggRadioAction *action);
void egg_radio_action_set_group (EggRadioAction *action,
GSList *group);
#endif
|