diff options
author | Marco Pesenti Gritti <marco@it.gnome.org> | 2003-01-21 02:57:20 +0800 |
---|---|---|
committer | Marco Pesenti Gritti <mpeseng@src.gnome.org> | 2003-01-21 02:57:20 +0800 |
commit | c2beffd03405e6db4295afd6c2982388b808cb2e (patch) | |
tree | 819e50881626c5109ccdba5abb158585a3ca148b /lib/egg/egg-radio-action.h | |
parent | 822ca51797e05edbe42b80f1a33a70a7327d732e (diff) | |
download | gsoc2013-epiphany-c2beffd03405e6db4295afd6c2982388b808cb2e.tar gsoc2013-epiphany-c2beffd03405e6db4295afd6c2982388b808cb2e.tar.gz gsoc2013-epiphany-c2beffd03405e6db4295afd6c2982388b808cb2e.tar.bz2 gsoc2013-epiphany-c2beffd03405e6db4295afd6c2982388b808cb2e.tar.lz gsoc2013-epiphany-c2beffd03405e6db4295afd6c2982388b808cb2e.tar.xz gsoc2013-epiphany-c2beffd03405e6db4295afd6c2982388b808cb2e.tar.zst gsoc2013-epiphany-c2beffd03405e6db4295afd6c2982388b808cb2e.zip |
Merge eog-menu-api branch
2003-01-20 Marco Pesenti Gritti <marco@it.gnome.org>
* Merge eog-menu-api branch
Diffstat (limited to 'lib/egg/egg-radio-action.h')
-rw-r--r-- | lib/egg/egg-radio-action.h | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/lib/egg/egg-radio-action.h b/lib/egg/egg-radio-action.h new file mode 100644 index 000000000..6fe097be5 --- /dev/null +++ b/lib/egg/egg-radio-action.h @@ -0,0 +1,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 |