summaryrefslogtreecommitdiff
path: root/clutter/clutter-keyframe-transition.h
diff options
context:
space:
mode:
authorEmmanuele Bassi <ebassi@gnome.org>2015-01-03 20:34:20 +0000
committerEmmanuele Bassi <ebassi@gnome.org>2015-01-03 20:34:20 +0000
commit77ec8774a08c884d8acdf6c5f36a3e5003596626 (patch)
treea1ebb161dd9d46d9df5545db0dbbcd2727747e68 /clutter/clutter-keyframe-transition.h
parentc3c89332f6541848b5c3853858249e39b116b4fd (diff)
downloadclutter-77ec8774a08c884d8acdf6c5f36a3e5003596626.tar.gz
WARNING: Massive revert commit
Revert all the work that happened on the master branch. Sadly, this is the only way to merge the current development branch back into master. It is now abundantly clear that I merged the 1.99 branch far too soon, and that Clutter 2.0 won't happen any time soon, if at all. Since having the development happen on a separate branch throws a lot of people into confusion, let's undo the clutter-1.99 → master merge, and move back the development of Clutter to the master branch. In order to do so, we need to do some surgery to the Git repository. First, we do a massive revert in a single commit of all that happened since the switch to 1.99 and the API version bump done with the 89a2862b057423c3c1fc666e6fa776ccacf377dd commit. The history is too long to be reverted commit by commit without being extremely messy.
Diffstat (limited to 'clutter/clutter-keyframe-transition.h')
-rw-r--r--clutter/clutter-keyframe-transition.h24
1 files changed, 12 insertions, 12 deletions
diff --git a/clutter/clutter-keyframe-transition.h b/clutter/clutter-keyframe-transition.h
index 62133dfd5..b6ac500ae 100644
--- a/clutter/clutter-keyframe-transition.h
+++ b/clutter/clutter-keyframe-transition.h
@@ -48,7 +48,7 @@ typedef struct _ClutterKeyframeTransitionClass ClutterKeyframeTransitio
*
* FIXME
*
- *
+ * Since: 1.12
*/
struct _ClutterKeyframeTransition
{
@@ -63,7 +63,7 @@ struct _ClutterKeyframeTransition
*
* FIXME
*
- *
+ * Since: 1.12
*/
struct _ClutterKeyframeTransitionClass
{
@@ -73,46 +73,46 @@ struct _ClutterKeyframeTransitionClass
gpointer _padding[8];
};
-
+CLUTTER_AVAILABLE_IN_1_12
GType clutter_keyframe_transition_get_type (void) G_GNUC_CONST;
-
+CLUTTER_AVAILABLE_IN_1_12
ClutterTransition * clutter_keyframe_transition_new (const char *property_name);
-
+CLUTTER_AVAILABLE_IN_1_12
void clutter_keyframe_transition_set_key_frames (ClutterKeyframeTransition *transition,
guint n_key_frames,
const double *key_frames);
-
+CLUTTER_AVAILABLE_IN_1_12
void clutter_keyframe_transition_set_values (ClutterKeyframeTransition *transition,
guint n_values,
const GValue *values);
-
+CLUTTER_AVAILABLE_IN_1_12
void clutter_keyframe_transition_set_modes (ClutterKeyframeTransition *transition,
guint n_modes,
const ClutterAnimationMode *modes);
-
+CLUTTER_AVAILABLE_IN_1_12
void clutter_keyframe_transition_set (ClutterKeyframeTransition *transition,
GType gtype,
guint n_key_frames,
...);
-
+CLUTTER_AVAILABLE_IN_1_12
void clutter_keyframe_transition_set_key_frame (ClutterKeyframeTransition *transition,
guint index_,
double key,
ClutterAnimationMode mode,
const GValue *value);
-
+CLUTTER_AVAILABLE_IN_1_12
void clutter_keyframe_transition_get_key_frame (ClutterKeyframeTransition *transition,
guint index_,
double *key,
ClutterAnimationMode *mode,
GValue *value);
-
+CLUTTER_AVAILABLE_IN_1_12
guint clutter_keyframe_transition_get_n_key_frames (ClutterKeyframeTransition *transition);
-
+CLUTTER_AVAILABLE_IN_1_12
void clutter_keyframe_transition_clear (ClutterKeyframeTransition *transition);
G_END_DECLS