mirror of
https://github.com/brl/mutter.git
synced 2024-12-03 13:20:41 -05:00
2.0: Remove deprecated API from Animatable
This commit is contained in:
parent
465a324ecc
commit
0724b3fb91
@ -174,8 +174,6 @@ clutter_animatable_set_final_state (ClutterAnimatable *animatable,
|
|||||||
* This function should be used for every property animation
|
* This function should be used for every property animation
|
||||||
* involving #ClutterAnimatable<!-- -->s.
|
* involving #ClutterAnimatable<!-- -->s.
|
||||||
*
|
*
|
||||||
* This function replaces clutter_animatable_animate_property().
|
|
||||||
*
|
|
||||||
* Return value: %TRUE if the interpolation was successful,
|
* Return value: %TRUE if the interpolation was successful,
|
||||||
* and %FALSE otherwise
|
* and %FALSE otherwise
|
||||||
*
|
*
|
||||||
|
@ -51,8 +51,6 @@ typedef struct _ClutterAnimatableIface ClutterAnimatableIface;
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* ClutterAnimatableIface:
|
* ClutterAnimatableIface:
|
||||||
* @animate_property: virtual function for custom interpolation of a
|
|
||||||
* property. This virtual function is deprecated
|
|
||||||
* @find_property: virtual function for retrieving the #GParamSpec of
|
* @find_property: virtual function for retrieving the #GParamSpec of
|
||||||
* an animatable property
|
* an animatable property
|
||||||
* @get_initial_state: virtual function for retrieving the initial
|
* @get_initial_state: virtual function for retrieving the initial
|
||||||
@ -73,13 +71,6 @@ struct _ClutterAnimatableIface
|
|||||||
GTypeInterface parent_iface;
|
GTypeInterface parent_iface;
|
||||||
|
|
||||||
/*< public >*/
|
/*< public >*/
|
||||||
gboolean (* animate_property) (ClutterAnimatable *animatable,
|
|
||||||
ClutterAnimation *animation,
|
|
||||||
const gchar *property_name,
|
|
||||||
const GValue *initial_value,
|
|
||||||
const GValue *final_value,
|
|
||||||
gdouble progress,
|
|
||||||
GValue *value);
|
|
||||||
GParamSpec *(* find_property) (ClutterAnimatable *animatable,
|
GParamSpec *(* find_property) (ClutterAnimatable *animatable,
|
||||||
const gchar *property_name);
|
const gchar *property_name);
|
||||||
void (* get_initial_state) (ClutterAnimatable *animatable,
|
void (* get_initial_state) (ClutterAnimatable *animatable,
|
||||||
|
Loading…
Reference in New Issue
Block a user