summaryrefslogtreecommitdiff
path: root/clutter/clutter-timeline.h
diff options
context:
space:
mode:
authorEmmanuele Bassi <ebassi@linux.intel.com>2011-10-04 13:28:04 +0100
committerEmmanuele Bassi <ebassi@linux.intel.com>2011-10-11 17:59:46 +0100
commitd28e04be72d0a8c4408e07f468698d61ef312091 (patch)
treea032587ebfe175c22f6485e31c2a2afcfe50ae5c /clutter/clutter-timeline.h
parenta21f1d158063edd7dc1d37b418b690adef07aa8f (diff)
downloadclutter-d28e04be72d0a8c4408e07f468698d61ef312091.tar.gz
Move all enumerations to a separate file
This should allow sharing types, and we can avoid glib-mkenums thrawling the whole repository for enumerations.
Diffstat (limited to 'clutter/clutter-timeline.h')
-rw-r--r--clutter/clutter-timeline.h16
1 files changed, 1 insertions, 15 deletions
diff --git a/clutter/clutter-timeline.h b/clutter/clutter-timeline.h
index ce2891081..20f7725e9 100644
--- a/clutter/clutter-timeline.h
+++ b/clutter/clutter-timeline.h
@@ -28,7 +28,7 @@
#ifndef __CLUTTER_TIMELINE_H__
#define __CLUTTER_TIMELINE_H__
-#include <glib-object.h>
+#include <clutter/clutter-types.h>
G_BEGIN_DECLS
@@ -39,20 +39,6 @@ G_BEGIN_DECLS
#define CLUTTER_IS_TIMELINE_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), CLUTTER_TYPE_TIMELINE))
#define CLUTTER_TIMELINE_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), CLUTTER_TYPE_TIMELINE, ClutterTimelineClass))
-/**
- * ClutterTimelineDirection:
- * @CLUTTER_TIMELINE_FORWARD: forward direction for a timeline
- * @CLUTTER_TIMELINE_BACKWARD: backward direction for a timeline
- *
- * The direction of a #ClutterTimeline
- *
- * Since: 0.6
- */
-typedef enum {
- CLUTTER_TIMELINE_FORWARD,
- CLUTTER_TIMELINE_BACKWARD
-} ClutterTimelineDirection;
-
typedef struct _ClutterTimeline ClutterTimeline;
typedef struct _ClutterTimelineClass ClutterTimelineClass;
typedef struct _ClutterTimelinePrivate ClutterTimelinePrivate;