table: Deprecate the align, expand, and fill layout properties

ClutterActor exposes their equivalent, and ClutterTableLayout honours
them since commit 8e24de86b6.
This commit is contained in:
Emmanuele Bassi
2012-06-07 18:02:25 +01:00
parent 75c3339c66
commit ec296646f6
2 changed files with 26 additions and 2 deletions

View File

@ -101,26 +101,33 @@ void clutter_table_layout_get_span (ClutterTableLayo
ClutterActor *actor,
gint *column_span,
gint *row_span);
CLUTTER_DEPRECATED_IN_1_12
void clutter_table_layout_set_alignment (ClutterTableLayout *layout,
ClutterActor *actor,
ClutterTableAlignment x_align,
ClutterTableAlignment y_align);
CLUTTER_DEPRECATED_IN_1_12
void clutter_table_layout_get_alignment (ClutterTableLayout *layout,
ClutterActor *actor,
ClutterTableAlignment *x_align,
ClutterTableAlignment *y_align);
CLUTTER_DEPRECATED_IN_1_12
void clutter_table_layout_set_fill (ClutterTableLayout *layout,
ClutterActor *actor,
gboolean x_fill,
gboolean y_fill);
CLUTTER_DEPRECATED_IN_1_12
void clutter_table_layout_get_fill (ClutterTableLayout *layout,
ClutterActor *actor,
gboolean *x_fill,
gboolean *y_fill);
CLUTTER_DEPRECATED_IN_1_12
void clutter_table_layout_set_expand (ClutterTableLayout *layout,
ClutterActor *actor,
gboolean x_expand,
gboolean y_expand);
CLUTTER_DEPRECATED_IN_1_12
void clutter_table_layout_get_expand (ClutterTableLayout *layout,
ClutterActor *actor,
gboolean *x_expand,