Etk
Main Page Object Hierarchy Data Structures Related Pages
Etk

etk_mdi_window.c File Reference


Detailed Description


Functions

Etk_Widget * etk_mdi_window_new (void)
 Creates a new mdi_window.
void etk_mdi_window_delete_request (Etk_Mdi_Window *mdi_window)
 Emits a delete-request on the mdi_window: it will call all the callbacks connected to the "delete-event" signal and if all these callbacks return ETK_TRUE, the mdi_window will be destroyed. It has the same effect as if the user had clicked on the "close" button of the mdi_window.
void etk_mdi_window_title_set (Etk_Mdi_Window *mdi_window, const char *title)
 Sets the title of the mdi_window.
const char * etk_mdi_window_title_get (Etk_Mdi_Window *mdi_window)
 Gets the title of the mdi_window.
void etk_mdi_window_move (Etk_Mdi_Window *mdi_window, int x, int y)
 Moves a mdi_window to the position (x, y).
void etk_mdi_window_maximized_set (Etk_Mdi_Window *mdi_window, Etk_Bool maximized)
 Sets whether or not the mdi_window is maximized.
Etk_Bool etk_mdi_window_maximized_get (Etk_Mdi_Window *mdi_window)
 Gets whether the mdi_window is maximized.
void etk_mdi_window_draggable_set (Etk_Mdi_Window *mdi_window, Etk_Bool draggable)
 Sets whether or not the mdi_window is draggable.
Etk_Bool etk_mdi_window_draggable_get (Etk_Mdi_Window *mdi_window)
 Gets whether the mdi_window is draggable.
void etk_mdi_window_resizable_set (Etk_Mdi_Window *mdi_window, Etk_Bool resizable)
 Sets whether or not the mdi_window is draggable.
Etk_Bool etk_mdi_window_resizable_get (Etk_Mdi_Window *mdi_window)
 Gets whether the mdi_window is resizable.
void etk_mdi_window_decorated_set (Etk_Mdi_Window *mdi_window, Etk_Bool decorated)
 Sets whether or not the mdi_window is decorated.
Etk_Bool etk_mdi_window_decorated_get (Etk_Mdi_Window *mdi_window)
 Gets whether the mdi_window is decorated.
Etk_Bool etk_mdi_window_hide_on_delete (Etk_Object *mdi_window, void *data)
 A utility function to use as a callback for the "delete-event" signal. It will hide the mdi_window and return ETK_TRUE to prevent the program from quitting.