X Window Configure Functions

Functions to configure X windows. More...

Functions

EAPI void ecore_x_window_configure (Ecore_X_Window window, Ecore_X_Window_Configure_Mask mask, int x, int y, int width, int height, int border_width, Ecore_X_Window sibling, int stack_mode)
 Configures the given window with the given mask.
EAPI void ecore_x_window_move (Ecore_X_Window window, int x, int y)
 Moves a window to the position x, y.
EAPI void ecore_x_window_resize (Ecore_X_Window window, int width, int height)
 Resizes a window.
EAPI void ecore_x_window_move_resize (Ecore_X_Window window, int x, int y, int width, int height)
 Moves and resizes a window.
EAPI void ecore_x_window_border_width_set (Ecore_X_Window window, int border_width)
 Sets the width of the border of the given window.
EAPI void ecore_x_window_raise (Ecore_X_Window window)
 Raises the given window.
EAPI void ecore_x_window_lower (Ecore_X_Window window)
 Lowers the given window.

Detailed Description

Functions to configure X windows.


Function Documentation

EAPI void ecore_x_window_border_width_set ( Ecore_X_Window  window,
int  border_width 
)

Sets the width of the border of the given window.

Parameters:
windowThe given window.
border_widthThe new border width.
EAPI void ecore_x_window_configure ( Ecore_X_Window  window,
Ecore_X_Window_Configure_Mask  mask,
int  x,
int  y,
int  width,
int  height,
int  border_width,
Ecore_X_Window  sibling,
int  stack_mode 
)

Configures the given window with the given mask.

Parameters:
windowThe given window.
maskThe given mask.
xThe X coordinate of the window.
yThe Y coordinate of the window.
widthThe width of the window.
heightThe height of the window.
border_widthThe border width of the window.
siblingThe sibling window of the window.
stack_modeThe stack mode of the window.
EAPI void ecore_x_window_lower ( Ecore_X_Window  window)

Lowers the given window.

Parameters:
windowThe window to lower.
EAPI void ecore_x_window_move ( Ecore_X_Window  window,
int  x,
int  y 
)

Moves a window to the position x, y.

The position is relative to the upper left hand corner of the parent window.

Parameters:
windowThe window to move.
xX position.
yY position.
EAPI void ecore_x_window_move_resize ( Ecore_X_Window  window,
int  x,
int  y,
int  width,
int  height 
)

Moves and resizes a window.

Parameters:
windowThe window to move and resize.
xNew X position of the window.
yNew Y position of the window.
widthNew width of the window.
heightNew height of the window.
EAPI void ecore_x_window_raise ( Ecore_X_Window  window)

Raises the given window.

Parameters:
windowThe window to raise.
EAPI void ecore_x_window_resize ( Ecore_X_Window  window,
int  width,
int  height 
)

Resizes a window.

Parameters:
windowThe window to resize.
widthNew width of the window.
heightNew height of the window.