|
Data Structures |
struct | Etk_Fixed |
| [Widget] A container which allows you to position widgets at fixed coordinates More...
|
Defines |
#define | ETK_FIXED_TYPE (etk_fixed_type_get()) |
#define | ETK_FIXED(obj) (ETK_OBJECT_CAST((obj), ETK_FIXED_TYPE, Etk_Fixed)) |
#define | ETK_IS_FIXED(obj) (ETK_OBJECT_CHECK_TYPE((obj), ETK_FIXED_TYPE)) |
Functions |
Etk_Widget * | etk_fixed_new (void) |
| Creates a new fixed container.
|
void | etk_fixed_put (Etk_Fixed *fixed, Etk_Widget *widget, int x, int y) |
| Puts a new child into the fixed container, at the position (x, y).
|
void | etk_fixed_move (Etk_Fixed *fixed, Etk_Widget *widget, int x, int y) |
| Moves an existing child of the fixed container to the position (x, y).
|
void | etk_fixed_child_position_get (Etk_Fixed *fixed, Etk_Widget *widget, int *x, int *y) |
| Gets the position of a child of the fixed container.
|