aboutsummaryrefslogtreecommitdiffstats
path: root/lib/egg/egg-radio-action.h
diff options
context:
space:
mode:
Diffstat (limited to 'lib/egg/egg-radio-action.h')
-rw-r--r--lib/egg/egg-radio-action.h34
1 files changed, 0 insertions, 34 deletions
diff --git a/lib/egg/egg-radio-action.h b/lib/egg/egg-radio-action.h
deleted file mode 100644
index 6fe097be5..000000000
--- a/lib/egg/egg-radio-action.h
+++ /dev/null
@@ -1,34 +0,0 @@
-#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