![]() |
![]() |
![]() |
Mx Toolkit Reference Manual | ![]() |
---|---|---|---|---|
Top | Description |
MxTableChildMxTableChild — The child property store for MxTable |
struct MxTableChildClass; gint mx_table_child_get_column (MxTable *table
,ClutterActor *child
); void mx_table_child_set_column (MxTable *table
,ClutterActor *child
,gint col
); gint mx_table_child_get_row (MxTable *table
,ClutterActor *child
); void mx_table_child_set_row (MxTable *table
,ClutterActor *child
,gint row
); gint mx_table_child_get_column_span (MxTable *table
,ClutterActor *child
); void mx_table_child_set_column_span (MxTable *table
,ClutterActor *child
,gint span
); gint mx_table_child_get_row_span (MxTable *table
,ClutterActor *child
); void mx_table_child_set_row_span (MxTable *table
,ClutterActor *child
,gint span
); gboolean mx_table_child_get_x_fill (MxTable *table
,ClutterActor *child
); void mx_table_child_set_x_fill (MxTable *table
,ClutterActor *child
,gboolean fill
); gboolean mx_table_child_get_y_fill (MxTable *table
,ClutterActor *child
); void mx_table_child_set_y_fill (MxTable *table
,ClutterActor *child
,gboolean fill
); gboolean mx_table_child_get_x_expand (MxTable *table
,ClutterActor *child
); void mx_table_child_set_x_expand (MxTable *table
,ClutterActor *child
,gboolean expand
); gboolean mx_table_child_get_y_expand (MxTable *table
,ClutterActor *child
); void mx_table_child_set_y_expand (MxTable *table
,ClutterActor *child
,gboolean expand
); MxAlign mx_table_child_get_x_align (MxTable *table
,ClutterActor *child
); void mx_table_child_set_x_align (MxTable *table
,ClutterActor *child
,MxAlign align
); MxAlign mx_table_child_get_y_align (MxTable *table
,ClutterActor *child
); void mx_table_child_set_y_align (MxTable *table
,ClutterActor *child
,MxAlign align
);
struct MxTableChildClass { ClutterChildMetaClass parent_class; /* padding for future expansion */ void (*_padding_0) (void); void (*_padding_1) (void); void (*_padding_2) (void); void (*_padding_3) (void); void (*_padding_4) (void); };
gint mx_table_child_get_column (MxTable *table
,ClutterActor *child
);
Get the column of the child.
|
an MxTable |
|
a ClutterActor |
Returns : |
the column of the child |
void mx_table_child_set_column (MxTable *table
,ClutterActor *child
,gint col
);
Set the column of the child
|
a MxTable |
|
a ClutterActor |
|
the column of the child |
gint mx_table_child_get_row (MxTable *table
,ClutterActor *child
);
Get the row of the child.
|
an MxTable |
|
a ClutterActor |
Returns : |
the row of the child |
void mx_table_child_set_row (MxTable *table
,ClutterActor *child
,gint row
);
Set the row of the child
|
a MxTable |
|
a ClutterActor |
|
the row of the child |
gint mx_table_child_get_column_span (MxTable *table
,ClutterActor *child
);
Get the column span of the child. Defaults to 1.
|
an MxTable |
|
a ClutterActor |
Returns : |
the column span of the child |
void mx_table_child_set_column_span (MxTable *table
,ClutterActor *child
,gint span
);
Set the column span of the child.
|
An MxTable |
|
An ClutterActor |
|
The number of columns to span |
gint mx_table_child_get_row_span (MxTable *table
,ClutterActor *child
);
Get the row span of the child. Defaults to 1.
|
A MxTable |
|
A ClutterActor |
Returns : |
the row span of the child |
void mx_table_child_set_row_span (MxTable *table
,ClutterActor *child
,gint span
);
Set the row span of the child.
|
A MxTable |
|
A ClutterActor |
|
the number of rows to span |
gboolean mx_table_child_get_x_fill (MxTable *table
,ClutterActor *child
);
Get the x-fill state of the child
|
A MxTable |
|
A ClutterActor |
Returns : |
TRUE if the child is set to x-fill |
void mx_table_child_set_x_fill (MxTable *table
,ClutterActor *child
,gboolean fill
);
Set the fill state of the child on the x-axis. This will cause the child to be allocated the maximum available space.
|
A MxTable |
|
A ClutterActor |
|
the fill state |
gboolean mx_table_child_get_y_fill (MxTable *table
,ClutterActor *child
);
Get the y-fill state of the child
|
A MxTable |
|
A ClutterActor |
Returns : |
TRUE if the child is set to y-fill |
void mx_table_child_set_y_fill (MxTable *table
,ClutterActor *child
,gboolean fill
);
Set the fill state of the child on the y-axis. This will cause the child to be allocated the maximum available space.
|
A MxTable |
|
A ClutterActor |
|
the fill state |
gboolean mx_table_child_get_x_expand (MxTable *table
,ClutterActor *child
);
Get the x-expand property of the child
|
A MxTable |
|
A ClutterActor |
Returns : |
TRUE if the child is set to x-expand |
void mx_table_child_set_x_expand (MxTable *table
,ClutterActor *child
,gboolean expand
);
Set x-expand on the child. This causes the column which the child resides in to be allocated any extra space if the allocation of the table is larger than the preferred size.
|
A MxTable |
|
A ClutterActor |
|
the new value of the x expand child property |
gboolean mx_table_child_get_y_expand (MxTable *table
,ClutterActor *child
);
Get the y-expand property of the child.
|
A MxTable |
|
A ClutterActor |
Returns : |
TRUE if the child is set to y-expand |
void mx_table_child_set_y_expand (MxTable *table
,ClutterActor *child
,gboolean expand
);
Set y-expand on the child. This causes the row which the child resides in to be allocated any extra space if the allocation of the table is larger than the preferred size.
|
A MxTable |
|
A ClutterActor |
|
the new value of the y-expand child property |
MxAlign mx_table_child_get_x_align (MxTable *table
,ClutterActor *child
);
Get the x-align value of the child
void mx_table_child_set_x_align (MxTable *table
,ClutterActor *child
,MxAlign align
);
Set the alignment of the child within its cell. This will only have an effect if the the x-fill property is FALSE.
MxAlign mx_table_child_get_y_align (MxTable *table
,ClutterActor *child
);
Get the y-align value of the child