Functions | |
EAPI void | ecore_x_get_window_attributes_prefetch (Ecore_X_Window window) |
Sends the GetWindowAttributes request. | |
EAPI void | ecore_x_get_window_attributes_fetch (void) |
Gets the reply of the GetWindowAttributes request sent by ecore_x_get_window_attributes_prefetch(). | |
EAPI int | ecore_x_window_attributes_get (Ecore_X_Window window __UNUSED__, Ecore_X_Window_Attributes *att_ret) |
Retrieves the attributes of a window. | |
EAPI int | ecore_x_window_visible_get (Ecore_X_Window window __UNUSED__) |
Finds out whether the given window is currently visible. |
EAPI int ecore_x_window_attributes_get | ( | Ecore_X_Window window | __UNUSED__, | |
Ecore_X_Window_Attributes * | att_ret | |||
) |
Retrieves the attributes of a window.
windows | Unused. | |
att_ret | Pointer to an Ecore_X_Window_Attributes structure in which the attributes of a window are to be stored. |
att_ret
is NULL
, the function does nothing. If an error occurred, att_ret
is set to 0. Otherwise, the att_ret
structure is filled with the attributes os the requested window.To use this function, you must call before, and in order, ecore_x_get_window_attributes_prefetch(), which sends the GetWindowAttributes request, then ecore_x_get_window_attributes_fetch(), which gets the reply.
EAPI int ecore_x_window_visible_get | ( | Ecore_X_Window window | __UNUSED__ | ) |
Finds out whether the given window is currently visible.
window | Unused. |
To use this function, you must call before, and in order, ecore_x_get_window_attributes_prefetch(), which sends the GetWindowAttributes request, then ecore_x_get_window_attributes_fetch(), which gets the reply.