Tizen 2.1 base
[framework/uifw/ecore.git] / src / lib / ecore_x / Ecore_X.h
1 #ifndef _ECORE_X_H
2 #define _ECORE_X_H
3
4 #include <Eina.h>
5
6 #ifdef EAPI
7 # undef EAPI
8 #endif // ifdef EAPI
9
10 #ifdef _MSC_VER
11 # ifdef BUILDING_DLL
12 #  define EAPI __declspec(dllexport)
13 # else // ifdef BUILDING_DLL
14 #  define EAPI __declspec(dllimport)
15 # endif // ifdef BUILDING_DLL
16 #else // ifdef _MSC_VER
17 # ifdef __GNUC__
18 #  if __GNUC__ >= 4
19 #   define EAPI __attribute__ ((visibility("default")))
20 #  else // if __GNUC__ >= 4
21 #   define EAPI
22 #  endif // if __GNUC__ >= 4
23 # else // ifdef __GNUC__
24 #  define EAPI
25 # endif // ifdef __GNUC__
26 #endif // ifdef _MSC_VER
27
28 #include <sys/types.h>
29
30 /**
31  * @file
32  * @brief Ecore functions for dealing with the X Windows System
33  *
34  * Ecore_X provides a wrapper and convenience functions for using the
35  * X Windows System.  Function groups for this part of the library
36  * include the following:
37  * @li @ref Ecore_X_Init_Group
38  * @li @ref Ecore_X_Display_Attr_Group
39  * @li @ref Ecore_X_Flush_Group
40  */
41
42 typedef unsigned int   Ecore_X_ID;
43 #ifndef _ECORE_X_WINDOW_PREDEF
44 typedef Ecore_X_ID     Ecore_X_Window;
45 #endif // ifndef _ECORE_X_WINDOW_PREDEF
46 typedef void          *Ecore_X_Visual;
47 typedef Ecore_X_ID     Ecore_X_Pixmap;
48 typedef Ecore_X_ID     Ecore_X_Drawable;
49 #ifdef HAVE_ECORE_X_XCB
50 typedef Ecore_X_ID     Ecore_X_GC;
51 #else // ifdef HAVE_ECORE_X_XCB
52 typedef void          *Ecore_X_GC;
53 #endif /* HAVE_ECORE_X_XCB */
54 typedef Ecore_X_ID     Ecore_X_Atom;
55 typedef Ecore_X_ID     Ecore_X_Colormap;
56 typedef Ecore_X_ID     Ecore_X_Time;
57 typedef Ecore_X_ID     Ecore_X_Cursor;
58 typedef void           Ecore_X_Display;
59 typedef void           Ecore_X_Connection;
60 typedef void           Ecore_X_Screen;
61 typedef Ecore_X_ID     Ecore_X_Sync_Counter;
62 typedef Ecore_X_ID     Ecore_X_Sync_Alarm;
63 typedef void           Ecore_X_XRegion;
64
65 typedef Ecore_X_ID     Ecore_X_Randr_Output;
66 typedef Ecore_X_ID     Ecore_X_Randr_Crtc;
67 typedef Ecore_X_ID     Ecore_X_Randr_Mode;
68 typedef unsigned short Ecore_X_Randr_Size_ID;
69 typedef int            Ecore_X_Randr_Screen;
70
71 typedef Ecore_X_ID     Ecore_X_Device;
72
73 #ifdef __cplusplus
74 extern "C" {
75 #endif // ifdef __cplusplus
76
77 typedef struct _Ecore_X_Rectangle
78 {
79    int          x, y;
80    unsigned int width, height;
81 } Ecore_X_Rectangle;
82
83 typedef struct _Ecore_X_Icon
84 {
85    unsigned int  width, height;
86    unsigned int *data;
87 } Ecore_X_Icon;
88
89 typedef enum _Ecore_X_GC_Value_Mask
90 {
91    ECORE_X_GC_VALUE_MASK_FUNCTION = (1L << 0),
92    ECORE_X_GC_VALUE_MASK_PLANE_MASK = (1L << 1),
93    ECORE_X_GC_VALUE_MASK_FOREGROUND = (1L << 2),
94    ECORE_X_GC_VALUE_MASK_BACKGROUND = (1L << 3),
95    ECORE_X_GC_VALUE_MASK_LINE_WIDTH = (1L << 4),
96    ECORE_X_GC_VALUE_MASK_LINE_STYLE = (1L << 5),
97    ECORE_X_GC_VALUE_MASK_CAP_STYLE = (1L << 6),
98    ECORE_X_GC_VALUE_MASK_JOIN_STYLE = (1L << 7),
99    ECORE_X_GC_VALUE_MASK_FILL_STYLE = (1L << 8),
100    ECORE_X_GC_VALUE_MASK_FILL_RULE = (1L << 9),
101    ECORE_X_GC_VALUE_MASK_TILE = (1L << 10),
102    ECORE_X_GC_VALUE_MASK_STIPPLE = (1L << 11),
103    ECORE_X_GC_VALUE_MASK_TILE_STIPPLE_ORIGIN_X = (1L << 12),
104    ECORE_X_GC_VALUE_MASK_TILE_STIPPLE_ORIGIN_Y = (1L << 13),
105    ECORE_X_GC_VALUE_MASK_FONT = (1L << 14),
106    ECORE_X_GC_VALUE_MASK_SUBWINDOW_MODE = (1L << 15),
107    ECORE_X_GC_VALUE_MASK_GRAPHICS_EXPOSURES = (1L << 16),
108    ECORE_X_GC_VALUE_MASK_CLIP_ORIGIN_X = (1L << 17),
109    ECORE_X_GC_VALUE_MASK_CLIP_ORIGIN_Y = (1L << 18),
110    ECORE_X_GC_VALUE_MASK_CLIP_MASK = (1L << 19),
111    ECORE_X_GC_VALUE_MASK_DASH_OFFSET = (1L << 20),
112    ECORE_X_GC_VALUE_MASK_DASH_LIST = (1L << 21),
113    ECORE_X_GC_VALUE_MASK_ARC_MODE = (1L << 22)
114 } Ecore_X_GC_Value_Mask;
115
116 typedef enum _Ecore_X_Composite_Update_Type
117 {
118    ECORE_X_COMPOSITE_UPDATE_AUTOMATIC,
119    ECORE_X_COMPOSITE_UPDATE_MANUAL
120 } Ecore_X_Composite_Update_Type;
121
122 /**
123  * @typedef _Ecore_X_Window_State
124  * Defines the different states of the window of Ecore_X.
125  */
126 typedef enum _Ecore_X_Window_State
127 {
128    ECORE_X_WINDOW_STATE_UNKNOWN = 0,
129    ECORE_X_WINDOW_STATE_ICONIFIED,  /** The window is iconified. */
130    ECORE_X_WINDOW_STATE_MODAL,  /** The window is a modal dialog box. */
131    ECORE_X_WINDOW_STATE_STICKY, /** The window manager should keep the window's position fixed
132                                  * even if the virtual desktop scrolls. */
133    ECORE_X_WINDOW_STATE_MAXIMIZED_VERT,  /** The window has the maximum vertical size. */
134    ECORE_X_WINDOW_STATE_MAXIMIZED_HORZ,  /** The window has the maximum horizontal size. */
135    ECORE_X_WINDOW_STATE_SHADED,  /** The window is shaded. */
136    ECORE_X_WINDOW_STATE_SKIP_TASKBAR,  /** The window should not be included in the taskbar. */
137    ECORE_X_WINDOW_STATE_SKIP_PAGER,  /** The window should not be included in the pager. */
138    ECORE_X_WINDOW_STATE_HIDDEN,  /** The window is invisible (i.e. minimized/iconified) */
139    ECORE_X_WINDOW_STATE_FULLSCREEN,  /** The window should fill the entire screen and have no
140                                       * window border/decorations */
141    ECORE_X_WINDOW_STATE_ABOVE,
142    ECORE_X_WINDOW_STATE_BELOW,
143    ECORE_X_WINDOW_STATE_DEMANDS_ATTENTION
144 } Ecore_X_Window_State;
145
146 typedef enum _Ecore_X_Window_State_Action
147 {
148    ECORE_X_WINDOW_STATE_ACTION_REMOVE,
149    ECORE_X_WINDOW_STATE_ACTION_ADD,
150    ECORE_X_WINDOW_STATE_ACTION_TOGGLE
151 } Ecore_X_Window_State_Action;
152
153 typedef enum _Ecore_X_Window_Stack_Mode
154 {
155    ECORE_X_WINDOW_STACK_ABOVE = 0,
156    ECORE_X_WINDOW_STACK_BELOW = 1,
157    ECORE_X_WINDOW_STACK_TOP_IF = 2,
158    ECORE_X_WINDOW_STACK_BOTTOM_IF = 3,
159    ECORE_X_WINDOW_STACK_OPPOSITE = 4
160 } Ecore_X_Window_Stack_Mode;
161
162 typedef enum _Ecore_X_Randr_Orientation
163 {
164    ECORE_X_RANDR_ORIENTATION_ROT_0 = (1 << 0),
165    ECORE_X_RANDR_ORIENTATION_ROT_90 = (1 << 1),
166    ECORE_X_RANDR_ORIENTATION_ROT_180 = (1 << 2),
167    ECORE_X_RANDR_ORIENTATION_ROT_270 = (1 << 3),
168    ECORE_X_RANDR_ORIENTATION_FLIP_X = (1 << 4),
169    ECORE_X_RANDR_ORIENTATION_FLIP_Y = (1 << 5)
170 } Ecore_X_Randr_Orientation;
171
172 typedef enum _Ecore_X_Randr_Connection_Status
173 {
174    ECORE_X_RANDR_CONNECTION_STATUS_CONNECTED = 0,
175    ECORE_X_RANDR_CONNECTION_STATUS_DISCONNECTED = 1,
176    ECORE_X_RANDR_CONNECTION_STATUS_UNKNOWN = 2
177 } Ecore_X_Randr_Connection_Status;
178
179 typedef enum _Ecore_X_Randr_Output_Policy
180 {
181    ECORE_X_RANDR_OUTPUT_POLICY_ABOVE = 1,
182    ECORE_X_RANDR_OUTPUT_POLICY_RIGHT = 2,
183    ECORE_X_RANDR_OUTPUT_POLICY_BELOW = 3,
184    ECORE_X_RANDR_OUTPUT_POLICY_LEFT = 4,
185    ECORE_X_RANDR_OUTPUT_POLICY_CLONE = 5,
186    ECORE_X_RANDR_OUTPUT_POLICY_NONE = 6,
187    ECORE_X_RANDR_OUTPUT_POLICY_ASK = 7
188 } Ecore_X_Randr_Output_Policy;
189
190 typedef enum _Ecore_X_Randr_Relative_Alignment
191 {
192    ECORE_X_RANDR_RELATIVE_ALIGNMENT_NONE = 0,
193    ECORE_X_RANDR_RELATIVE_ALIGNMENT_CENTER_REL = 1,
194    ECORE_X_RANDR_RELATIVE_ALIGNMENT_CENTER_SCR = 2
195 } Ecore_X_Randr_Relative_Alignment;
196
197 typedef enum _Ecore_X_Render_Subpixel_Order
198 {
199    ECORE_X_RENDER_SUBPIXEL_ORDER_UNKNOWN = 0,
200    ECORE_X_RENDER_SUBPIXEL_ORDER_HORIZONTAL_RGB = 1,
201    ECORE_X_RENDER_SUBPIXEL_ORDER_HORIZONTAL_BGR = 2,
202    ECORE_X_RENDER_SUBPIXEL_ORDER_VERTICAL_RGB = 3,
203    ECORE_X_RENDER_SUBPIXEL_ORDER_VERTICAL_BGR = 4,
204    ECORE_X_RENDER_SUBPIXEL_ORDER_NONE = 5
205 } Ecore_X_Render_Subpixel_Order;
206
207 typedef enum _Ecore_X_Randr_Edid_Display_Interface_Type
208 {
209    ECORE_X_RANDR_EDID_DISPLAY_INTERFACE_UNDEFINED,
210    ECORE_X_RANDR_EDID_DISPLAY_INTERFACE_DVI,
211    ECORE_X_RANDR_EDID_DISPLAY_INTERFACE_HDMI_A,
212    ECORE_X_RANDR_EDID_DISPLAY_INTERFACE_HDMI_B,
213    ECORE_X_RANDR_EDID_DISPLAY_INTERFACE_MDDI,
214    ECORE_X_RANDR_EDID_DISPLAY_INTERFACE_DISPLAY_PORT
215 } Ecore_X_Randr_Edid_Display_Interface_Type;
216
217 typedef enum _Ecore_X_Randr_Edid_Display_Colorscheme
218 {
219    ECORE_X_RANDR_EDID_DISPLAY_COLORSCHEME_MONOCHROME_GRAYSCALE = 0x00,
220    ECORE_X_RANDR_EDID_DISPLAY_COLORSCHEME_COLOR_RGB = 0x08,
221    ECORE_X_RANDR_EDID_DISPLAY_COLORSCHEME_COLOR_NON_RGB = 0x10,
222    ECORE_X_RANDR_EDID_DISPLAY_COLORSCHEME_COLOR_UNDEFINED = 0x18,
223    ECORE_X_RANDR_EDID_DISPLAY_COLORSCHEME_COLOR_RGB_4_4_4 = 0x444000,
224    ECORE_X_RANDR_EDID_DISPLAY_COLORSCHEME_COLOR_RGB_YCRCB_4_4_4 = 0x444,
225    ECORE_X_RANDR_EDID_DISPLAY_COLORSCHEME_COLOR_RGB_YCRCB_4_2_2 = 0x422
226 } Ecore_X_Randr_Edid_Display_Colorscheme;
227
228 typedef enum _Ecore_X_Randr_Edid_Aspect_Ratio
229 {
230    ECORE_X_RANDR_EDID_ASPECT_RATIO_4_3 = 0x0,
231    ECORE_X_RANDR_EDID_ASPECT_RATIO_16_9 = 0x1,
232    ECORE_X_RANDR_EDID_ASPECT_RATIO_16_10 = 0x2,
233    ECORE_X_RANDR_EDID_ASPECT_RATIO_5_4 = 0x4,
234    ECORE_X_RANDR_EDID_ASPECT_RATIO_15_9 = 0x8
235 } Ecore_X_Randr_Edid_Aspect_Ratio;
236
237 #define ECORE_X_RANDR_EDID_UNKNOWN_VALUE       -1
238
239 #define ECORE_X_SELECTION_TARGET_TARGETS       "TARGETS"
240 #define ECORE_X_SELECTION_TARGET_TEXT          "TEXT"
241 #define ECORE_X_SELECTION_TARGET_COMPOUND_TEXT "COMPOUND_TEXT"
242 #define ECORE_X_SELECTION_TARGET_STRING        "STRING"
243 #define ECORE_X_SELECTION_TARGET_UTF8_STRING   "UTF8_STRING"
244 #define ECORE_X_SELECTION_TARGET_FILENAME      "FILENAME"
245
246 #define ECORE_X_DND_VERSION                    5
247
248 typedef enum _Ecore_X_Selection
249 {
250    ECORE_X_SELECTION_PRIMARY,
251    ECORE_X_SELECTION_SECONDARY,
252    ECORE_X_SELECTION_XDND,
253    ECORE_X_SELECTION_CLIPBOARD,
254    ECORE_X_SELECTION_OTHER
255 } Ecore_X_Selection;
256
257 typedef enum _Ecore_X_Event_Mode
258 {
259    ECORE_X_EVENT_MODE_NORMAL,
260    ECORE_X_EVENT_MODE_WHILE_GRABBED,
261    ECORE_X_EVENT_MODE_GRAB,
262    ECORE_X_EVENT_MODE_UNGRAB
263 } Ecore_X_Event_Mode;
264
265 typedef enum _Ecore_X_Event_Detail
266 {
267    ECORE_X_EVENT_DETAIL_ANCESTOR,
268    ECORE_X_EVENT_DETAIL_VIRTUAL,
269    ECORE_X_EVENT_DETAIL_INFERIOR,
270    ECORE_X_EVENT_DETAIL_NON_LINEAR,
271    ECORE_X_EVENT_DETAIL_NON_LINEAR_VIRTUAL,
272    ECORE_X_EVENT_DETAIL_POINTER,
273    ECORE_X_EVENT_DETAIL_POINTER_ROOT,
274    ECORE_X_EVENT_DETAIL_DETAIL_NONE
275 } Ecore_X_Event_Detail;
276
277 typedef enum _Ecore_X_Event_Mask
278 {
279    ECORE_X_EVENT_MASK_NONE = 0L,
280    ECORE_X_EVENT_MASK_KEY_DOWN = (1L << 0),
281    ECORE_X_EVENT_MASK_KEY_UP = (1L << 1),
282    ECORE_X_EVENT_MASK_MOUSE_DOWN = (1L << 2),
283    ECORE_X_EVENT_MASK_MOUSE_UP = (1L << 3),
284    ECORE_X_EVENT_MASK_MOUSE_IN = (1L << 4),
285    ECORE_X_EVENT_MASK_MOUSE_OUT = (1L << 5),
286    ECORE_X_EVENT_MASK_MOUSE_MOVE = (1L << 6),
287    ECORE_X_EVENT_MASK_WINDOW_DAMAGE = (1L << 15),
288    ECORE_X_EVENT_MASK_WINDOW_VISIBILITY = (1L << 16),
289    ECORE_X_EVENT_MASK_WINDOW_CONFIGURE = (1L << 17),
290    ECORE_X_EVENT_MASK_WINDOW_RESIZE_MANAGE = (1L << 18),
291    ECORE_X_EVENT_MASK_WINDOW_MANAGE = (1L << 19),
292    ECORE_X_EVENT_MASK_WINDOW_CHILD_CONFIGURE = (1L << 20),
293    ECORE_X_EVENT_MASK_WINDOW_FOCUS_CHANGE = (1L << 21),
294    ECORE_X_EVENT_MASK_WINDOW_PROPERTY = (1L << 22),
295    ECORE_X_EVENT_MASK_WINDOW_COLORMAP = (1L << 23),
296    ECORE_X_EVENT_MASK_WINDOW_GRAB = (1L << 24),
297    ECORE_X_EVENT_MASK_MOUSE_WHEEL = (1L << 29),
298    ECORE_X_EVENT_MASK_WINDOW_FOCUS_IN = (1L << 30),
299    ECORE_X_EVENT_MASK_WINDOW_FOCUS_OUT = (1L << 31)
300 } Ecore_X_Event_Mask;
301
302 typedef enum _Ecore_X_Gravity
303 {
304    ECORE_X_GRAVITY_FORGET = 0,
305    ECORE_X_GRAVITY_UNMAP = 0,
306    ECORE_X_GRAVITY_NW = 1,
307    ECORE_X_GRAVITY_N = 2,
308    ECORE_X_GRAVITY_NE = 3,
309    ECORE_X_GRAVITY_W = 4,
310    ECORE_X_GRAVITY_CENTER = 5,
311    ECORE_X_GRAVITY_E = 6,
312    ECORE_X_GRAVITY_SW = 7,
313    ECORE_X_GRAVITY_S = 8,
314    ECORE_X_GRAVITY_SE = 9,
315    ECORE_X_GRAVITY_STATIC = 10
316 } Ecore_X_Gravity;
317
318 /* Needed for ecore_x_region_window_shape_set */
319 typedef enum _Ecore_X_Shape_Type
320 {
321    ECORE_X_SHAPE_BOUNDING,
322    ECORE_X_SHAPE_CLIP,
323    ECORE_X_SHAPE_INPUT
324 } Ecore_X_Shape_Type;
325
326 typedef enum _Ecore_X_Mapping_Type
327 {
328    ECORE_X_MAPPING_MODIFIER,
329    ECORE_X_MAPPING_KEYBOARD,
330    ECORE_X_MAPPING_MOUSE
331 } Ecore_X_Mapping_Type;
332
333 typedef enum _Ecore_X_Randr_Property_Change
334 {
335    ECORE_X_RANDR_PROPERTY_CHANGE_ADD,
336    ECORE_X_RANDR_PROPERTY_CHANGE_DEL
337 } Ecore_X_Randr_Property_Change;
338
339 typedef enum _Ecore_X_Netwm_Direction
340 {
341    ECORE_X_NETWM_DIRECTION_SIZE_TL = 0,
342    ECORE_X_NETWM_DIRECTION_SIZE_T = 1,
343    ECORE_X_NETWM_DIRECTION_SIZE_TR = 2,
344    ECORE_X_NETWM_DIRECTION_SIZE_R = 3,
345    ECORE_X_NETWM_DIRECTION_SIZE_BR = 4,
346    ECORE_X_NETWM_DIRECTION_SIZE_B = 5,
347    ECORE_X_NETWM_DIRECTION_SIZE_BL = 6,
348    ECORE_X_NETWM_DIRECTION_SIZE_L = 7,
349    ECORE_X_NETWM_DIRECTION_MOVE = 8,
350    ECORE_X_NETWM_DIRECTION_CANCEL = 11,
351 } Ecore_X_Netwm_Direction;
352
353 /**
354  * @typedef _Ecore_X_Error_Code
355  * Defines the error codes of Ecore_X which wraps the X Window Systems
356  * protocol's errors.
357  *
358  * @since 1.7.0
359  */
360 typedef enum _Ecore_X_Error_Code
361 {
362    /** Everything is okay. */
363    ECORE_X_ERROR_CODE_SUCCESS = 0, /** Bad request code */
364    ECORE_X_ERROR_CODE_BAD_REQUEST = 1, /** Int parameter out of range */
365    ECORE_X_ERROR_CODE_BAD_VALUE = 2, /** Parameter not a Window */
366    ECORE_X_ERROR_CODE_BAD_WINDOW = 3, /** Parameter not a Pixmap */
367    ECORE_X_ERROR_CODE_BAD_PIXMAP = 4, /** Parameter not an Atom */
368    ECORE_X_ERROR_CODE_BAD_ATOM = 5, /** Parameter not a Cursor */
369    ECORE_X_ERROR_CODE_BAD_CURSOR = 6, /** Parameter not a Font */
370    ECORE_X_ERROR_CODE_BAD_FONT = 7, /** Parameter mismatch */
371    ECORE_X_ERROR_CODE_BAD_MATCH = 8, /** Parameter not a Pixmap or Window */
372    ECORE_X_ERROR_CODE_BAD_DRAWABLE = 9, /** Bad access */
373    ECORE_X_ERROR_CODE_BAD_ACCESS = 10, /** Insufficient resources */
374    ECORE_X_ERROR_CODE_BAD_ALLOC = 11, /** No such colormap */
375    ECORE_X_ERROR_CODE_BAD_COLOR = 12, /** Parameter not a GC */
376    ECORE_X_ERROR_CODE_BAD_GC = 13, /** Choice not in range or already used */
377    ECORE_X_ERROR_CODE_BAD_ID_CHOICE = 14, /** Font or color name doesn't exist */
378    ECORE_X_ERROR_CODE_BAD_NAME = 15, /** Request length incorrect */
379    ECORE_X_ERROR_CODE_BAD_LENGTH = 16, /** Server is defective */
380    ECORE_X_ERROR_CODE_BAD_IMPLEMENTATION = 17,
381 } Ecore_X_Error_Code;
382
383 typedef struct _Ecore_X_Event_Mouse_In                     Ecore_X_Event_Mouse_In;
384 typedef struct _Ecore_X_Event_Mouse_Out                    Ecore_X_Event_Mouse_Out;
385 typedef struct _Ecore_X_Event_Window_Focus_In              Ecore_X_Event_Window_Focus_In;
386 typedef struct _Ecore_X_Event_Window_Focus_Out             Ecore_X_Event_Window_Focus_Out;
387 typedef struct _Ecore_X_Event_Window_Keymap                Ecore_X_Event_Window_Keymap;
388 typedef struct _Ecore_X_Event_Window_Damage                Ecore_X_Event_Window_Damage;
389 typedef struct _Ecore_X_Event_Window_Visibility_Change     Ecore_X_Event_Window_Visibility_Change;
390 typedef struct _Ecore_X_Event_Window_Create                Ecore_X_Event_Window_Create;
391 typedef struct _Ecore_X_Event_Window_Destroy               Ecore_X_Event_Window_Destroy;
392 typedef struct _Ecore_X_Event_Window_Hide                  Ecore_X_Event_Window_Hide;
393 typedef struct _Ecore_X_Event_Window_Show                  Ecore_X_Event_Window_Show;
394 typedef struct _Ecore_X_Event_Window_Show_Request          Ecore_X_Event_Window_Show_Request;
395 typedef struct _Ecore_X_Event_Window_Reparent              Ecore_X_Event_Window_Reparent;
396 typedef struct _Ecore_X_Event_Window_Configure             Ecore_X_Event_Window_Configure;
397 typedef struct _Ecore_X_Event_Window_Configure_Request     Ecore_X_Event_Window_Configure_Request;
398 typedef struct _Ecore_X_Event_Window_Gravity               Ecore_X_Event_Window_Gravity;
399 typedef struct _Ecore_X_Event_Window_Resize_Request        Ecore_X_Event_Window_Resize_Request;
400 typedef struct _Ecore_X_Event_Window_Stack                 Ecore_X_Event_Window_Stack;
401 typedef struct _Ecore_X_Event_Window_Stack_Request         Ecore_X_Event_Window_Stack_Request;
402 typedef struct _Ecore_X_Event_Window_Property              Ecore_X_Event_Window_Property;
403 typedef struct _Ecore_X_Event_Window_Colormap              Ecore_X_Event_Window_Colormap;
404 typedef struct _Ecore_X_Event_Mapping_Change               Ecore_X_Event_Mapping_Change;
405 typedef struct _Ecore_X_Event_Window_Mapping               Ecore_X_Event_Window_Mapping;
406 typedef struct _Ecore_X_Event_Selection_Clear              Ecore_X_Event_Selection_Clear;
407 typedef struct _Ecore_X_Event_Selection_Request            Ecore_X_Event_Selection_Request;
408 typedef struct _Ecore_X_Event_Selection_Notify             Ecore_X_Event_Selection_Notify;
409 typedef struct _Ecore_X_Event_Fixes_Selection_Notify       Ecore_X_Event_Fixes_Selection_Notify;
410 typedef struct _Ecore_X_Selection_Data                     Ecore_X_Selection_Data;
411 typedef struct _Ecore_X_Selection_Data_Files               Ecore_X_Selection_Data_Files;
412 typedef struct _Ecore_X_Selection_Data_Text                Ecore_X_Selection_Data_Text;
413 typedef struct _Ecore_X_Selection_Data_Targets             Ecore_X_Selection_Data_Targets;
414 typedef struct _Ecore_X_Event_Xdnd_Enter                   Ecore_X_Event_Xdnd_Enter;
415 typedef struct _Ecore_X_Event_Xdnd_Position                Ecore_X_Event_Xdnd_Position;
416 typedef struct _Ecore_X_Event_Xdnd_Status                  Ecore_X_Event_Xdnd_Status;
417 typedef struct _Ecore_X_Event_Xdnd_Leave                   Ecore_X_Event_Xdnd_Leave;
418 typedef struct _Ecore_X_Event_Xdnd_Drop                    Ecore_X_Event_Xdnd_Drop;
419 typedef struct _Ecore_X_Event_Xdnd_Finished                Ecore_X_Event_Xdnd_Finished;
420 typedef struct _Ecore_X_Event_Client_Message               Ecore_X_Event_Client_Message;
421 typedef struct _Ecore_X_Event_Window_Shape                 Ecore_X_Event_Window_Shape;
422 typedef struct _Ecore_X_Event_Screensaver_Notify           Ecore_X_Event_Screensaver_Notify;
423 typedef struct _Ecore_X_Event_Gesture_Notify_Flick         Ecore_X_Event_Gesture_Notify_Flick;
424 typedef struct _Ecore_X_Event_Gesture_Notify_Pan           Ecore_X_Event_Gesture_Notify_Pan;
425 typedef struct _Ecore_X_Event_Gesture_Notify_PinchRotation Ecore_X_Event_Gesture_Notify_PinchRotation;
426 typedef struct _Ecore_X_Event_Gesture_Notify_Tap           Ecore_X_Event_Gesture_Notify_Tap;
427 typedef struct _Ecore_X_Event_Gesture_Notify_TapNHold      Ecore_X_Event_Gesture_Notify_TapNHold;
428 typedef struct _Ecore_X_Event_Gesture_Notify_Hold          Ecore_X_Event_Gesture_Notify_Hold;
429 typedef struct _Ecore_X_Event_Gesture_Notify_Group         Ecore_X_Event_Gesture_Notify_Group;
430 typedef struct _Ecore_X_Event_Sync_Counter                 Ecore_X_Event_Sync_Counter;
431 typedef struct _Ecore_X_Event_Sync_Alarm                   Ecore_X_Event_Sync_Alarm;
432 typedef struct _Ecore_X_Event_Screen_Change                Ecore_X_Event_Screen_Change;
433 typedef struct _Ecore_X_Event_Randr_Crtc_Change            Ecore_X_Event_Randr_Crtc_Change;
434 typedef struct _Ecore_X_Event_Randr_Output_Change          Ecore_X_Event_Randr_Output_Change;
435 typedef struct _Ecore_X_Event_Randr_Output_Property_Notify Ecore_X_Event_Randr_Output_Property_Notify;
436
437 typedef struct _Ecore_X_Event_Window_Delete_Request        Ecore_X_Event_Window_Delete_Request;
438 typedef struct _Ecore_X_Event_Window_Move_Resize_Request   Ecore_X_Event_Window_Move_Resize_Request;
439 typedef struct _Ecore_X_Event_Window_State_Request         Ecore_X_Event_Window_State_Request;
440 typedef struct _Ecore_X_Event_Frame_Extents_Request        Ecore_X_Event_Frame_Extents_Request;
441 typedef struct _Ecore_X_Event_Ping                         Ecore_X_Event_Ping;
442 typedef struct _Ecore_X_Event_Desktop_Change               Ecore_X_Event_Desktop_Change;
443
444 typedef struct _Ecore_X_Event_Startup_Sequence             Ecore_X_Event_Startup_Sequence;
445
446 typedef struct _Ecore_X_Event_Generic                      Ecore_X_Event_Generic;
447
448 typedef struct _Ecore_X_Randr_Screen_Size                  Ecore_X_Randr_Screen_Size;
449 typedef struct _Ecore_X_Randr_Screen_Size_MM               Ecore_X_Randr_Screen_Size_MM;
450
451 typedef struct _Ecore_X_Xdnd_Position                      Ecore_X_Xdnd_Position;
452
453 struct _Ecore_X_Event_Mouse_In
454 {
455    int                  modifiers;
456    int                  x, y;
457    Eina_Bool            same_screen : 1;
458    struct
459    {
460       int x, y;
461    } root;
462    Ecore_X_Window       win;
463    Ecore_X_Window       event_win;
464    Ecore_X_Window       root_win;
465    Ecore_X_Event_Mode   mode;
466    Ecore_X_Event_Detail detail;
467    Ecore_X_Time         time;
468 };
469
470 struct _Ecore_X_Event_Mouse_Out
471 {
472    int                  modifiers;
473    int                  x, y;
474    int                  same_screen;
475    struct
476    {
477       int x, y;
478    } root;
479    Ecore_X_Window       win;
480    Ecore_X_Window       event_win;
481    Ecore_X_Window       root_win;
482    Ecore_X_Event_Mode   mode;
483    Ecore_X_Event_Detail detail;
484    Ecore_X_Time         time;
485 };
486
487 struct _Ecore_X_Event_Window_Focus_In
488 {
489    Ecore_X_Window       win;
490    Ecore_X_Event_Mode   mode;
491    Ecore_X_Event_Detail detail;
492    Ecore_X_Time         time;
493 };
494
495 struct _Ecore_X_Event_Window_Focus_Out
496 {
497    Ecore_X_Window       win;
498    Ecore_X_Event_Mode   mode;
499    Ecore_X_Event_Detail detail;
500    Ecore_X_Time         time;
501 };
502
503 struct _Ecore_X_Event_Window_Keymap
504 {
505    Ecore_X_Window win;
506 };
507
508 struct _Ecore_X_Event_Window_Damage
509 {
510    Ecore_X_Window win;
511    int            x, y, w, h;
512    int            count;
513    Ecore_X_Time   time;
514 };
515
516 struct _Ecore_X_Event_Window_Visibility_Change
517 {
518    Ecore_X_Window win;
519    int            fully_obscured;
520    Ecore_X_Time   time;
521 };
522
523 struct _Ecore_X_Event_Window_Create
524 {
525    Ecore_X_Window win;
526    Ecore_X_Window parent;
527    int            override;
528    int            x, y, w, h;
529    int            border;
530    Ecore_X_Time   time;
531 };
532
533 struct _Ecore_X_Event_Window_Destroy
534 {
535    Ecore_X_Window win;
536    Ecore_X_Window event_win;
537    Ecore_X_Time   time;
538 };
539
540 struct _Ecore_X_Event_Window_Hide
541 {
542    Ecore_X_Window win;
543    Ecore_X_Window event_win;
544    Ecore_X_Time   time;
545 };
546
547 struct _Ecore_X_Event_Window_Show
548 {
549    Ecore_X_Window win;
550    Ecore_X_Window event_win;
551    Ecore_X_Time   time;
552 };
553
554 struct _Ecore_X_Event_Window_Show_Request
555 {
556    Ecore_X_Window win;
557    Ecore_X_Window parent;
558    Ecore_X_Time   time;
559 };
560
561 struct _Ecore_X_Event_Window_Reparent
562 {
563    Ecore_X_Window win;
564    Ecore_X_Window event_win;
565    Ecore_X_Window parent;
566    Ecore_X_Time   time;
567 };
568
569 struct _Ecore_X_Event_Window_Configure
570 {
571    Ecore_X_Window win;
572    Ecore_X_Window event_win;
573    Ecore_X_Window abovewin;
574    int            x, y, w, h;
575    int            border;
576    Eina_Bool      override : 1;
577    Eina_Bool      from_wm : 1;
578    Ecore_X_Time   time;
579 };
580
581 struct _Ecore_X_Event_Window_Configure_Request
582 {
583    Ecore_X_Window            win;
584    Ecore_X_Window            parent_win;
585    Ecore_X_Window            abovewin;
586    int                       x, y, w, h;
587    int                       border;
588    Ecore_X_Window_Stack_Mode detail;
589    unsigned long             value_mask;
590    Ecore_X_Time              time;
591 };
592
593 struct _Ecore_X_Event_Window_Gravity
594 {
595    Ecore_X_Window win;
596    Ecore_X_Window event_win;
597    Ecore_X_Time   time;
598 };
599
600 struct _Ecore_X_Event_Window_Resize_Request
601 {
602    Ecore_X_Window win;
603    int            w, h;
604    Ecore_X_Time   time;
605 };
606
607 struct _Ecore_X_Event_Window_Stack
608 {
609    Ecore_X_Window            win;
610    Ecore_X_Window            event_win;
611    Ecore_X_Window_Stack_Mode detail;
612    Ecore_X_Time              time;
613 };
614
615 struct _Ecore_X_Event_Window_Stack_Request
616 {
617    Ecore_X_Window            win;
618    Ecore_X_Window            parent;
619    Ecore_X_Window_Stack_Mode detail;
620    Ecore_X_Time              time;
621 };
622
623 struct _Ecore_X_Event_Window_Property
624 {
625    Ecore_X_Window win;
626    Ecore_X_Atom   atom;
627    Ecore_X_Time   time;
628 };
629
630 struct _Ecore_X_Event_Window_Colormap
631 {
632    Ecore_X_Window   win;
633    Ecore_X_Colormap cmap;
634    Eina_Bool        installed : 1;
635    Ecore_X_Time     time;
636 };
637
638 struct _Ecore_X_Event_Mapping_Change
639 {
640    Ecore_X_Mapping_Type type;
641    int                  keycode;
642    int                  num;
643 };
644
645 struct _Ecore_X_Event_Selection_Clear
646 {
647    Ecore_X_Window    win;
648    Ecore_X_Selection selection;
649    Ecore_X_Atom      atom;
650    Ecore_X_Time      time;
651 };
652
653 struct _Ecore_X_Event_Selection_Request
654 {
655    Ecore_X_Window owner;
656    Ecore_X_Window requestor;
657    Ecore_X_Time   time;
658    Ecore_X_Atom   selection;
659    Ecore_X_Atom   target;
660    Ecore_X_Atom   property;
661 };
662
663 typedef enum
664 {
665    ECORE_X_OWNER_CHANGE_REASON_NEW_OWNER,
666    ECORE_X_OWNER_CHANGE_REASON_DESTROY,
667    ECORE_X_OWNER_CHANGE_REASON_CLOSE
668 } Ecore_X_Owner_Change_Reason;
669
670 struct _Ecore_X_Event_Fixes_Selection_Notify
671 {
672    Ecore_X_Window              win;
673    Ecore_X_Window              owner;
674    Ecore_X_Time                time;
675    Ecore_X_Time                selection_time;
676    Ecore_X_Selection           selection;
677    Ecore_X_Atom                atom;
678    Ecore_X_Owner_Change_Reason reason;
679 };
680
681 struct _Ecore_X_Event_Selection_Notify
682 {
683    Ecore_X_Window    win;
684    Ecore_X_Time      time;
685    Ecore_X_Selection selection;
686    Ecore_X_Atom      atom;
687    char             *target;
688    void             *data;
689 };
690
691 struct _Ecore_X_Selection_Data
692 {
693    enum
694    {
695       ECORE_X_SELECTION_CONTENT_NONE,
696       ECORE_X_SELECTION_CONTENT_TEXT,
697       ECORE_X_SELECTION_CONTENT_FILES,
698       ECORE_X_SELECTION_CONTENT_TARGETS,
699       ECORE_X_SELECTION_CONTENT_CUSTOM
700    } content;
701    unsigned char *data;
702    int            length;
703    int            format;
704    int            (*free)(void *data);
705 };
706
707 struct _Ecore_X_Selection_Data_Files
708 {
709    Ecore_X_Selection_Data data;
710    char                 **files;
711    int                    num_files;
712 };
713
714 struct _Ecore_X_Selection_Data_Text
715 {
716    Ecore_X_Selection_Data data;
717    char                  *text;
718 };
719
720 struct _Ecore_X_Selection_Data_Targets
721 {
722    Ecore_X_Selection_Data data;
723    char                 **targets;
724    int                    num_targets;
725 };
726
727 struct _Ecore_X_Event_Xdnd_Enter
728 {
729    Ecore_X_Window win, source;
730
731    char         **types;
732    int            num_types;
733 };
734
735 struct _Ecore_X_Event_Xdnd_Position
736 {
737    Ecore_X_Window win, source;
738    struct
739    {
740       int x, y;
741    } position;
742    Ecore_X_Atom   action;
743 };
744
745 struct _Ecore_X_Xdnd_Position
746 {
747    Ecore_X_Window win, prev;
748    struct
749    {
750       int x, y;
751    } position;
752 };
753
754 struct _Ecore_X_Event_Xdnd_Status
755 {
756    Ecore_X_Window    win, target;
757    Eina_Bool         will_accept : 1;
758    Ecore_X_Rectangle rectangle;
759    Ecore_X_Atom      action;
760 };
761
762 struct _Ecore_X_Event_Xdnd_Leave
763 {
764    Ecore_X_Window win, source;
765 };
766
767 struct _Ecore_X_Event_Xdnd_Drop
768 {
769    Ecore_X_Window win, source;
770    Ecore_X_Atom   action;
771    struct
772    {
773       int x, y;
774    } position;
775 };
776
777 struct _Ecore_X_Event_Xdnd_Finished
778 {
779    Ecore_X_Window win, target;
780    Eina_Bool      completed : 1;
781    Ecore_X_Atom   action;
782 };
783
784 struct _Ecore_X_Event_Client_Message
785 {
786    Ecore_X_Window win;
787    Ecore_X_Atom   message_type;
788    int            format;
789    union
790    {
791       char  b[20];
792       short s[10];
793       long  l[5];
794    } data;
795    Ecore_X_Time   time;
796 };
797
798 struct _Ecore_X_Event_Window_Shape
799 {
800    Ecore_X_Window     win;
801    Ecore_X_Time       time;
802    Ecore_X_Shape_Type type;
803    int                x, y, w, h;
804    Eina_Bool          shaped : 1;
805 };
806
807 struct _Ecore_X_Event_Screensaver_Notify
808 {
809    Ecore_X_Window win;
810    Eina_Bool      on : 1;
811    Ecore_X_Time   time;
812 };
813
814 struct _Ecore_X_Event_Sync_Counter
815 {
816    Ecore_X_Time time;
817 };
818
819 struct _Ecore_X_Event_Sync_Alarm
820 {
821    Ecore_X_Time       time;
822    Ecore_X_Sync_Alarm alarm;
823 };
824
825 struct _Ecore_X_Randr_Screen_Size
826 {
827    int width, height;
828 };
829
830 struct _Ecore_X_Randr_Screen_Size_MM
831 {
832    int width, height, width_mm, height_mm;
833 };
834
835 struct _Ecore_X_Event_Screen_Change
836 {
837    Ecore_X_Window                win;
838    Ecore_X_Window                root;
839    Ecore_X_Randr_Screen_Size_MM  size;  /* in pixel and millimeters */
840    Ecore_X_Time                  time;
841    Ecore_X_Time                  config_time;
842    Ecore_X_Randr_Orientation     orientation;
843    Ecore_X_Render_Subpixel_Order subpixel_order;
844    Ecore_X_Randr_Size_ID         size_id;
845 };
846
847 struct _Ecore_X_Event_Randr_Crtc_Change
848 {
849    Ecore_X_Window            win;
850    Ecore_X_Randr_Crtc        crtc;
851    Ecore_X_Randr_Mode        mode;
852    Ecore_X_Randr_Orientation orientation;
853    Eina_Rectangle            geo;
854 };
855
856 struct _Ecore_X_Event_Randr_Output_Change
857 {
858    Ecore_X_Window                  win;
859    Ecore_X_Randr_Output            output;
860    Ecore_X_Randr_Crtc              crtc;
861    Ecore_X_Randr_Mode              mode;
862    Ecore_X_Randr_Orientation       orientation;
863    Ecore_X_Randr_Connection_Status connection;
864    Ecore_X_Render_Subpixel_Order   subpixel_order;
865 };
866
867 struct _Ecore_X_Event_Randr_Output_Property_Notify
868 {
869    Ecore_X_Window                win;
870    Ecore_X_Randr_Output          output;
871    Ecore_X_Atom                  property;
872    Ecore_X_Time                  time;
873    Ecore_X_Randr_Property_Change state;
874 };
875
876 struct _Ecore_X_Event_Window_Delete_Request
877 {
878    Ecore_X_Window win;
879    Ecore_X_Time   time;
880 };
881
882 struct _Ecore_X_Event_Window_Prop_Title_Change
883 {
884    Ecore_X_Window win;
885    char          *title;
886    Ecore_X_Time   time;
887 };
888
889 struct _Ecore_X_Event_Window_Prop_Visible_Title_Change
890 {
891    Ecore_X_Window win;
892    char          *title;
893    Ecore_X_Time   time;
894 };
895
896 struct _Ecore_X_Event_Window_Prop_Icon_Name_Change
897 {
898    Ecore_X_Window win;
899    char          *name;
900    Ecore_X_Time   time;
901 };
902
903 struct _Ecore_X_Event_Window_Prop_Visible_Icon_Name_Change
904 {
905    Ecore_X_Window win;
906    char          *name;
907    Ecore_X_Time   time;
908 };
909
910 struct _Ecore_X_Event_Window_Prop_Client_Machine_Change
911 {
912    Ecore_X_Window win;
913    char          *name;
914    Ecore_X_Time   time;
915 };
916
917 struct _Ecore_X_Event_Window_Prop_Name_Class_Change
918 {
919    Ecore_X_Window win;
920    char          *name;
921    char          *clas;
922    Ecore_X_Time   time;
923 };
924
925 struct _Ecore_X_Event_Window_Prop_Pid_Change
926 {
927    Ecore_X_Window win;
928    pid_t          pid;
929    Ecore_X_Time   time;
930 };
931
932 struct _Ecore_X_Event_Window_Prop_Desktop_Change
933 {
934    Ecore_X_Window win;
935    long           desktop;
936    Ecore_X_Time   time;
937 };
938
939 struct _Ecore_X_Event_Startup_Sequence
940 {
941    Ecore_X_Window win;
942 };
943
944 struct _Ecore_X_Event_Window_Move_Resize_Request
945 {
946    Ecore_X_Window win;
947    int            x, y;
948    int            direction;
949    int            button;
950    int            source;
951 };
952
953 struct _Ecore_X_Event_Window_State_Request
954 {
955    Ecore_X_Window              win;
956    Ecore_X_Window_State_Action action;
957    Ecore_X_Window_State        state[2];
958    int                         source;
959 };
960
961 struct _Ecore_X_Event_Frame_Extents_Request
962 {
963    Ecore_X_Window win;
964 };
965
966 struct _Ecore_X_Event_Ping
967 {
968    Ecore_X_Window win;
969    Ecore_X_Window event_win;
970    Ecore_X_Time   time;
971 };
972
973 struct _Ecore_X_Event_Desktop_Change
974 {
975    Ecore_X_Window win;
976    unsigned int   desk;
977    int            source;
978 };
979
980 struct _Ecore_X_Event_Generic
981 {
982    int          extension;
983    int          evtype;
984    unsigned int cookie;
985    void        *data;
986 };
987
988 EAPI extern int ECORE_X_EVENT_ANY; /**< low level event dependent on
989                                         backend in use, if Xlib will be XEvent, if XCB will be xcb_generic_event_t.
990                                         @warning avoid using it.
991                                     */
992 EAPI extern int ECORE_X_EVENT_MOUSE_IN;
993 EAPI extern int ECORE_X_EVENT_MOUSE_OUT;
994 EAPI extern int ECORE_X_EVENT_WINDOW_FOCUS_IN;
995 EAPI extern int ECORE_X_EVENT_WINDOW_FOCUS_OUT;
996 EAPI extern int ECORE_X_EVENT_WINDOW_KEYMAP;
997 EAPI extern int ECORE_X_EVENT_WINDOW_DAMAGE;
998 EAPI extern int ECORE_X_EVENT_WINDOW_VISIBILITY_CHANGE;
999 EAPI extern int ECORE_X_EVENT_WINDOW_CREATE;
1000 EAPI extern int ECORE_X_EVENT_WINDOW_DESTROY;
1001 EAPI extern int ECORE_X_EVENT_WINDOW_HIDE;
1002 EAPI extern int ECORE_X_EVENT_WINDOW_SHOW;
1003 EAPI extern int ECORE_X_EVENT_WINDOW_SHOW_REQUEST;
1004 EAPI extern int ECORE_X_EVENT_WINDOW_REPARENT;
1005 EAPI extern int ECORE_X_EVENT_WINDOW_CONFIGURE;
1006 EAPI extern int ECORE_X_EVENT_WINDOW_CONFIGURE_REQUEST;
1007 EAPI extern int ECORE_X_EVENT_WINDOW_GRAVITY;
1008 EAPI extern int ECORE_X_EVENT_WINDOW_RESIZE_REQUEST;
1009 EAPI extern int ECORE_X_EVENT_WINDOW_STACK;
1010 EAPI extern int ECORE_X_EVENT_WINDOW_STACK_REQUEST;
1011 EAPI extern int ECORE_X_EVENT_WINDOW_PROPERTY;
1012 EAPI extern int ECORE_X_EVENT_WINDOW_COLORMAP;
1013 EAPI extern int ECORE_X_EVENT_WINDOW_MAPPING;
1014 EAPI extern int ECORE_X_EVENT_MAPPING_CHANGE;
1015 EAPI extern int ECORE_X_EVENT_SELECTION_CLEAR;
1016 EAPI extern int ECORE_X_EVENT_SELECTION_REQUEST;
1017 EAPI extern int ECORE_X_EVENT_SELECTION_NOTIFY;
1018 EAPI extern int ECORE_X_EVENT_FIXES_SELECTION_NOTIFY;
1019 EAPI extern int ECORE_X_EVENT_CLIENT_MESSAGE;
1020 EAPI extern int ECORE_X_EVENT_WINDOW_SHAPE;
1021 EAPI extern int ECORE_X_EVENT_SCREENSAVER_NOTIFY;
1022 EAPI extern int ECORE_X_EVENT_GESTURE_NOTIFY_FLICK;
1023 EAPI extern int ECORE_X_EVENT_GESTURE_NOTIFY_PAN;
1024 EAPI extern int ECORE_X_EVENT_GESTURE_NOTIFY_PINCHROTATION;
1025 EAPI extern int ECORE_X_EVENT_GESTURE_NOTIFY_TAP;
1026 EAPI extern int ECORE_X_EVENT_GESTURE_NOTIFY_TAPNHOLD;
1027 EAPI extern int ECORE_X_EVENT_GESTURE_NOTIFY_HOLD;
1028 EAPI extern int ECORE_X_EVENT_GESTURE_NOTIFY_GROUP;
1029 EAPI extern int ECORE_X_EVENT_SYNC_COUNTER;
1030 EAPI extern int ECORE_X_EVENT_SYNC_ALARM;
1031 EAPI extern int ECORE_X_EVENT_SCREEN_CHANGE;
1032 EAPI extern int ECORE_X_EVENT_RANDR_CRTC_CHANGE;
1033 EAPI extern int ECORE_X_EVENT_RANDR_OUTPUT_CHANGE;
1034 EAPI extern int ECORE_X_EVENT_RANDR_OUTPUT_PROPERTY_NOTIFY;
1035 EAPI extern int ECORE_X_EVENT_DAMAGE_NOTIFY;
1036
1037 EAPI extern int ECORE_X_EVENT_WINDOW_DELETE_REQUEST;
1038
1039 EAPI extern int ECORE_X_EVENT_WINDOW_MOVE_RESIZE_REQUEST;
1040 EAPI extern int ECORE_X_EVENT_WINDOW_STATE_REQUEST;
1041 EAPI extern int ECORE_X_EVENT_FRAME_EXTENTS_REQUEST;
1042 EAPI extern int ECORE_X_EVENT_PING;
1043 EAPI extern int ECORE_X_EVENT_DESKTOP_CHANGE;
1044
1045 EAPI extern int ECORE_X_EVENT_STARTUP_SEQUENCE_NEW;
1046 EAPI extern int ECORE_X_EVENT_STARTUP_SEQUENCE_CHANGE;
1047 EAPI extern int ECORE_X_EVENT_STARTUP_SEQUENCE_REMOVE;
1048 EAPI extern int ECORE_X_EVENT_XKB_STATE_NOTIFY; /** @since 1.7 */
1049 EAPI extern int ECORE_X_EVENT_XKB_NEWKBD_NOTIFY; /** @since 1.7 */
1050
1051 EAPI extern int ECORE_X_EVENT_GENERIC;
1052
1053 EAPI extern int ECORE_X_EVENT_XDND_ENTER;
1054 EAPI extern int ECORE_X_EVENT_XDND_POSITION;
1055 EAPI extern int ECORE_X_EVENT_XDND_STATUS;
1056 EAPI extern int ECORE_X_EVENT_XDND_LEAVE;
1057 EAPI extern int ECORE_X_EVENT_XDND_DROP;
1058 EAPI extern int ECORE_X_EVENT_XDND_FINISHED;
1059
1060 EAPI extern int ECORE_X_MODIFIER_SHIFT; /**< @since 1.7 */
1061 EAPI extern int ECORE_X_MODIFIER_CTRL;  /**< @since 1.7 */
1062 EAPI extern int ECORE_X_MODIFIER_ALT;   /**< @since 1.7 */
1063 EAPI extern int ECORE_X_MODIFIER_WIN;   /**< @since 1.7 */
1064 EAPI extern int ECORE_X_MODIFIER_ALTGR; /**< @since 1.7 */
1065
1066 EAPI extern int ECORE_X_LOCK_SCROLL;
1067 EAPI extern int ECORE_X_LOCK_NUM;
1068 EAPI extern int ECORE_X_LOCK_CAPS;
1069 EAPI extern int ECORE_X_LOCK_SHIFT;
1070
1071 EAPI extern int ECORE_X_RAW_BUTTON_PRESS;   /**< @since 1.8 */
1072 EAPI extern int ECORE_X_RAW_BUTTON_RELEASE; /**< @since 1.8 */
1073 EAPI extern int ECORE_X_RAW_MOTION;         /**< @since 1.8 */
1074
1075 typedef enum _Ecore_X_WM_Protocol
1076 {
1077    /** If enabled the window manager will be asked to send a
1078     * delete message instead of just closing (destroying) the window. */
1079    ECORE_X_WM_PROTOCOL_DELETE_REQUEST,
1080
1081    /** If enabled the window manager will be told that the window
1082     * explicitly sets input focus. */
1083    ECORE_X_WM_PROTOCOL_TAKE_FOCUS,
1084
1085    /** If enabled the window manager can ping the window to check
1086     * if it is alive. */
1087    ECORE_X_NET_WM_PROTOCOL_PING,
1088
1089    /** If enabled the window manager can sync updating with the
1090     * window (?) */
1091    ECORE_X_NET_WM_PROTOCOL_SYNC_REQUEST,
1092
1093    /** Number of defined items */
1094    ECORE_X_WM_PROTOCOL_NUM
1095 } Ecore_X_WM_Protocol;
1096
1097 typedef enum _Ecore_X_Window_Input_Mode
1098 {
1099    /** The window can never be focused */
1100    ECORE_X_WINDOW_INPUT_MODE_NONE,
1101
1102    /** The window can be focused by the WM but doesn't focus itself */
1103    ECORE_X_WINDOW_INPUT_MODE_PASSIVE,
1104
1105    /** The window sets the focus itself if one of its sub-windows
1106     * already is focused */
1107    ECORE_X_WINDOW_INPUT_MODE_ACTIVE_LOCAL,
1108
1109    /** The window sets the focus itself even if another window
1110     * is currently focused */
1111    ECORE_X_WINDOW_INPUT_MODE_ACTIVE_GLOBAL
1112 } Ecore_X_Window_Input_Mode;
1113
1114 /**
1115  * @typedef _Ecore_X_Window_State_Hint
1116  * Defines the different state hint of the window of Ecore_X.
1117  */
1118 typedef enum _Ecore_X_Window_State_Hint
1119 {
1120    /** Do not provide any state hint to the window manager */
1121    ECORE_X_WINDOW_STATE_HINT_NONE = -1,
1122
1123    /** The window wants to remain hidden and NOT iconified */
1124    ECORE_X_WINDOW_STATE_HINT_WITHDRAWN,
1125
1126    /** The window wants to be mapped normally */
1127    ECORE_X_WINDOW_STATE_HINT_NORMAL,
1128
1129    /** The window wants to start in an iconified state */
1130    ECORE_X_WINDOW_STATE_HINT_ICONIC
1131 } Ecore_X_Window_State_Hint;
1132
1133 typedef enum _Ecore_X_Window_Type
1134 {
1135    ECORE_X_WINDOW_TYPE_UNKNOWN = 0,
1136    ECORE_X_WINDOW_TYPE_DESKTOP,
1137    ECORE_X_WINDOW_TYPE_DOCK,
1138    ECORE_X_WINDOW_TYPE_TOOLBAR,
1139    ECORE_X_WINDOW_TYPE_MENU,
1140    ECORE_X_WINDOW_TYPE_UTILITY,
1141    ECORE_X_WINDOW_TYPE_SPLASH,
1142    ECORE_X_WINDOW_TYPE_DIALOG,
1143    ECORE_X_WINDOW_TYPE_NORMAL,
1144    ECORE_X_WINDOW_TYPE_DROPDOWN_MENU,
1145    ECORE_X_WINDOW_TYPE_POPUP_MENU,
1146    ECORE_X_WINDOW_TYPE_TOOLTIP,
1147    ECORE_X_WINDOW_TYPE_NOTIFICATION,
1148    ECORE_X_WINDOW_TYPE_COMBO,
1149    ECORE_X_WINDOW_TYPE_DND
1150 } Ecore_X_Window_Type;
1151
1152 typedef enum _Ecore_X_Action
1153 {
1154    ECORE_X_ACTION_MOVE,
1155    ECORE_X_ACTION_RESIZE,
1156    ECORE_X_ACTION_MINIMIZE,
1157    ECORE_X_ACTION_SHADE,
1158    ECORE_X_ACTION_STICK,
1159    ECORE_X_ACTION_MAXIMIZE_HORZ,
1160    ECORE_X_ACTION_MAXIMIZE_VERT,
1161    ECORE_X_ACTION_FULLSCREEN,
1162    ECORE_X_ACTION_CHANGE_DESKTOP,
1163    ECORE_X_ACTION_CLOSE,
1164    ECORE_X_ACTION_ABOVE,
1165    ECORE_X_ACTION_BELOW
1166 } Ecore_X_Action;
1167
1168 typedef enum _Ecore_X_Window_Configure_Mask
1169 {
1170    ECORE_X_WINDOW_CONFIGURE_MASK_X = (1 << 0),
1171    ECORE_X_WINDOW_CONFIGURE_MASK_Y = (1 << 1),
1172    ECORE_X_WINDOW_CONFIGURE_MASK_W = (1 << 2),
1173    ECORE_X_WINDOW_CONFIGURE_MASK_H = (1 << 3),
1174    ECORE_X_WINDOW_CONFIGURE_MASK_BORDER_WIDTH = (1 << 4),
1175    ECORE_X_WINDOW_CONFIGURE_MASK_SIBLING = (1 << 5),
1176    ECORE_X_WINDOW_CONFIGURE_MASK_STACK_MODE = (1 << 6)
1177 } Ecore_X_Window_Configure_Mask;
1178
1179 typedef enum _Ecore_X_Virtual_Keyboard_State
1180 {
1181    ECORE_X_VIRTUAL_KEYBOARD_STATE_UNKNOWN = 0,
1182    ECORE_X_VIRTUAL_KEYBOARD_STATE_OFF,
1183    ECORE_X_VIRTUAL_KEYBOARD_STATE_ON,
1184    ECORE_X_VIRTUAL_KEYBOARD_STATE_ALPHA,
1185    ECORE_X_VIRTUAL_KEYBOARD_STATE_NUMERIC,
1186    ECORE_X_VIRTUAL_KEYBOARD_STATE_PIN,
1187    ECORE_X_VIRTUAL_KEYBOARD_STATE_PHONE_NUMBER,
1188    ECORE_X_VIRTUAL_KEYBOARD_STATE_HEX,
1189    ECORE_X_VIRTUAL_KEYBOARD_STATE_TERMINAL,
1190    ECORE_X_VIRTUAL_KEYBOARD_STATE_PASSWORD,
1191    ECORE_X_VIRTUAL_KEYBOARD_STATE_IP,
1192    ECORE_X_VIRTUAL_KEYBOARD_STATE_HOST,
1193    ECORE_X_VIRTUAL_KEYBOARD_STATE_FILE,
1194    ECORE_X_VIRTUAL_KEYBOARD_STATE_URL,
1195    ECORE_X_VIRTUAL_KEYBOARD_STATE_KEYPAD,
1196    ECORE_X_VIRTUAL_KEYBOARD_STATE_J2ME
1197 } Ecore_X_Virtual_Keyboard_State;
1198
1199 typedef enum _Ecore_X_Illume_Mode
1200 {
1201    ECORE_X_ILLUME_MODE_UNKNOWN = 0,
1202    ECORE_X_ILLUME_MODE_SINGLE,
1203    ECORE_X_ILLUME_MODE_DUAL_TOP,
1204    ECORE_X_ILLUME_MODE_DUAL_LEFT
1205 } Ecore_X_Illume_Mode;
1206
1207 typedef enum _Ecore_X_Illume_Quickpanel_State
1208 {
1209    ECORE_X_ILLUME_QUICKPANEL_STATE_UNKNOWN = 0,
1210    ECORE_X_ILLUME_QUICKPANEL_STATE_OFF,
1211    ECORE_X_ILLUME_QUICKPANEL_STATE_ON
1212 } Ecore_X_Illume_Quickpanel_State;
1213
1214 typedef enum _Ecore_X_Illume_Indicator_State
1215 {
1216    ECORE_X_ILLUME_INDICATOR_STATE_UNKNOWN = 0,
1217    ECORE_X_ILLUME_INDICATOR_STATE_OFF,
1218    ECORE_X_ILLUME_INDICATOR_STATE_ON
1219 } Ecore_X_Illume_Indicator_State;
1220
1221 typedef enum _Ecore_X_Illume_Clipboard_State
1222 {
1223    ECORE_X_ILLUME_CLIPBOARD_STATE_UNKNOWN = 0,
1224    ECORE_X_ILLUME_CLIPBOARD_STATE_OFF,
1225    ECORE_X_ILLUME_CLIPBOARD_STATE_ON
1226 } Ecore_X_Illume_Clipboard_State;
1227
1228 typedef enum _Ecore_X_Illume_Indicator_Opacity_Mode
1229 {
1230    ECORE_X_ILLUME_INDICATOR_OPACITY_UNKNOWN = 0,
1231    ECORE_X_ILLUME_INDICATOR_OPAQUE,
1232    ECORE_X_ILLUME_INDICATOR_TRANSLUCENT,
1233    ECORE_X_ILLUME_INDICATOR_TRANSPARENT
1234 } Ecore_X_Illume_Indicator_Opacity_Mode;
1235
1236 typedef enum _Ecore_X_Illume_Window_State
1237 {
1238    ECORE_X_ILLUME_WINDOW_STATE_NORMAL = 0,
1239    ECORE_X_ILLUME_WINDOW_STATE_FLOATING
1240 } Ecore_X_Illume_Window_State;
1241
1242 /* Window layer constants */
1243 #define ECORE_X_WINDOW_LAYER_BELOW  2
1244 #define ECORE_X_WINDOW_LAYER_NORMAL 4
1245 #define ECORE_X_WINDOW_LAYER_ABOVE  6
1246
1247 /* Property list operations */
1248 #define ECORE_X_PROP_LIST_REMOVE    0
1249 #define ECORE_X_PROP_LIST_ADD       1
1250 #define ECORE_X_PROP_LIST_TOGGLE    2
1251
1252 EAPI int                       ecore_x_init(const char *name);
1253 EAPI int                       ecore_x_shutdown(void);
1254 EAPI int                       ecore_x_disconnect(void);
1255 EAPI Ecore_X_Display          *ecore_x_display_get(void);
1256 EAPI Ecore_X_Connection       *ecore_x_connection_get(void);
1257 EAPI int                       ecore_x_fd_get(void);
1258 EAPI Ecore_X_Screen           *ecore_x_default_screen_get(void);
1259 EAPI void                      ecore_x_screen_size_get(const Ecore_X_Screen *screen, int *w, int *h);
1260 EAPI int                       ecore_x_screen_count_get(void);
1261 EAPI int                       ecore_x_screen_index_get(const Ecore_X_Screen *screen);
1262 EAPI Ecore_X_Screen           *ecore_x_screen_get(int index);
1263
1264 EAPI void                      ecore_x_double_click_time_set(double t);
1265 EAPI double                    ecore_x_double_click_time_get(void);
1266 EAPI void                      ecore_x_flush(void);
1267 EAPI void                      ecore_x_sync(void);
1268 EAPI void                      ecore_x_killall(Ecore_X_Window root);
1269 EAPI void                      ecore_x_kill(Ecore_X_Window win);
1270 EAPI int                       ecore_x_dpi_get(void);
1271 EAPI Eina_Bool                 ecore_x_bell(int percent);
1272 EAPI unsigned int              ecore_x_visual_id_get(Ecore_X_Visual visual);
1273
1274 EAPI Ecore_X_Visual            ecore_x_default_visual_get(Ecore_X_Display *disp, Ecore_X_Screen *screen);
1275 EAPI Ecore_X_Colormap          ecore_x_default_colormap_get(Ecore_X_Display *disp, Ecore_X_Screen *screen);
1276 EAPI int                       ecore_x_default_depth_get(Ecore_X_Display *disp, Ecore_X_Screen *screen);
1277
1278 EAPI Ecore_X_Time              ecore_x_current_time_get(void);
1279
1280 EAPI void                      ecore_x_error_handler_set(void (*func)(void *data), const void *data);
1281 EAPI void                      ecore_x_io_error_handler_set(void (*func)(void *data), const void *data);
1282 EAPI int                       ecore_x_error_request_get(void);
1283 EAPI int                       ecore_x_error_code_get(void);
1284 EAPI Ecore_X_ID                ecore_x_error_resource_id_get(void);
1285
1286 EAPI void                      ecore_x_event_mask_set(Ecore_X_Window w, Ecore_X_Event_Mask mask);
1287 EAPI void                      ecore_x_event_mask_unset(Ecore_X_Window w, Ecore_X_Event_Mask mask);
1288
1289 EAPI Eina_Bool                 ecore_x_selection_notify_send(Ecore_X_Window requestor, Ecore_X_Atom selection, Ecore_X_Atom target, Ecore_X_Atom property, Ecore_X_Time time);
1290 EAPI Eina_Bool                 ecore_x_selection_primary_set(Ecore_X_Window w, const void *data, int size);
1291 EAPI Eina_Bool                 ecore_x_selection_primary_clear(void);
1292 EAPI Eina_Bool                 ecore_x_selection_secondary_set(Ecore_X_Window w, const void *data, int size);
1293 EAPI Eina_Bool                 ecore_x_selection_secondary_clear(void);
1294 EAPI Eina_Bool                 ecore_x_selection_xdnd_set(Ecore_X_Window w, const void *data, int size);
1295 EAPI Eina_Bool                 ecore_x_selection_xdnd_clear(void);
1296 EAPI Eina_Bool                 ecore_x_selection_clipboard_set(Ecore_X_Window w, const void *data, int size);
1297 EAPI Eina_Bool                 ecore_x_selection_clipboard_clear(void);
1298 EAPI void                      ecore_x_selection_primary_request(Ecore_X_Window w, const char *target);
1299 EAPI void                      ecore_x_selection_secondary_request(Ecore_X_Window w, const char *target);
1300 EAPI void                      ecore_x_selection_xdnd_request(Ecore_X_Window w, const char *target);
1301 EAPI void                      ecore_x_selection_clipboard_request(Ecore_X_Window w, const char *target);
1302 EAPI Eina_Bool                 ecore_x_selection_convert(Ecore_X_Atom selection, Ecore_X_Atom target, void **data_ret, int *len, Ecore_X_Atom *targprop, int *targsize);
1303 EAPI void                      ecore_x_selection_converter_add(char *target, Eina_Bool (*func)(char *target, void *data, int size, void **data_ret, int *size_ret, Ecore_X_Atom *, int *));
1304 EAPI void                      ecore_x_selection_converter_atom_add(Ecore_X_Atom target, Eina_Bool (*func)(char *target, void *data, int size, void **data_ret, int *size_ret, Ecore_X_Atom *tprop, int *tsize));
1305 EAPI void                      ecore_x_selection_converter_del(char *target);
1306 EAPI void                      ecore_x_selection_converter_atom_del(Ecore_X_Atom target);
1307 EAPI void                      ecore_x_selection_parser_add(const char *target, void *(*func)(const char *target, void *data, int size, int format));
1308 EAPI void                      ecore_x_selection_parser_del(const char *target);
1309 EAPI void                      ecore_x_selection_owner_set(Ecore_X_Window win, Ecore_X_Atom atom, Ecore_X_Time tm);
1310 EAPI Ecore_X_Window            ecore_x_selection_owner_get(Ecore_X_Atom atom);
1311 EAPI Eina_Bool                 ecore_x_selection_converter_text(char *target, void *data, int size, void **data_ret, int *size_ret, Ecore_X_Atom *targprop, int *s); /** @since 1.8 */
1312
1313 EAPI void                      ecore_x_dnd_aware_set(Ecore_X_Window win, Eina_Bool on);
1314 EAPI int                       ecore_x_dnd_version_get(Ecore_X_Window win);
1315 EAPI Eina_Bool                 ecore_x_dnd_type_isset(Ecore_X_Window win, const char *type);
1316 EAPI void                      ecore_x_dnd_type_set(Ecore_X_Window win, const char *type, Eina_Bool on);
1317 EAPI void                      ecore_x_dnd_types_set(Ecore_X_Window win, const char **types, unsigned int num_types);
1318 EAPI void                      ecore_x_dnd_actions_set(Ecore_X_Window win, Ecore_X_Atom *actions, unsigned int num_actions);
1319 EAPI Eina_Bool                 ecore_x_dnd_begin(Ecore_X_Window source, unsigned char *data, int size);
1320 EAPI Eina_Bool                 ecore_x_dnd_drop(void);
1321 EAPI void                      ecore_x_dnd_send_status(Eina_Bool will_accept, Eina_Bool suppress, Ecore_X_Rectangle rectangle, Ecore_X_Atom action);
1322 EAPI void                      ecore_x_dnd_send_finished(void);
1323 EAPI void                      ecore_x_dnd_source_action_set(Ecore_X_Atom action);
1324 EAPI Ecore_X_Atom              ecore_x_dnd_source_action_get(void);
1325 EAPI void                      ecore_x_dnd_callback_pos_update_set(void (*cb)(void *, Ecore_X_Xdnd_Position *data), const void *data);
1326
1327 EAPI Ecore_X_Window            ecore_x_window_new(Ecore_X_Window parent, int x, int y, int w, int h);
1328 EAPI Ecore_X_Window            ecore_x_window_override_new(Ecore_X_Window parent, int x, int y, int w, int h);
1329 EAPI int                       ecore_x_window_argb_get(Ecore_X_Window win);
1330 EAPI Ecore_X_Window            ecore_x_window_manager_argb_new(Ecore_X_Window parent, int x, int y, int w, int h);
1331 EAPI Ecore_X_Window            ecore_x_window_argb_new(Ecore_X_Window parent, int x, int y, int w, int h);
1332 EAPI Ecore_X_Window            ecore_x_window_override_argb_new(Ecore_X_Window parent, int x, int y, int w, int h);
1333 EAPI Ecore_X_Window            ecore_x_window_input_new(Ecore_X_Window parent, int x, int y, int w, int h);
1334 EAPI void                      ecore_x_window_configure(Ecore_X_Window win, Ecore_X_Window_Configure_Mask mask, int x, int y, int w, int h, int border_width, Ecore_X_Window sibling, int stack_mode);
1335 EAPI void                      ecore_x_window_cursor_set(Ecore_X_Window win, Ecore_X_Cursor c);
1336 EAPI void                      ecore_x_window_free(Ecore_X_Window win);
1337 EAPI void                      ecore_x_window_ignore_set(Ecore_X_Window win, int ignore);
1338 EAPI Ecore_X_Window           *ecore_x_window_ignore_list(int *num);
1339
1340 EAPI void                      ecore_x_window_delete_request_send(Ecore_X_Window win);
1341 EAPI void                      ecore_x_window_show(Ecore_X_Window win);
1342 EAPI void                      ecore_x_window_hide(Ecore_X_Window win);
1343 EAPI void                      ecore_x_window_move(Ecore_X_Window win, int x, int y);
1344 EAPI void                      ecore_x_window_resize(Ecore_X_Window win, int w, int h);
1345 EAPI void                      ecore_x_window_move_resize(Ecore_X_Window win, int x, int y, int w, int h);
1346 EAPI void                      ecore_x_window_focus(Ecore_X_Window win);
1347 EAPI void                      ecore_x_window_focus_at_time(Ecore_X_Window win, Ecore_X_Time t);
1348 EAPI Ecore_X_Window            ecore_x_window_focus_get(void);
1349 EAPI void                      ecore_x_window_raise(Ecore_X_Window win);
1350 EAPI void                      ecore_x_window_lower(Ecore_X_Window win);
1351 EAPI void                      ecore_x_window_reparent(Ecore_X_Window win, Ecore_X_Window new_parent, int x, int y);
1352 EAPI void                      ecore_x_window_size_get(Ecore_X_Window win, int *w, int *h);
1353 EAPI void                      ecore_x_window_geometry_get(Ecore_X_Window win, int *x, int *y, int *w, int *h);
1354 EAPI int                       ecore_x_window_border_width_get(Ecore_X_Window win);
1355 EAPI void                      ecore_x_window_border_width_set(Ecore_X_Window win, int width);
1356 EAPI int                       ecore_x_window_depth_get(Ecore_X_Window win);
1357 EAPI void                      ecore_x_window_cursor_show(Ecore_X_Window win, Eina_Bool show);
1358 EAPI void                      ecore_x_window_defaults_set(Ecore_X_Window win);
1359 EAPI int                       ecore_x_window_visible_get(Ecore_X_Window win);
1360 EAPI Ecore_X_Window            ecore_x_window_shadow_tree_at_xy_with_skip_get(Ecore_X_Window base, int x, int y, Ecore_X_Window *skip, int skip_num);
1361 EAPI Ecore_X_Window            ecore_x_window_shadow_parent_get(Ecore_X_Window root, Ecore_X_Window win);
1362 EAPI void                      ecore_x_window_shadow_tree_flush(void);
1363 EAPI Ecore_X_Window            ecore_x_window_root_get(Ecore_X_Window win);
1364 EAPI Ecore_X_Window            ecore_x_window_at_xy_get(int x, int y);
1365 EAPI Ecore_X_Window            ecore_x_window_at_xy_with_skip_get(int x, int y, Ecore_X_Window *skip, int skip_num);
1366 EAPI Ecore_X_Window            ecore_x_window_at_xy_begin_get(Ecore_X_Window begin, int x, int y);
1367 EAPI Ecore_X_Window            ecore_x_window_parent_get(Ecore_X_Window win);
1368
1369 EAPI void                      ecore_x_window_background_color_set(Ecore_X_Window win, unsigned short r, unsigned short g, unsigned short b);
1370 EAPI void                      ecore_x_window_gravity_set(Ecore_X_Window win, Ecore_X_Gravity grav);
1371 EAPI void                      ecore_x_window_pixel_gravity_set(Ecore_X_Window win, Ecore_X_Gravity grav);
1372 EAPI void                      ecore_x_window_pixmap_set(Ecore_X_Window win, Ecore_X_Pixmap pmap);
1373 EAPI void                      ecore_x_window_area_clear(Ecore_X_Window win, int x, int y, int w, int h);
1374 EAPI void                      ecore_x_window_area_expose(Ecore_X_Window win, int x, int y, int w, int h);
1375 EAPI void                      ecore_x_window_override_set(Ecore_X_Window win, Eina_Bool override);
1376
1377 EAPI void                      ecore_x_window_prop_card32_set(Ecore_X_Window win, Ecore_X_Atom atom, unsigned int *val, unsigned int num);
1378 EAPI int                       ecore_x_window_prop_card32_get(Ecore_X_Window win, Ecore_X_Atom atom, unsigned int *val, unsigned int len);
1379 EAPI int                       ecore_x_window_prop_card32_list_get(Ecore_X_Window win, Ecore_X_Atom atom, unsigned int **plst);
1380
1381 EAPI void                      ecore_x_window_prop_xid_set(Ecore_X_Window win, Ecore_X_Atom atom, Ecore_X_Atom type, Ecore_X_ID *lst, unsigned int num);
1382 EAPI int                       ecore_x_window_prop_xid_get(Ecore_X_Window win, Ecore_X_Atom atom, Ecore_X_Atom type, Ecore_X_ID *lst, unsigned int len);
1383 EAPI int                       ecore_x_window_prop_xid_list_get(Ecore_X_Window win, Ecore_X_Atom atom, Ecore_X_Atom type, Ecore_X_ID **plst);
1384 EAPI void                      ecore_x_window_prop_xid_list_change(Ecore_X_Window win, Ecore_X_Atom atom, Ecore_X_Atom type, Ecore_X_ID item, int op);
1385 EAPI void                      ecore_x_window_prop_atom_set(Ecore_X_Window win, Ecore_X_Atom atom, Ecore_X_Atom *val, unsigned int num);
1386 EAPI int                       ecore_x_window_prop_atom_get(Ecore_X_Window win, Ecore_X_Atom atom, Ecore_X_Atom *val, unsigned int len);
1387 EAPI int                       ecore_x_window_prop_atom_list_get(Ecore_X_Window win, Ecore_X_Atom atom, Ecore_X_Atom **plst);
1388 EAPI void                      ecore_x_window_prop_atom_list_change(Ecore_X_Window win, Ecore_X_Atom atom, Ecore_X_Atom item, int op);
1389 EAPI void                      ecore_x_window_prop_window_set(Ecore_X_Window win, Ecore_X_Atom atom, Ecore_X_Window *val, unsigned int num);
1390 EAPI int                       ecore_x_window_prop_window_get(Ecore_X_Window win, Ecore_X_Atom atom, Ecore_X_Window *val, unsigned int len);
1391 EAPI int                       ecore_x_window_prop_window_list_get(Ecore_X_Window win, Ecore_X_Atom atom, Ecore_X_Window **plst);
1392
1393 EAPI Ecore_X_Atom              ecore_x_window_prop_any_type(void);
1394 EAPI void                      ecore_x_window_prop_property_set(Ecore_X_Window win, Ecore_X_Atom type, Ecore_X_Atom format, int size, void *data, int number);
1395 EAPI int                       ecore_x_window_prop_property_get(Ecore_X_Window win, Ecore_X_Atom property, Ecore_X_Atom type, int size, unsigned char **data, int *num);
1396 EAPI void                      ecore_x_window_prop_property_del(Ecore_X_Window win, Ecore_X_Atom property);
1397 EAPI Ecore_X_Atom             *ecore_x_window_prop_list(Ecore_X_Window win, int *num_ret);
1398 EAPI void                      ecore_x_window_prop_string_set(Ecore_X_Window win, Ecore_X_Atom type, const char *str);
1399 EAPI char                     *ecore_x_window_prop_string_get(Ecore_X_Window win, Ecore_X_Atom type);
1400 EAPI Eina_Bool                 ecore_x_window_prop_protocol_isset(Ecore_X_Window win, Ecore_X_WM_Protocol protocol);
1401 EAPI Ecore_X_WM_Protocol      *ecore_x_window_prop_protocol_list_get(Ecore_X_Window win, int *num_ret);
1402
1403 EAPI void                      ecore_x_window_shape_mask_set(Ecore_X_Window win, Ecore_X_Pixmap mask);
1404 EAPI void                      ecore_x_window_shape_window_set(Ecore_X_Window win, Ecore_X_Window shape_win);
1405 EAPI void                      ecore_x_window_shape_window_set_xy(Ecore_X_Window win, Ecore_X_Window shape_win, int x, int y);
1406 EAPI void                      ecore_x_window_shape_rectangle_set(Ecore_X_Window win, int x, int y, int w, int h);
1407 EAPI void                      ecore_x_window_shape_rectangles_set(Ecore_X_Window win, Ecore_X_Rectangle *rects, int num);
1408 EAPI void                      ecore_x_window_shape_input_rectangle_set(Ecore_X_Window win, int x, int y, int w, int h);
1409 EAPI void                      ecore_x_window_shape_input_rectangles_set(Ecore_X_Window win, Ecore_X_Rectangle *rects, int num);
1410 EAPI void                      ecore_x_window_shape_input_rectangle_add(Ecore_X_Window win, int x, int y, int w, int h);
1411 EAPI void                      ecore_x_window_shape_rectangle_subtract(Ecore_X_Window win, int x, int y, int w, int h);
1412 EAPI void                      ecore_x_window_shape_input_rectangle_subtract(Ecore_X_Window win, int x, int y, int w, int h);
1413 EAPI void                      ecore_x_window_shape_input_window_set_xy(Ecore_X_Window win, Ecore_X_Window shape_win, int x, int y);
1414 EAPI void                      ecore_x_window_shape_input_window_set(Ecore_X_Window win, Ecore_X_Window shape_win);
1415 EAPI void                      ecore_x_window_shape_window_add(Ecore_X_Window win, Ecore_X_Window shape_win);
1416 EAPI void                      ecore_x_window_shape_window_add_xy(Ecore_X_Window win, Ecore_X_Window shape_win, int x, int y);
1417 EAPI void                      ecore_x_window_shape_input_window_add_xy(Ecore_X_Window win, Ecore_X_Window shape_win, int x, int y);
1418 EAPI void                      ecore_x_window_shape_rectangle_add(Ecore_X_Window win, int x, int y, int w, int h);
1419 EAPI void                      ecore_x_window_shape_rectangle_clip(Ecore_X_Window win, int x, int y, int w, int h);
1420 EAPI void                      ecore_x_window_shape_input_rectangle_clip(Ecore_X_Window win, int x, int y, int w, int h);
1421 EAPI void                      ecore_x_window_shape_rectangles_add(Ecore_X_Window win, Ecore_X_Rectangle *rects, int num);
1422 EAPI void                      ecore_x_window_shape_input_rectangles_add(Ecore_X_Window win, Ecore_X_Rectangle *rects, int num);
1423 EAPI Ecore_X_Rectangle        *ecore_x_window_shape_rectangles_get(Ecore_X_Window win, int *num_ret);
1424 EAPI Ecore_X_Rectangle        *ecore_x_window_shape_input_rectangles_get(Ecore_X_Window win, int *num_ret);
1425 EAPI void                      ecore_x_window_shape_events_select(Ecore_X_Window win, Eina_Bool on);
1426 EAPI void                      ecore_x_window_shape_input_mask_set(Ecore_X_Window win, Ecore_X_Pixmap mask);
1427
1428 EAPI Ecore_X_Pixmap            ecore_x_pixmap_new(Ecore_X_Window win, int w, int h, int dep);
1429 EAPI void                      ecore_x_pixmap_free(Ecore_X_Pixmap pmap);
1430 EAPI void                      ecore_x_pixmap_paste(Ecore_X_Pixmap pmap, Ecore_X_Drawable dest, Ecore_X_GC gc, int sx, int sy, int w, int h, int dx, int dy);
1431 EAPI void                      ecore_x_pixmap_geometry_get(Ecore_X_Pixmap pmap, int *x, int *y, int *w, int *h);
1432 EAPI int                       ecore_x_pixmap_depth_get(Ecore_X_Pixmap pmap);
1433
1434 EAPI Ecore_X_GC                ecore_x_gc_new(Ecore_X_Drawable draw, Ecore_X_GC_Value_Mask value_mask, const unsigned int *value_list);
1435 EAPI void                      ecore_x_gc_free(Ecore_X_GC gc);
1436 EAPI void                      ecore_x_gc_foreground_set(Ecore_X_GC gc, unsigned long foreground);
1437 EAPI void                      ecore_x_gc_background_set(Ecore_X_GC gc, unsigned long background);
1438
1439 EAPI Eina_Bool                 ecore_x_client_message32_send(Ecore_X_Window win, Ecore_X_Atom type, Ecore_X_Event_Mask mask, long d0, long d1, long d2, long d3, long d4);
1440 EAPI Eina_Bool                 ecore_x_client_message8_send(Ecore_X_Window win, Ecore_X_Atom type, const void *data, int len);
1441 EAPI Eina_Bool                 ecore_x_mouse_move_send(Ecore_X_Window win, int x, int y);
1442 EAPI Eina_Bool                 ecore_x_mouse_down_send(Ecore_X_Window win, int x, int y, int b);
1443 EAPI Eina_Bool                 ecore_x_mouse_up_send(Ecore_X_Window win, int x, int y, int b);
1444 EAPI Eina_Bool                 ecore_x_mouse_in_send(Ecore_X_Window win, int x, int y);
1445 EAPI Eina_Bool                 ecore_x_mouse_out_send(Ecore_X_Window win, int x, int y);
1446
1447 EAPI void                      ecore_x_drawable_geometry_get(Ecore_X_Drawable d, int *x, int *y, int *w, int *h);
1448 EAPI int                       ecore_x_drawable_border_width_get(Ecore_X_Drawable d);
1449 EAPI int                       ecore_x_drawable_depth_get(Ecore_X_Drawable d);
1450 EAPI void                      ecore_x_drawable_rectangle_fill(Ecore_X_Drawable d, Ecore_X_GC gc, int x, int y, int width, int height);
1451
1452 EAPI Eina_Bool                 ecore_x_cursor_color_supported_get(void);
1453 EAPI Ecore_X_Cursor            ecore_x_cursor_new(Ecore_X_Window win, int *pixels, int w, int h, int hot_x, int hot_y);
1454 EAPI void                      ecore_x_cursor_free(Ecore_X_Cursor c);
1455 EAPI Ecore_X_Cursor            ecore_x_cursor_shape_get(int shape);
1456 EAPI void                      ecore_x_cursor_size_set(int size);
1457 EAPI int                       ecore_x_cursor_size_get(void);
1458
1459 /* FIXME: these funcs need categorising */
1460 EAPI Ecore_X_Window           *ecore_x_window_root_list(int *num_ret);
1461 EAPI Ecore_X_Window            ecore_x_window_root_first_get(void);
1462 EAPI Eina_Bool                 ecore_x_window_manage(Ecore_X_Window win);
1463 EAPI void                      ecore_x_window_container_manage(Ecore_X_Window win);
1464 EAPI void                      ecore_x_window_client_manage(Ecore_X_Window win);
1465 EAPI void                      ecore_x_window_sniff(Ecore_X_Window win);
1466 EAPI void                      ecore_x_window_client_sniff(Ecore_X_Window win);
1467
1468 EAPI Ecore_X_Atom              ecore_x_atom_get(const char *name);
1469 EAPI void                      ecore_x_atoms_get(const char **names, int num, Ecore_X_Atom *atoms);
1470 EAPI char                     *ecore_x_atom_name_get(Ecore_X_Atom atom);
1471
1472 EAPI void                      ecore_x_icccm_init(void);
1473 EAPI void                      ecore_x_icccm_state_set(Ecore_X_Window win, Ecore_X_Window_State_Hint state);
1474 EAPI Ecore_X_Window_State_Hint ecore_x_icccm_state_get(Ecore_X_Window win);
1475 EAPI void                      ecore_x_icccm_delete_window_send(Ecore_X_Window win, Ecore_X_Time t);
1476 EAPI void                      ecore_x_icccm_take_focus_send(Ecore_X_Window win, Ecore_X_Time t);
1477 EAPI void                      ecore_x_icccm_save_yourself_send(Ecore_X_Window win, Ecore_X_Time t);
1478 EAPI void                      ecore_x_icccm_move_resize_send(Ecore_X_Window win, int x, int y, int w, int h);
1479 EAPI void                      ecore_x_icccm_hints_set(Ecore_X_Window win, Eina_Bool accepts_focus, Ecore_X_Window_State_Hint initial_state, Ecore_X_Pixmap icon_pixmap, Ecore_X_Pixmap icon_mask, Ecore_X_Window icon_window, Ecore_X_Window window_group, Eina_Bool is_urgent);
1480 EAPI Eina_Bool                 ecore_x_icccm_hints_get(Ecore_X_Window win, Eina_Bool *accepts_focus, Ecore_X_Window_State_Hint *initial_state, Ecore_X_Pixmap *icon_pixmap, Ecore_X_Pixmap *icon_mask, Ecore_X_Window *icon_window, Ecore_X_Window *window_group, Eina_Bool *is_urgent);
1481 EAPI void                      ecore_x_icccm_size_pos_hints_set(Ecore_X_Window win, Eina_Bool request_pos, Ecore_X_Gravity gravity, int min_w, int min_h, int max_w, int max_h, int base_w, int base_h, int step_x, int step_y, double min_aspect, double max_aspect);
1482 EAPI Eina_Bool                 ecore_x_icccm_size_pos_hints_get(Ecore_X_Window win, Eina_Bool *request_pos, Ecore_X_Gravity *gravity, int *min_w, int *min_h, int *max_w, int *max_h, int *base_w, int *base_h, int *step_x, int *step_y, double *min_aspect, double *max_aspect);
1483 EAPI void                      ecore_x_icccm_title_set(Ecore_X_Window win, const char *t);
1484 EAPI char                     *ecore_x_icccm_title_get(Ecore_X_Window win);
1485 EAPI void                      ecore_x_icccm_protocol_atoms_set(Ecore_X_Window win, Ecore_X_Atom *protos, int num);
1486 EAPI void                      ecore_x_icccm_protocol_set(Ecore_X_Window win, Ecore_X_WM_Protocol protocol, Eina_Bool on);
1487 EAPI Eina_Bool                 ecore_x_icccm_protocol_isset(Ecore_X_Window win, Ecore_X_WM_Protocol protocol);
1488 EAPI void                      ecore_x_icccm_name_class_set(Ecore_X_Window win, const char *n, const char *c);
1489 EAPI void                      ecore_x_icccm_name_class_get(Ecore_X_Window win, char **n, char **c);
1490 EAPI char                     *ecore_x_icccm_client_machine_get(Ecore_X_Window win);
1491 EAPI void                      ecore_x_icccm_command_set(Ecore_X_Window win, int argc, char **argv);
1492 EAPI void                      ecore_x_icccm_command_get(Ecore_X_Window win, int *argc, char ***argv);
1493 EAPI char                     *ecore_x_icccm_icon_name_get(Ecore_X_Window win);
1494 EAPI void                      ecore_x_icccm_icon_name_set(Ecore_X_Window win, const char *t);
1495 EAPI void                      ecore_x_icccm_colormap_window_set(Ecore_X_Window win, Ecore_X_Window subwin);
1496 EAPI void                      ecore_x_icccm_colormap_window_unset(Ecore_X_Window win, Ecore_X_Window subwin);
1497 EAPI void                      ecore_x_icccm_transient_for_set(Ecore_X_Window win, Ecore_X_Window forwin);
1498 EAPI void                      ecore_x_icccm_transient_for_unset(Ecore_X_Window win);
1499 EAPI Ecore_X_Window            ecore_x_icccm_transient_for_get(Ecore_X_Window win);
1500 EAPI void                      ecore_x_icccm_window_role_set(Ecore_X_Window win, const char *role);
1501 EAPI char                     *ecore_x_icccm_window_role_get(Ecore_X_Window win);
1502 EAPI void                      ecore_x_icccm_client_leader_set(Ecore_X_Window win, Ecore_X_Window l);
1503 EAPI Ecore_X_Window            ecore_x_icccm_client_leader_get(Ecore_X_Window win);
1504 EAPI void                      ecore_x_icccm_iconic_request_send(Ecore_X_Window win, Ecore_X_Window root);
1505
1506 typedef enum _Ecore_X_MWM_Hint_Func
1507 {
1508    ECORE_X_MWM_HINT_FUNC_ALL = (1 << 0),
1509    ECORE_X_MWM_HINT_FUNC_RESIZE = (1 << 1),
1510    ECORE_X_MWM_HINT_FUNC_MOVE = (1 << 2),
1511    ECORE_X_MWM_HINT_FUNC_MINIMIZE = (1 << 3),
1512    ECORE_X_MWM_HINT_FUNC_MAXIMIZE = (1 << 4),
1513    ECORE_X_MWM_HINT_FUNC_CLOSE = (1 << 5)
1514 } Ecore_X_MWM_Hint_Func;
1515
1516 typedef enum _Ecore_X_MWM_Hint_Decor
1517 {
1518    ECORE_X_MWM_HINT_DECOR_ALL = (1 << 0),
1519    ECORE_X_MWM_HINT_DECOR_BORDER = (1 << 1),
1520    ECORE_X_MWM_HINT_DECOR_RESIZEH = (1 << 2),
1521    ECORE_X_MWM_HINT_DECOR_TITLE = (1 << 3),
1522    ECORE_X_MWM_HINT_DECOR_MENU = (1 << 4),
1523    ECORE_X_MWM_HINT_DECOR_MINIMIZE = (1 << 5),
1524    ECORE_X_MWM_HINT_DECOR_MAXIMIZE = (1 << 6)
1525 } Ecore_X_MWM_Hint_Decor;
1526
1527 typedef enum _Ecore_X_MWM_Hint_Input
1528 {
1529    ECORE_X_MWM_HINT_INPUT_MODELESS = 0,
1530    ECORE_X_MWM_HINT_INPUT_PRIMARY_APPLICATION_MODAL = 1,
1531    ECORE_X_MWM_HINT_INPUT_SYSTEM_MODAL = 2,
1532    ECORE_X_MWM_HINT_INPUT_FULL_APPLICATION_MODAL = 3
1533 } Ecore_X_MWM_Hint_Input;
1534
1535 EAPI Eina_Bool                       ecore_x_mwm_hints_get(Ecore_X_Window win, Ecore_X_MWM_Hint_Func *fhint, Ecore_X_MWM_Hint_Decor *dhint, Ecore_X_MWM_Hint_Input *ihint);
1536 EAPI void                            ecore_x_mwm_borderless_set(Ecore_X_Window win, Eina_Bool borderless);
1537
1538 /* netwm */
1539 EAPI void                            ecore_x_netwm_init(void);
1540 EAPI void                            ecore_x_netwm_shutdown(void);
1541 EAPI void                            ecore_x_netwm_wm_identify(Ecore_X_Window root, Ecore_X_Window check, const char *wm_name);
1542 EAPI void                            ecore_x_netwm_supported_set(Ecore_X_Window root, Ecore_X_Atom *supported, int num);
1543 EAPI Eina_Bool                       ecore_x_netwm_supported_get(Ecore_X_Window root, Ecore_X_Atom **supported, int *num);
1544 EAPI void                            ecore_x_netwm_desk_count_set(Ecore_X_Window root, unsigned int n_desks);
1545 EAPI void                            ecore_x_netwm_desk_roots_set(Ecore_X_Window root, Ecore_X_Window *vroots, unsigned int n_desks);
1546 EAPI void                            ecore_x_netwm_desk_names_set(Ecore_X_Window root, const char **names, unsigned int n_desks);
1547 EAPI void                            ecore_x_netwm_desk_size_set(Ecore_X_Window root, unsigned int width, unsigned int height);
1548 EAPI void                            ecore_x_netwm_desk_workareas_set(Ecore_X_Window root, unsigned int *areas, unsigned int n_desks);
1549 EAPI unsigned int                   *ecore_x_netwm_desk_workareas_get(Ecore_X_Window root, unsigned int *n_desks);
1550 EAPI void                            ecore_x_netwm_desk_current_set(Ecore_X_Window root, unsigned int desk);
1551 EAPI void                            ecore_x_netwm_desk_viewports_set(Ecore_X_Window root, unsigned int *origins, unsigned int n_desks);
1552 EAPI void                            ecore_x_netwm_desk_layout_set(Ecore_X_Window root, int orientation, int columns, int rows, int starting_corner);
1553 EAPI void                            ecore_x_netwm_showing_desktop_set(Ecore_X_Window root, Eina_Bool on);
1554 EAPI void                            ecore_x_netwm_client_list_set(Ecore_X_Window root, Ecore_X_Window *p_clients, unsigned int n_clients);
1555 EAPI void                            ecore_x_netwm_client_list_stacking_set(Ecore_X_Window root, Ecore_X_Window *p_clients, unsigned int n_clients);
1556 EAPI void                            ecore_x_netwm_client_active_set(Ecore_X_Window root, Ecore_X_Window win);
1557 EAPI void                            ecore_x_netwm_client_active_request(Ecore_X_Window root, Ecore_X_Window win, int type, Ecore_X_Window current_win);
1558 EAPI void                            ecore_x_netwm_name_set(Ecore_X_Window win, const char *name);
1559 EAPI int                             ecore_x_netwm_name_get(Ecore_X_Window win, char **name);
1560 EAPI void                            ecore_x_netwm_startup_id_set(Ecore_X_Window win, const char *id);
1561 EAPI int                             ecore_x_netwm_startup_id_get(Ecore_X_Window win, char **id);
1562 EAPI void                            ecore_x_netwm_visible_name_set(Ecore_X_Window win, const char *name);
1563 EAPI int                             ecore_x_netwm_visible_name_get(Ecore_X_Window win, char **name);
1564 EAPI void                            ecore_x_netwm_icon_name_set(Ecore_X_Window win, const char *name);
1565 EAPI int                             ecore_x_netwm_icon_name_get(Ecore_X_Window win, char **name);
1566 EAPI void                            ecore_x_netwm_visible_icon_name_set(Ecore_X_Window win, const char *name);
1567 EAPI int                             ecore_x_netwm_visible_icon_name_get(Ecore_X_Window win, char **name);
1568 EAPI void                            ecore_x_netwm_desktop_set(Ecore_X_Window win, unsigned int desk);
1569 EAPI Eina_Bool                       ecore_x_netwm_desktop_get(Ecore_X_Window win, unsigned int *desk);
1570 EAPI void                            ecore_x_netwm_strut_set(Ecore_X_Window win, int left, int right, int top, int bottom);
1571 EAPI Eina_Bool                       ecore_x_netwm_strut_get(Ecore_X_Window win, int *left, int *right, int *top, int *bottom);
1572 EAPI void                            ecore_x_netwm_strut_partial_set(Ecore_X_Window win, int left, int right, int top, int bottom, int left_start_y, int left_end_y, int right_start_y, int right_end_y, int top_start_x, int top_end_x, int bottom_start_x, int bottom_end_x);
1573 EAPI Eina_Bool                       ecore_x_netwm_strut_partial_get(Ecore_X_Window win, int *left, int *right, int *top, int *bottom, int *left_start_y, int *left_end_y, int *right_start_y, int *right_end_y, int *top_start_x, int *top_end_x, int *bottom_start_x, int *bottom_end_x);
1574
1575 EAPI void                            ecore_x_netwm_icons_set(Ecore_X_Window win, Ecore_X_Icon *icon, int num);
1576
1577 EAPI Eina_Bool                       ecore_x_netwm_icons_get(Ecore_X_Window win, Ecore_X_Icon **icon, int *num);
1578 EAPI void                            ecore_x_netwm_icon_geometry_set(Ecore_X_Window win, int x, int y, int width, int height);
1579 EAPI Eina_Bool                       ecore_x_netwm_icon_geometry_get(Ecore_X_Window win, int *x, int *y, int *width, int *height);
1580 EAPI void                            ecore_x_netwm_pid_set(Ecore_X_Window win, int pid);
1581 EAPI Eina_Bool                       ecore_x_netwm_pid_get(Ecore_X_Window win, int *pid);
1582 EAPI void                            ecore_x_netwm_handled_icons_set(Ecore_X_Window win);
1583 EAPI Eina_Bool                       ecore_x_netwm_handled_icons_get(Ecore_X_Window win);
1584 EAPI void                            ecore_x_netwm_user_time_set(Ecore_X_Window win, unsigned int time);
1585 EAPI Eina_Bool                       ecore_x_netwm_user_time_get(Ecore_X_Window win, unsigned int *time);
1586 EAPI void                            ecore_x_netwm_window_state_set(Ecore_X_Window win, Ecore_X_Window_State *state, unsigned int num);
1587 EAPI Eina_Bool                       ecore_x_netwm_window_state_get(Ecore_X_Window win, Ecore_X_Window_State **state, unsigned int *num);
1588 EAPI void                            ecore_x_netwm_window_type_set(Ecore_X_Window win, Ecore_X_Window_Type type);
1589 EAPI Eina_Bool                       ecore_x_netwm_window_type_get(Ecore_X_Window win, Ecore_X_Window_Type *type);
1590 EAPI int                             ecore_x_netwm_window_types_get(Ecore_X_Window win, Ecore_X_Window_Type **types);
1591 EAPI Eina_Bool                       ecore_x_netwm_allowed_action_isset(Ecore_X_Window win, Ecore_X_Action action);
1592 EAPI void                            ecore_x_netwm_allowed_action_set(Ecore_X_Window win, Ecore_X_Action *action, unsigned int num);
1593 EAPI Eina_Bool                       ecore_x_netwm_allowed_action_get(Ecore_X_Window win, Ecore_X_Action **action, unsigned int *num);
1594 EAPI void                            ecore_x_netwm_opacity_set(Ecore_X_Window win, unsigned int opacity);
1595 EAPI Eina_Bool                       ecore_x_netwm_opacity_get(Ecore_X_Window win, unsigned int *opacity);
1596 EAPI void                            ecore_x_netwm_frame_size_set(Ecore_X_Window win, int fl, int fr, int ft, int fb);
1597 EAPI Eina_Bool                       ecore_x_netwm_frame_size_get(Ecore_X_Window win, int *fl, int *fr, int *ft, int *fb);
1598 EAPI Eina_Bool                       ecore_x_netwm_sync_counter_get(Ecore_X_Window win, Ecore_X_Sync_Counter *counter);
1599 EAPI void                            ecore_x_netwm_ping_send(Ecore_X_Window win);
1600 EAPI void                            ecore_x_netwm_sync_request_send(Ecore_X_Window win, unsigned int serial);
1601 EAPI void                            ecore_x_netwm_state_request_send(Ecore_X_Window win, Ecore_X_Window root, Ecore_X_Window_State s1, Ecore_X_Window_State s2, Eina_Bool set);
1602 EAPI void                            ecore_x_netwm_desktop_request_send(Ecore_X_Window win, Ecore_X_Window root, unsigned int desktop);
1603 EAPI void                            ecore_x_netwm_moveresize_request_send(Ecore_X_Window win, int x, int y, Ecore_X_Netwm_Direction direction, unsigned int button);
1604
1605 EAPI void                            ecore_x_e_init(void);
1606 EAPI void                            ecore_x_e_frame_size_set(Ecore_X_Window win, int fl, int fr, int ft, int fb);
1607 EAPI void                            ecore_x_e_virtual_keyboard_set(Ecore_X_Window win, unsigned int is_keyboard);
1608 EAPI Eina_Bool                       ecore_x_e_virtual_keyboard_get(Ecore_X_Window win);
1609 EAPI void                            ecore_x_e_virtual_keyboard_state_set(Ecore_X_Window win, Ecore_X_Virtual_Keyboard_State state);
1610 EAPI Ecore_X_Virtual_Keyboard_State  ecore_x_e_virtual_keyboard_state_get(Ecore_X_Window win);
1611 EAPI void                            ecore_x_e_virtual_keyboard_state_send(Ecore_X_Window win, Ecore_X_Virtual_Keyboard_State state);
1612
1613 /* Illume functions */
1614 EAPI void                            ecore_x_e_illume_zone_set(Ecore_X_Window win, Ecore_X_Window zone);
1615 EAPI Ecore_X_Window                  ecore_x_e_illume_zone_get(Ecore_X_Window win);
1616 EAPI void                            ecore_x_e_illume_zone_list_set(Ecore_X_Window win, Ecore_X_Window *zones, unsigned int n_zones);
1617 EAPI void                            ecore_x_e_illume_conformant_set(Ecore_X_Window win, unsigned int is_conformant);
1618 EAPI Eina_Bool                       ecore_x_e_illume_conformant_get(Ecore_X_Window win);
1619 EAPI void                            ecore_x_e_illume_mode_set(Ecore_X_Window win, Ecore_X_Illume_Mode mode);
1620 EAPI Ecore_X_Illume_Mode             ecore_x_e_illume_mode_get(Ecore_X_Window win);
1621 EAPI void                            ecore_x_e_illume_mode_send(Ecore_X_Window win, Ecore_X_Illume_Mode mode);
1622 EAPI void                            ecore_x_e_illume_focus_back_send(Ecore_X_Window win);
1623 EAPI void                            ecore_x_e_illume_focus_forward_send(Ecore_X_Window win);
1624 EAPI void                            ecore_x_e_illume_focus_home_send(Ecore_X_Window win);
1625 EAPI void                            ecore_x_e_illume_close_send(Ecore_X_Window win);
1626 EAPI void                            ecore_x_e_illume_home_new_send(Ecore_X_Window win);
1627 EAPI void                            ecore_x_e_illume_home_del_send(Ecore_X_Window win);
1628 EAPI void                            ecore_x_e_illume_access_action_next_send(Ecore_X_Window win);
1629 EAPI void                            ecore_x_e_illume_access_action_prev_send(Ecore_X_Window win);
1630 EAPI void                            ecore_x_e_illume_access_action_activate_send(Ecore_X_Window win);
1631 EAPI void                            ecore_x_e_illume_access_action_read_send(Ecore_X_Window win);
1632 EAPI void                            ecore_x_e_illume_access_action_read_next_send(Ecore_X_Window win);
1633 EAPI void                            ecore_x_e_illume_access_action_read_prev_send(Ecore_X_Window win);
1634 EAPI void                            ecore_x_e_illume_access_action_up_send(Ecore_X_Window win);
1635 EAPI void                            ecore_x_e_illume_access_action_down_send(Ecore_X_Window win);
1636
1637 EAPI void                            ecore_x_e_illume_drag_set(Ecore_X_Window win, unsigned int drag);
1638 EAPI Eina_Bool                       ecore_x_e_illume_drag_get(Ecore_X_Window win);
1639 EAPI void                            ecore_x_e_illume_drag_locked_set(Ecore_X_Window win, unsigned int is_locked);
1640 EAPI Eina_Bool                       ecore_x_e_illume_drag_locked_get(Ecore_X_Window win);
1641 EAPI void                            ecore_x_e_illume_drag_start_send(Ecore_X_Window win);
1642 EAPI void                            ecore_x_e_illume_drag_end_send(Ecore_X_Window win);
1643 EAPI void                            ecore_x_e_illume_indicator_geometry_set(Ecore_X_Window win, int x, int y, int w, int h);
1644 EAPI Eina_Bool                       ecore_x_e_illume_indicator_geometry_get(Ecore_X_Window win, int *x, int *y, int *w, int *h);
1645 EAPI void                            ecore_x_e_illume_softkey_geometry_set(Ecore_X_Window win, int x, int y, int w, int h);
1646 EAPI Eina_Bool                       ecore_x_e_illume_softkey_geometry_get(Ecore_X_Window win, int *x, int *y, int *w, int *h);
1647 EAPI void                            ecore_x_e_illume_keyboard_geometry_set(Ecore_X_Window win, int x, int y, int w, int h);
1648 EAPI Eina_Bool                       ecore_x_e_illume_keyboard_geometry_get(Ecore_X_Window win, int *x, int *y, int *w, int *h);
1649 EAPI void                            ecore_x_e_illume_quickpanel_set(Ecore_X_Window win, unsigned int is_quickpanel);
1650 EAPI Eina_Bool                       ecore_x_e_illume_quickpanel_get(Ecore_X_Window win);
1651 EAPI void                            ecore_x_e_illume_quickpanel_state_set(Ecore_X_Window win, Ecore_X_Illume_Quickpanel_State state);
1652 EAPI Ecore_X_Illume_Quickpanel_State ecore_x_e_illume_quickpanel_state_get(Ecore_X_Window win);
1653 EAPI void                            ecore_x_e_illume_quickpanel_state_send(Ecore_X_Window win, Ecore_X_Illume_Quickpanel_State state);
1654 EAPI void                            ecore_x_e_illume_quickpanel_state_toggle(Ecore_X_Window win);
1655 EAPI void                            ecore_x_e_illume_quickpanel_priority_major_set(Ecore_X_Window win, unsigned int priority);
1656 EAPI int                             ecore_x_e_illume_quickpanel_priority_major_get(Ecore_X_Window win);
1657 EAPI void                            ecore_x_e_illume_quickpanel_priority_minor_set(Ecore_X_Window win, unsigned int priority);
1658 EAPI int                             ecore_x_e_illume_quickpanel_priority_minor_get(Ecore_X_Window win);
1659 EAPI void                            ecore_x_e_illume_quickpanel_zone_set(Ecore_X_Window win, unsigned int zone);
1660 EAPI int                             ecore_x_e_illume_quickpanel_zone_get(Ecore_X_Window win);
1661 EAPI void                            ecore_x_e_illume_quickpanel_zone_request_send(Ecore_X_Window win);
1662 EAPI void                            ecore_x_e_illume_quickpanel_position_update_send(Ecore_X_Window win);
1663
1664 EAPI void                            ecore_x_e_illume_clipboard_state_set(Ecore_X_Window win, Ecore_X_Illume_Clipboard_State state);
1665
1666 EAPI Ecore_X_Illume_Clipboard_State  ecore_x_e_illume_clipboard_state_get(Ecore_X_Window win);
1667
1668 EAPI void                            ecore_x_e_illume_clipboard_geometry_set(Ecore_X_Window win, int x, int y, int w, int h);
1669 EAPI Eina_Bool                       ecore_x_e_illume_clipboard_geometry_get(Ecore_X_Window win, int *x, int *y, int *w, int *h);
1670 EAPI void                            ecore_x_e_comp_sync_counter_set(Ecore_X_Window win, Ecore_X_Sync_Counter counter);
1671 EAPI Ecore_X_Sync_Counter            ecore_x_e_comp_sync_counter_get(Ecore_X_Window win);
1672 EAPI void                            ecore_x_e_comp_sync_draw_done_send(Ecore_X_Window root, Ecore_X_Window win);
1673 EAPI void                            ecore_x_e_comp_sync_draw_size_done_send(Ecore_X_Window root, Ecore_X_Window win, int w, int h);
1674 EAPI void                            ecore_x_e_comp_sync_supported_set(Ecore_X_Window root, Eina_Bool enabled);
1675 EAPI Eina_Bool                       ecore_x_e_comp_sync_supported_get(Ecore_X_Window root);
1676 EAPI void                            ecore_x_e_comp_sync_begin_send(Ecore_X_Window win);
1677 EAPI void                            ecore_x_e_comp_sync_end_send(Ecore_X_Window win);
1678 EAPI void                            ecore_x_e_comp_sync_cancel_send(Ecore_X_Window win);
1679
1680 EAPI void                            ecore_x_e_comp_flush_send(Ecore_X_Window win);
1681 EAPI void                            ecore_x_e_comp_dump_send(Ecore_X_Window win);
1682 EAPI void                            ecore_x_e_comp_pixmap_set(Ecore_X_Window win, Ecore_X_Pixmap pixmap);
1683 EAPI Ecore_X_Pixmap                  ecore_x_e_comp_pixmap_get(Ecore_X_Window win);
1684
1685 EAPI char                            *ecore_x_e_window_profile_get(Ecore_X_Window win);
1686 EAPI void                             ecore_x_e_window_profile_set(Ecore_X_Window win, const char *profile);
1687 EAPI void                             ecore_x_e_window_profile_list_set(Ecore_X_Window  win, const char **profiles, unsigned int num_profiles);
1688 EAPI Eina_Bool                        ecore_x_e_window_profile_list_get(Ecore_X_Window win, const char ***profiles, int *ret_num);
1689
1690 EAPI Ecore_X_Sync_Alarm              ecore_x_sync_alarm_new(Ecore_X_Sync_Counter counter);
1691 EAPI Eina_Bool                       ecore_x_sync_alarm_free(Ecore_X_Sync_Alarm alarm);
1692 EAPI Eina_Bool                       ecore_x_sync_counter_query(Ecore_X_Sync_Counter counter, unsigned int *val);
1693 EAPI Ecore_X_Sync_Counter            ecore_x_sync_counter_new(int val);
1694 EAPI void                            ecore_x_sync_counter_free(Ecore_X_Sync_Counter counter);
1695 EAPI void                            ecore_x_sync_counter_inc(Ecore_X_Sync_Counter counter, int by);
1696 EAPI void                            ecore_x_sync_counter_val_wait(Ecore_X_Sync_Counter counter, int val);
1697
1698 EAPI void                            ecore_x_sync_counter_set(Ecore_X_Sync_Counter counter, int val);
1699 EAPI void                            ecore_x_sync_counter_2_set(Ecore_X_Sync_Counter counter, int val_hi, unsigned int val_lo);
1700 EAPI Eina_Bool                       ecore_x_sync_counter_2_query(Ecore_X_Sync_Counter counter, int *val_hi, unsigned int *val_lo);
1701
1702 EAPI int                             ecore_x_xinerama_screen_count_get(void);
1703 EAPI Eina_Bool                       ecore_x_xinerama_screen_geometry_get(int screen, int *x, int *y, int *w, int *h);
1704
1705 EAPI Eina_Bool                       ecore_x_screensaver_event_available_get(void);
1706 EAPI int                             ecore_x_screensaver_idle_time_get(void);
1707 EAPI void                            ecore_x_screensaver_set(int timeout, int interval, int prefer_blanking, int allow_exposures);
1708 EAPI void                            ecore_x_screensaver_timeout_set(int timeout);
1709 EAPI int                             ecore_x_screensaver_timeout_get(void);
1710 EAPI void                            ecore_x_screensaver_blank_set(int timeout);
1711 EAPI int                             ecore_x_screensaver_blank_get(void);
1712 EAPI void                            ecore_x_screensaver_expose_set(int timeout);
1713 EAPI int                             ecore_x_screensaver_expose_get(void);
1714 EAPI void                            ecore_x_screensaver_interval_set(int timeout);
1715 EAPI int                             ecore_x_screensaver_interval_get(void);
1716 EAPI void                            ecore_x_screensaver_event_listen_set(Eina_Bool on);
1717 EAPI Eina_Bool                       ecore_x_screensaver_custom_blanking_enable(void); /** @since 1.7 */
1718 EAPI Eina_Bool                       ecore_x_screensaver_custom_blanking_disable(void); /** @since 1.7 */
1719        
1720 /* FIXME: these funcs need categorising */
1721
1722 typedef struct _Ecore_X_Window_Attributes
1723 {
1724    Ecore_X_Window   root;
1725    int              x, y, w, h;
1726    int              border;
1727    int              depth;
1728    Eina_Bool        visible : 1;
1729    Eina_Bool        viewable : 1;
1730    Eina_Bool        override : 1;
1731    Eina_Bool        input_only : 1;
1732    Eina_Bool        save_under : 1;
1733    struct
1734    {
1735       Ecore_X_Event_Mask mine;
1736       Ecore_X_Event_Mask all;
1737       Ecore_X_Event_Mask no_propagate;
1738    } event_mask;
1739    Ecore_X_Gravity  window_gravity;
1740    Ecore_X_Gravity  pixel_gravity;
1741    Ecore_X_Colormap colormap;
1742    Ecore_X_Visual   visual;
1743    /* FIXME: missing
1744     * int map_installed;
1745     * Screen *screen;
1746     */
1747 } Ecore_X_Window_Attributes;
1748
1749 EAPI Eina_Bool        ecore_x_window_attributes_get(Ecore_X_Window win, Ecore_X_Window_Attributes *att_ret);
1750 EAPI void             ecore_x_window_save_set_add(Ecore_X_Window win);
1751 EAPI void             ecore_x_window_save_set_del(Ecore_X_Window win);
1752 EAPI Ecore_X_Window  *ecore_x_window_children_get(Ecore_X_Window win, int *num);
1753
1754 EAPI Eina_Bool        ecore_x_pointer_control_set(int accel_num, int accel_denom, int threshold);
1755 EAPI Eina_Bool        ecore_x_pointer_control_get(int *accel_num, int *accel_denom, int *threshold);
1756 EAPI Eina_Bool        ecore_x_pointer_mapping_set(unsigned char *map, int nmap);
1757 EAPI Eina_Bool        ecore_x_pointer_mapping_get(unsigned char *map, int nmap);
1758 EAPI Eina_Bool        ecore_x_pointer_grab(Ecore_X_Window win);
1759 EAPI Eina_Bool        ecore_x_pointer_confine_grab(Ecore_X_Window win);
1760 EAPI void             ecore_x_pointer_ungrab(void);
1761 EAPI Eina_Bool        ecore_x_pointer_warp(Ecore_X_Window win, int x, int y);
1762 EAPI Eina_Bool        ecore_x_keyboard_grab(Ecore_X_Window win);
1763 EAPI void             ecore_x_keyboard_ungrab(void);
1764 EAPI void             ecore_x_grab(void);
1765 EAPI void             ecore_x_ungrab(void);
1766 EAPI void             ecore_x_passive_grab_replay_func_set(Eina_Bool (*func)(void *data, int event_type, void *event), void *data);
1767 EAPI void             ecore_x_window_button_grab(Ecore_X_Window win, int button, Ecore_X_Event_Mask event_mask, int mod, int any_mod);
1768 EAPI void             ecore_x_window_button_ungrab(Ecore_X_Window win, int button, int mod, int any_mod);
1769 EAPI void             ecore_x_window_key_grab(Ecore_X_Window win, const char *key, int mod, int any_mod);
1770 EAPI void             ecore_x_window_key_ungrab(Ecore_X_Window win, const char *key, int mod, int any_mod);
1771
1772 EAPI void             ecore_x_focus_reset(void);
1773 EAPI void             ecore_x_events_allow_all(void);
1774 EAPI void             ecore_x_pointer_last_xy_get(int *x, int *y);
1775 EAPI void             ecore_x_pointer_xy_get(Ecore_X_Window win, int *x, int *y);
1776
1777 /* ecore_x_region.c */
1778 EAPI Ecore_X_XRegion *ecore_x_xregion_new(void);
1779 EAPI void             ecore_x_xregion_free(Ecore_X_XRegion *region);
1780 EAPI Eina_Bool        ecore_x_xregion_set(Ecore_X_XRegion *region, Ecore_X_GC gc);
1781 EAPI void             ecore_x_xregion_translate(Ecore_X_XRegion *region, int x, int y);
1782 EAPI Eina_Bool        ecore_x_xregion_intersect(Ecore_X_XRegion *dst, Ecore_X_XRegion *r1, Ecore_X_XRegion *r2);
1783 EAPI Eina_Bool        ecore_x_xregion_union(Ecore_X_XRegion *dst, Ecore_X_XRegion *r1, Ecore_X_XRegion *r2);
1784 EAPI Eina_Bool        ecore_x_xregion_union_rect(Ecore_X_XRegion *dst, Ecore_X_XRegion *src, Ecore_X_Rectangle *rect);
1785 EAPI Eina_Bool        ecore_x_xregion_subtract(Ecore_X_XRegion *dst, Ecore_X_XRegion *r1, Ecore_X_XRegion *r2);
1786 EAPI Eina_Bool        ecore_x_xregion_is_empty(Ecore_X_XRegion *region);
1787 EAPI Eina_Bool        ecore_x_xregion_is_equal(Ecore_X_XRegion *r1, Ecore_X_XRegion *r2);
1788 EAPI Eina_Bool        ecore_x_xregion_point_contain(Ecore_X_XRegion *region, int x, int y);
1789 EAPI Eina_Bool        ecore_x_xregion_rect_contain(Ecore_X_XRegion *region, Ecore_X_Rectangle *rect);
1790
1791 /* ecore_x_randr.c */
1792
1793 /* The usage of 'Ecore_X_Randr_None' or 'Ecore_X_Randr_Unset'
1794  * depends on the context. In most cases 'Ecore_X_Randr_Unset'
1795  * can be used, but in some cases -1 is a special value to
1796  * functions, thus 'Ecore_X_Randr_None' (=0) must be used.
1797  */
1798
1799 typedef short Ecore_X_Randr_Refresh_Rate;
1800 typedef int   Ecore_X_Randr_Crtc_Gamma;
1801 typedef int   Ecore_X_Randr_Signal_Format;
1802 typedef int   Ecore_X_Randr_Signal_Property;
1803 typedef int   Ecore_X_Randr_Connector_Type;
1804
1805 typedef struct _Ecore_X_Randr_Mode_Info
1806 {
1807    Ecore_X_ID    xid;
1808    unsigned int  width;
1809    unsigned int  height;
1810    unsigned long dotClock;
1811    unsigned int  hSyncStart;
1812    unsigned int  hSyncEnd;
1813    unsigned int  hTotal;
1814    unsigned int  hSkew;
1815    unsigned int  vSyncStart;
1816    unsigned int  vSyncEnd;
1817    unsigned int  vTotal;
1818    char         *name;
1819    unsigned int  nameLength;
1820    unsigned long modeFlags;
1821 } Ecore_X_Randr_Mode_Info;
1822
1823 EAPI int                                       ecore_x_randr_version_get(void);
1824 EAPI Eina_Bool                                 ecore_x_randr_query(void);
1825
1826 /* ecore_x_randr_11.c */
1827 EAPI Ecore_X_Randr_Orientation                 ecore_x_randr_screen_primary_output_orientations_get(Ecore_X_Window root);
1828 EAPI Ecore_X_Randr_Orientation                 ecore_x_randr_screen_primary_output_orientation_get(Ecore_X_Window root);
1829 EAPI Eina_Bool                                 ecore_x_randr_screen_primary_output_orientation_set(Ecore_X_Window root, Ecore_X_Randr_Orientation orientation);
1830 EAPI Ecore_X_Randr_Screen_Size_MM             *ecore_x_randr_screen_primary_output_sizes_get(Ecore_X_Window root, int *num);
1831
1832 /**
1833  * @brief get the current set size of a given screen's primary output
1834  * @param root window which's primary output will be queried
1835  * @param w the current size's width
1836  * @param h the current size's height
1837  * @param w_mm the current size's width in mm
1838  * @param h_mm the current size's height in mm
1839  * @param size_index of current set size to be used with ecore_x_randr_primary_output_size_set()
1840  */
1841 EAPI void                                      ecore_x_randr_screen_primary_output_current_size_get(Ecore_X_Window root, int *w, int *h, int *w_mm, int *h_mm, int *size_index);
1842 EAPI Eina_Bool                                 ecore_x_randr_screen_primary_output_size_set(Ecore_X_Window root, int size_index);
1843 EAPI Ecore_X_Randr_Refresh_Rate                ecore_x_randr_screen_primary_output_current_refresh_rate_get(Ecore_X_Window root);
1844 EAPI Ecore_X_Randr_Refresh_Rate               *ecore_x_randr_screen_primary_output_refresh_rates_get(Ecore_X_Window root, int size_index, int *num);
1845 EAPI Eina_Bool                                 ecore_x_randr_screen_primary_output_refresh_rate_set(Ecore_X_Window root, int size_index, Ecore_X_Randr_Refresh_Rate rate);
1846
1847 /* ecore_x_randr_12.c */
1848 EAPI void                                      ecore_x_randr_events_select(Ecore_X_Window win, Eina_Bool on);
1849
1850 EAPI void                                      ecore_x_randr_screen_current_size_get(Ecore_X_Window root, int *w, int *h, int *w_mm, int *h_mm);
1851 EAPI void                                      ecore_x_randr_screen_size_range_get(Ecore_X_Window root, int *wmin, int *hmin, int *wmax, int *hmax);
1852 EAPI void                                      ecore_x_randr_screen_reset(Ecore_X_Window root);
1853 EAPI Eina_Bool                                 ecore_x_randr_screen_current_size_set(Ecore_X_Window root, int w, int h, int w_mm, int h_mm);
1854 EAPI Ecore_X_Randr_Mode_Info                 **ecore_x_randr_modes_info_get(Ecore_X_Window root, int *num);
1855 EAPI Ecore_X_Randr_Mode                        ecore_x_randr_mode_info_add(Ecore_X_Window root, Ecore_X_Randr_Mode_Info *mode_info);
1856 EAPI void                                      ecore_x_randr_mode_del(Ecore_X_Randr_Mode mode);
1857 EAPI Ecore_X_Randr_Mode_Info                  *ecore_x_randr_mode_info_get(Ecore_X_Window root, Ecore_X_Randr_Mode mode);
1858 EAPI void                                      ecore_x_randr_mode_info_free(Ecore_X_Randr_Mode_Info *mode_info);
1859 EAPI Ecore_X_Randr_Crtc                       *ecore_x_randr_crtcs_get(Ecore_X_Window root, int *num);
1860 EAPI Ecore_X_Randr_Output                     *ecore_x_randr_outputs_get(Ecore_X_Window root, int *num);
1861 EAPI Ecore_X_Randr_Output                     *ecore_x_randr_window_outputs_get(Ecore_X_Window window, int *num);
1862 EAPI Ecore_X_Randr_Output                     *ecore_x_randr_current_output_get(Ecore_X_Window window, int *num);
1863 EAPI Ecore_X_Randr_Crtc                       *ecore_x_randr_window_crtcs_get(Ecore_X_Window window, int *num);
1864 EAPI Ecore_X_Randr_Crtc                       *ecore_x_randr_current_crtc_get(Ecore_X_Window window, int *num);
1865 EAPI Ecore_X_Randr_Output                     *ecore_x_randr_crtc_outputs_get(Ecore_X_Window root, Ecore_X_Randr_Crtc crtc, int *num);
1866 EAPI Ecore_X_Randr_Output                     *ecore_x_randr_crtc_possible_outputs_get(Ecore_X_Window root, Ecore_X_Randr_Crtc crtc, int *num);
1867 EAPI void                                      ecore_x_randr_crtc_geometry_get(Ecore_X_Window root, Ecore_X_Randr_Crtc crtc, int *x, int *y, int *w, int *h);
1868 EAPI void                                      ecore_x_randr_crtc_pos_get(Ecore_X_Window root, Ecore_X_Randr_Crtc crtc, int *x, int *y);
1869 EAPI Eina_Bool                                 ecore_x_randr_crtc_pos_set(Ecore_X_Window root, Ecore_X_Randr_Crtc crtc, int x, int y);
1870 EAPI Ecore_X_Randr_Mode                        ecore_x_randr_crtc_mode_get(Ecore_X_Window root, Ecore_X_Randr_Crtc crtc);
1871 EAPI Eina_Bool                                 ecore_x_randr_crtc_mode_set(Ecore_X_Window root, Ecore_X_Randr_Crtc crtc, Ecore_X_Randr_Output *outputs, int noutputs, Ecore_X_Randr_Mode mode);
1872 EAPI void                                      ecore_x_randr_crtc_size_get(Ecore_X_Window root, Ecore_X_Randr_Crtc crtc, int *w, int *h);
1873 EAPI Ecore_X_Randr_Refresh_Rate                ecore_x_randr_crtc_refresh_rate_get(Ecore_X_Window root, Ecore_X_Randr_Crtc crtc, Ecore_X_Randr_Mode mode);
1874 EAPI Ecore_X_Randr_Orientation                 ecore_x_randr_crtc_orientations_get(Ecore_X_Window root, Ecore_X_Randr_Crtc crtc);
1875 EAPI Ecore_X_Randr_Orientation                 ecore_x_randr_crtc_orientation_get(Ecore_X_Window root, Ecore_X_Randr_Crtc crtc);
1876 EAPI Eina_Bool                                 ecore_x_randr_crtc_orientation_set(Ecore_X_Window root, Ecore_X_Randr_Crtc crtc, const Ecore_X_Randr_Orientation orientation);
1877 EAPI Eina_Bool                                 ecore_x_randr_crtc_clone_set(Ecore_X_Window root, Ecore_X_Randr_Crtc original, Ecore_X_Randr_Crtc clone);
1878 EAPI Eina_Bool                                 ecore_x_randr_crtc_settings_set(Ecore_X_Window root, Ecore_X_Randr_Crtc crtc, Ecore_X_Randr_Output *outputs, int noutputs, int x, int y, Ecore_X_Randr_Mode mode, Ecore_X_Randr_Orientation orientation);
1879 EAPI Eina_Bool                                 ecore_x_randr_crtc_pos_relative_set(Ecore_X_Window root, Ecore_X_Randr_Crtc crtc_r1, Ecore_X_Randr_Crtc crtc_r2, Ecore_X_Randr_Output_Policy policy, Ecore_X_Randr_Relative_Alignment alignment);
1880 EAPI Eina_Bool                                 ecore_x_randr_output_mode_add(Ecore_X_Randr_Output output, Ecore_X_Randr_Mode mode);
1881 EAPI void                                      ecore_x_randr_output_mode_del(Ecore_X_Randr_Output output, Ecore_X_Randr_Mode mode);
1882 EAPI Ecore_X_Randr_Mode                       *ecore_x_randr_output_modes_get(Ecore_X_Window root, Ecore_X_Randr_Output output, int *num, int *npreferred);
1883 EAPI Ecore_X_Randr_Output                     *ecore_x_randr_output_clones_get(Ecore_X_Window root, Ecore_X_Randr_Output output, int *num);
1884 EAPI Ecore_X_Randr_Crtc                       *ecore_x_randr_output_possible_crtcs_get(Ecore_X_Window root, Ecore_X_Randr_Output output, int *num);
1885 EAPI Ecore_X_Randr_Crtc                        ecore_x_randr_output_crtc_get(Ecore_X_Window root, Ecore_X_Randr_Output output);
1886 EAPI char                                     *ecore_x_randr_output_name_get(Ecore_X_Window root, Ecore_X_Randr_Output output, int *len);
1887 EAPI int                                       ecore_x_randr_crtc_gamma_ramp_size_get(Ecore_X_Randr_Crtc crtc);
1888 EAPI Ecore_X_Randr_Crtc_Gamma                **ecore_x_randr_crtc_gamma_ramps_get(Ecore_X_Randr_Crtc crtc);
1889 EAPI Eina_Bool                                 ecore_x_randr_crtc_gamma_ramps_set(Ecore_X_Randr_Crtc crtc, const Ecore_X_Randr_Crtc_Gamma *red, const Ecore_X_Randr_Crtc_Gamma *green, const Ecore_X_Randr_Crtc_Gamma *blue);
1890 EAPI Eina_Bool                                 ecore_x_randr_move_all_crtcs_but(Ecore_X_Window root, const Ecore_X_Randr_Crtc *not_moved, int nnot_moved, int dx, int dy);
1891 EAPI Eina_Bool                                 ecore_x_randr_move_crtcs(Ecore_X_Window root, const Ecore_X_Randr_Crtc *crtcs, int ncrtc, int dx, int dy);
1892 EAPI void                                      ecore_x_randr_mode_size_get(Ecore_X_Window root, Ecore_X_Randr_Mode mode, int *w, int *h);
1893 EAPI Ecore_X_Randr_Connection_Status           ecore_x_randr_output_connection_status_get(Ecore_X_Window root, Ecore_X_Randr_Output output);
1894 EAPI void                                      ecore_x_randr_output_size_mm_get(Ecore_X_Window root, Ecore_X_Randr_Output output, int *w, int *h);
1895 EAPI Eina_Bool                                 ecore_x_randr_output_crtc_set(Ecore_X_Window root, Ecore_X_Randr_Output output, const Ecore_X_Randr_Crtc crtc);
1896
1897 /* ecore_x_randr_12_edid.c */
1898
1899 /**
1900  * @brief Validates the header from raw EDID data.
1901  *
1902  * @param edid The edid structure.
1903  * @param edid_length Length of the edid structure.
1904  * @return @c EINA_TRUE, if the header is valid, @c EINA_FALSE otherwise.
1905  */
1906 EAPI Eina_Bool                                 ecore_x_randr_edid_has_valid_header(unsigned char *edid, unsigned long edid_length);
1907
1908 /**
1909  * @brief Checks whether a display's EDID has a valid checksum.
1910  *
1911  * @param edid The edid structure.
1912  * @param edid_length Length of the edid structure.
1913  * @return @c EINA_TRUE, if the checksum is valid, @c EINA_FALSE otherwise.
1914  */
1915 EAPI Eina_Bool                                 ecore_x_randr_edid_info_has_valid_checksum(unsigned char *edid, unsigned long edid_length);
1916
1917 /**
1918  * @brief Get the encoded version from raw EDID data.
1919  *
1920  * The return value has the minor version in the lowest 8 bits, and the major
1921  * version in all the rest of the bits. i.e.
1922  *
1923  * minor = (version & 0x000000ff);
1924  * major = (version & 0xffffff00) >> 8;
1925  *
1926  * @param edid the edid structure
1927  * @param edid_length length of the edid structure
1928  * @return The encoded major and minor version encasuplated an int.
1929  */
1930 EAPI int                                       ecore_x_randr_edid_version_get(unsigned char *edid, unsigned long edid_length);
1931
1932 /**
1933  * @brief Get the encoded manufacturer from raw EDID data.
1934  *
1935  * @param edid the edid structure
1936  * @param edid_length length of the edid structure
1937  * @return The encoded manufacturer identifier.
1938  */
1939 EAPI char                                     *ecore_x_randr_edid_manufacturer_name_get(unsigned char *edid, unsigned long edid_length);
1940
1941 /**
1942  * @brief Get the encoded name from raw EDID data.
1943  *
1944  * @param edid the edid structure
1945  * @param edid_length length of the edid structure
1946  * @return The encoded manufacturer identifier.
1947  */
1948 EAPI char                                     *ecore_x_randr_edid_display_name_get(unsigned char *edid, unsigned long edid_length);
1949
1950 /**
1951  * @brief Get the encoded ASCII from raw EDID data.
1952  *
1953  * @param edid the edid structure
1954  * @param edid_length length of the edid structure
1955  * @return The encoded ASCII display identifier.
1956  */
1957 EAPI char                                     *ecore_x_randr_edid_display_ascii_get(unsigned char *edid, unsigned long edid_length);
1958
1959 /**
1960  * @brief Get the encoded serial identifier from raw EDID data.
1961  *
1962  * @param edid the edid structure
1963  * @param edid_length length of the edid structure
1964  * @return The encoded serial identifier.
1965  */
1966 EAPI char                                     *ecore_x_randr_edid_display_serial_get(unsigned char *edid, unsigned long edid_length);
1967
1968 /**
1969  * @brief Get the encoded model number from raw EDID data.
1970  *
1971  * The manufacturer ID table is necessary for a useful description.
1972  *
1973  * @param edid the edid structure
1974  * @param edid_length length of the edid structure
1975  * @return The encoded model number.
1976  */
1977 EAPI int                                       ecore_x_randr_edid_model_get(unsigned char *edid, unsigned long edid_length);
1978
1979 /**
1980  * @brief Get the manufacturer serial number from raw EDID data.
1981  *
1982  * @param edid the edid structure
1983  * @param edid_length length of the edid structure
1984  * @return The encoded serial manufacturer serial number.
1985  */
1986 EAPI int                                       ecore_x_randr_edid_manufacturer_serial_number_get(unsigned char *edid, unsigned long edid_length);
1987
1988 /**
1989  * @brief Get the manufacturer model number from raw EDID data.
1990  *
1991  * @param edid the edid structure
1992  * @param edid_length length of the edid structure
1993  * @return The manufacturer's model number.
1994  */
1995 EAPI int                                       ecore_x_randr_edid_manufacturer_model_get(unsigned char *edid, unsigned long edid_length);
1996
1997 /**
1998  * @brief Looks up the DPMS support from raw EDID data.
1999  *
2000  * @param edid The edid structure.
2001  * @param edid_length Length of the edid structure.
2002  * @return @c EINA_TRUE, if DPMS is supported in some way, @c EINA_FALSE
2003  * otherwise.
2004  */
2005 EAPI Eina_Bool                                 ecore_x_randr_edid_dpms_available_get(unsigned char *edid, unsigned long edid_length);
2006
2007 /**
2008  * @brief Looks up the DPMS Standby support from raw EDID data.
2009  *
2010  * @param edid The edid structure.
2011  * @param edid_length Length of the edid structure.
2012  * @return @c EINA_TRUE, if DPMS Standby is supported, @c EINA_FALSE otherwise.
2013  */
2014 EAPI Eina_Bool                                 ecore_x_randr_edid_dpms_standby_available_get(unsigned char *edid, unsigned long edid_length);
2015
2016 /**
2017  * @brief Looks up the DPMS Suspend support from raw EDID data.
2018  *
2019  * @param edid The edid structure.
2020  * @param edid_length Length of the edid structure.
2021  * @return @c EINA_TRUE, if DPMS Suspend is supported, @c EINA_FALSE otherwise.
2022  */
2023 EAPI Eina_Bool                                 ecore_x_randr_edid_dpms_suspend_available_get(unsigned char *edid, unsigned long edid_length);
2024
2025 /**
2026  * @brief Looks up the DPMS Off support from raw EDID data.
2027  *
2028  * @param edid The edid structure.
2029  * @param edid_length Length of the edid structure.
2030  * @return @c EINA_TRUE, if DPMS Off is supported, @c EINA_FALSE otherwise.
2031  */
2032 EAPI Eina_Bool                                 ecore_x_randr_edid_dpms_off_available_get(unsigned char *edid, unsigned long edid_length);
2033
2034 /**
2035  * @brief Get the preferred aspect ratio from raw EDID data.
2036  *
2037  * @param edid the edid structure
2038  * @param edid_length length of the edid structure
2039  * @return The preferred aspect ratio.
2040  */
2041 EAPI Ecore_X_Randr_Edid_Aspect_Ratio           ecore_x_randr_edid_display_aspect_ratio_preferred_get(unsigned char *edid, unsigned long edid_length);
2042
2043 /**
2044  * @brief Get the supported aspect ratios from raw EDID data.
2045  *
2046  * @param edid the edid structure
2047  * @param edid_length length of the edid structure
2048  * @return The supported aspect ratios.
2049  */
2050 EAPI Ecore_X_Randr_Edid_Aspect_Ratio           ecore_x_randr_edid_display_aspect_ratios_get(unsigned char *edid, unsigned long edid_length);
2051
2052 /**
2053  * @brief Get the supported colorschemes from raw EDID data.
2054  *
2055  * @param edid the edid structure
2056  * @param edid_length length of the edid structure
2057  * @return The supported colorschemes.
2058  */
2059 EAPI Ecore_X_Randr_Edid_Display_Colorscheme    ecore_x_randr_edid_display_colorscheme_get(unsigned char *edid, unsigned long edid_length);
2060
2061 /**
2062  * @brief Get the display type from raw EDID data.
2063  *
2064  * @param edid The edid structure.
2065  * @param edid_length Length of the edid structure.
2066  * @return @c EINA_TRUE, if the display is a digital one, @c EINA_FALSE
2067  * otherwise.
2068  */
2069 EAPI Eina_Bool                                 ecore_x_randr_edid_display_type_digital_get(unsigned char *edid, unsigned long edid_length);
2070
2071 /**
2072  * @brief Get the display interface type from raw EDID data.
2073  *
2074  * @param edid the edid structure
2075  * @param edid_length length of the edid structure
2076  * @return The interface type.
2077  */
2078 EAPI Ecore_X_Randr_Edid_Display_Interface_Type ecore_x_randr_edid_display_interface_type_get(unsigned char *edid, unsigned long edid_length);
2079
2080 /* ecore_x_randr_12.c */
2081
2082 EAPI Eina_Bool                                 ecore_x_randr_output_backlight_available(void);
2083 EAPI void                                      ecore_x_randr_screen_backlight_level_set(Ecore_X_Window root, double level);
2084 EAPI double                                    ecore_x_randr_output_backlight_level_get(Ecore_X_Window root, Ecore_X_Randr_Output output);
2085 EAPI Eina_Bool                                 ecore_x_randr_output_backlight_level_set(Ecore_X_Window root, Ecore_X_Randr_Output output, double level);
2086 EAPI Ecore_X_Randr_Output                      ecore_x_randr_primary_output_get(Ecore_X_Window root);
2087 EAPI void                                      ecore_x_randr_primary_output_set(Ecore_X_Window root, Ecore_X_Randr_Output output);
2088 EAPI Ecore_X_Render_Subpixel_Order             ecore_x_randr_output_subpixel_order_get(Ecore_X_Window root, Ecore_X_Randr_Output output);
2089 EAPI unsigned char                            *ecore_x_randr_output_edid_get(Ecore_X_Window root, Ecore_X_Randr_Output output, unsigned long *length);
2090 EAPI Ecore_X_Randr_Output                     *ecore_x_randr_output_wired_clones_get(Ecore_X_Window root, Ecore_X_Randr_Output output, int *num);
2091 EAPI Ecore_X_Randr_Output                    **ecore_x_randr_output_compatibility_list_get(Ecore_X_Window root, Ecore_X_Randr_Output output, int *num);
2092 EAPI Ecore_X_Randr_Signal_Format              *ecore_x_randr_output_signal_formats_get(Ecore_X_Window root, Ecore_X_Randr_Output output, int *num);
2093 EAPI Eina_Bool                                 ecore_x_randr_output_signal_format_set(Ecore_X_Window root, Ecore_X_Randr_Output output, Ecore_X_Randr_Signal_Format *signal);
2094 EAPI Ecore_X_Randr_Signal_Property            *ecore_x_randr_output_signal_properties_get(Ecore_X_Window root, Ecore_X_Randr_Output output, int *num);
2095 EAPI int                                       ecore_x_randr_output_connector_number_get(Ecore_X_Window root, Ecore_X_Randr_Output output);
2096 EAPI Ecore_X_Randr_Connector_Type              ecore_x_randr_output_connector_type_get(Ecore_X_Window root, Ecore_X_Randr_Output output);
2097 /* WTF - these dont exist in ecore-x!!!!   
2098 EAPI Eina_Rectangle                           *ecore_x_randr_crtc_panning_area_get(Ecore_X_Window root, Ecore_X_Randr_Crtc crtc, int *x, int *y, int *w, int *h);
2099 EAPI Eina_Bool                                 ecore_x_randr_crtc_panning_area_set(Ecore_X_Window root, Ecore_X_Randr_Crtc crtc, int x, const int y, const int w, const int h);
2100 EAPI Eina_Rectangle                           *ecore_x_randr_crtc_tracking_area_get(Ecore_X_Window root, Ecore_X_Randr_Crtc crtc, int *x, int *y, int *w, int *h);
2101 EAPI Eina_Bool                                 ecore_x_randr_crtc_tracking_area_set(Ecore_X_Window root, Ecore_X_Randr_Crtc crtc, int x, const int y, const int w, const int h);
2102 EAPI Eina_Rectangle                           *ecore_x_randr_crtc_border_area_get(Ecore_X_Window root, Ecore_X_Randr_Crtc crtc);
2103 EAPI Eina_Bool                                 ecore_x_randr_crtc_border_area_set(Ecore_X_Window root, Ecore_X_Randr_Crtc crtc, int left, const int top, const int right, const int bottom);
2104 */
2105    
2106 /* XRender Support (horrendously incomplete) */
2107 typedef Ecore_X_ID Ecore_X_Picture;
2108
2109 /* XFixes Extension Support */
2110 typedef Ecore_X_ID Ecore_X_Region;
2111
2112 typedef enum _Ecore_X_Region_Type
2113 {
2114    ECORE_X_REGION_BOUNDING,
2115    ECORE_X_REGION_CLIP
2116 } Ecore_X_Region_Type;
2117
2118 EAPI Ecore_X_Region     ecore_x_region_new(Ecore_X_Rectangle *rects, int num);
2119 EAPI Ecore_X_Region     ecore_x_region_new_from_bitmap(Ecore_X_Pixmap bitmap);
2120 EAPI Ecore_X_Region     ecore_x_region_new_from_window(Ecore_X_Window win, Ecore_X_Region_Type type);
2121 EAPI Ecore_X_Region     ecore_x_region_new_from_gc(Ecore_X_GC gc);
2122 EAPI Ecore_X_Region     ecore_x_region_new_from_picture(Ecore_X_Picture picture);
2123 EAPI void               ecore_x_region_free(Ecore_X_Region region);
2124 EAPI void               ecore_x_region_set(Ecore_X_Region region, Ecore_X_Rectangle *rects, int num);
2125 EAPI void               ecore_x_region_copy(Ecore_X_Region dest, Ecore_X_Region source);
2126 EAPI void               ecore_x_region_combine(Ecore_X_Region dest, Ecore_X_Region source1, Ecore_X_Region source2);
2127 EAPI void               ecore_x_region_intersect(Ecore_X_Region dest, Ecore_X_Region source1, Ecore_X_Region source2);
2128 EAPI void               ecore_x_region_subtract(Ecore_X_Region dest, Ecore_X_Region source1, Ecore_X_Region source2);
2129 EAPI void               ecore_x_region_invert(Ecore_X_Region dest, Ecore_X_Rectangle *bounds, Ecore_X_Region source);
2130 EAPI void               ecore_x_region_translate(Ecore_X_Region region, int dx, int dy);
2131 EAPI void               ecore_x_region_extents(Ecore_X_Region dest, Ecore_X_Region source);
2132 EAPI Ecore_X_Rectangle *ecore_x_region_fetch(Ecore_X_Region region, int *num, Ecore_X_Rectangle *bounds);
2133 EAPI void               ecore_x_region_expand(Ecore_X_Region dest, Ecore_X_Region source, unsigned int left, unsigned int right, unsigned int top, unsigned int bottom);
2134 EAPI void               ecore_x_region_gc_clip_set(Ecore_X_Region region, Ecore_X_GC gc, int x_origin, int y_origin);
2135 EAPI void               ecore_x_region_window_shape_set(Ecore_X_Region region, Ecore_X_Window win, Ecore_X_Shape_Type type, int x_offset, int y_offset);
2136 EAPI void               ecore_x_region_picture_clip_set(Ecore_X_Region region, Ecore_X_Picture picture, int x_origin, int y_origin);
2137
2138 /**
2139  * xfixes selection notification request.
2140  *
2141  * This lets you choose which selections you want to get notifications for.
2142  * @param selection The selection atom.
2143  * @return @c EINA_TRUE on success, @c EINA_FALSE otherwise.
2144  * @since 1.1.0
2145  */
2146 EAPI Eina_Bool          ecore_x_fixes_selection_notification_request(Ecore_X_Atom selection);
2147
2148 /* XComposite Extension Support */
2149 EAPI Eina_Bool          ecore_x_composite_query(void);
2150 EAPI void               ecore_x_composite_redirect_window(Ecore_X_Window win, Ecore_X_Composite_Update_Type type);
2151 EAPI void               ecore_x_composite_redirect_subwindows(Ecore_X_Window win, Ecore_X_Composite_Update_Type type);
2152 EAPI void               ecore_x_composite_unredirect_window(Ecore_X_Window win, Ecore_X_Composite_Update_Type type);
2153 EAPI void               ecore_x_composite_unredirect_subwindows(Ecore_X_Window win, Ecore_X_Composite_Update_Type type);
2154 EAPI Ecore_X_Pixmap     ecore_x_composite_name_window_pixmap_get(Ecore_X_Window win);
2155 EAPI void               ecore_x_composite_window_events_disable(Ecore_X_Window win);
2156 EAPI void               ecore_x_composite_window_events_enable(Ecore_X_Window win);
2157 EAPI Ecore_X_Window     ecore_x_composite_render_window_enable(Ecore_X_Window root);
2158 EAPI void               ecore_x_composite_render_window_disable(Ecore_X_Window root);
2159
2160 /* XDamage Extension Support */
2161 typedef Ecore_X_ID Ecore_X_Damage;
2162
2163 typedef enum _Ecore_X_Damage_Report_Level
2164 {
2165    ECORE_X_DAMAGE_REPORT_RAW_RECTANGLES,
2166    ECORE_X_DAMAGE_REPORT_DELTA_RECTANGLES,
2167    ECORE_X_DAMAGE_REPORT_BOUNDING_BOX,
2168    ECORE_X_DAMAGE_REPORT_NON_EMPTY
2169 } Ecore_X_Damage_Report_Level;
2170
2171 struct _Ecore_X_Event_Damage
2172 {
2173    Ecore_X_Damage_Report_Level level;
2174    Ecore_X_Drawable            drawable;
2175    Ecore_X_Damage              damage;
2176    int                         more;
2177    Ecore_X_Time                time;
2178    Ecore_X_Rectangle           area;
2179    Ecore_X_Rectangle           geometry;
2180 };
2181
2182 typedef struct _Ecore_X_Event_Damage Ecore_X_Event_Damage;
2183
2184 struct _Ecore_X_Event_Xkb
2185 {
2186    int group;
2187 };
2188 typedef struct _Ecore_X_Event_Xkb Ecore_X_Event_Xkb; /** @since 1.7 */
2189
2190 EAPI Eina_Bool      ecore_x_damage_query(void);
2191 EAPI Ecore_X_Damage ecore_x_damage_new(Ecore_X_Drawable d, Ecore_X_Damage_Report_Level level);
2192 EAPI void           ecore_x_damage_free(Ecore_X_Damage damage);
2193 EAPI void           ecore_x_damage_subtract(Ecore_X_Damage damage, Ecore_X_Region repair, Ecore_X_Region parts);
2194
2195 EAPI Eina_Bool      ecore_x_screen_is_composited(int screen);
2196 EAPI void           ecore_x_screen_is_composited_set(int screen, Ecore_X_Window win);
2197
2198 EAPI Eina_Bool      ecore_x_dpms_query(void);
2199 EAPI Eina_Bool      ecore_x_dpms_capable_get(void);
2200 EAPI Eina_Bool      ecore_x_dpms_enabled_get(void);
2201 EAPI void           ecore_x_dpms_enabled_set(int enabled);
2202 EAPI void           ecore_x_dpms_timeouts_get(unsigned int *standby, unsigned int *suspend, unsigned int *off);
2203 EAPI Eina_Bool      ecore_x_dpms_timeouts_set(unsigned int standby, unsigned int suspend, unsigned int off);
2204 EAPI unsigned int   ecore_x_dpms_timeout_standby_get(void);
2205 EAPI unsigned int   ecore_x_dpms_timeout_suspend_get(void);
2206 EAPI unsigned int   ecore_x_dpms_timeout_off_get(void);
2207 EAPI void           ecore_x_dpms_timeout_standby_set(unsigned int new_timeout);
2208 EAPI void           ecore_x_dpms_timeout_suspend_set(unsigned int new_timeout);
2209 EAPI void           ecore_x_dpms_timeout_off_set(unsigned int new_timeout);
2210
2211 EAPI Eina_Bool      ecore_x_test_fake_key_down(const char *key);
2212 EAPI Eina_Bool      ecore_x_test_fake_key_up(const char *key);
2213 EAPI Eina_Bool      ecore_x_test_fake_key_press(const char *key);
2214 EAPI const char    *ecore_x_keysym_string_get(int keysym);
2215
2216 /**
2217  * Given a keyname, return the keycode representing that key
2218  * @param keyname The key from which to get the keycode.
2219  * @return The keycode of the key.
2220  *
2221  * @since 1.2.0
2222  */
2223 EAPI int            ecore_x_keysym_keycode_get(const char *keyname);
2224
2225 typedef struct _Ecore_X_Image Ecore_X_Image;
2226
2227 EAPI Ecore_X_Image *ecore_x_image_new(int w, int h, Ecore_X_Visual vis, int depth);
2228 EAPI void           ecore_x_image_free(Ecore_X_Image *im);
2229 EAPI Eina_Bool      ecore_x_image_get(Ecore_X_Image *im, Ecore_X_Drawable draw, int x, int y, int sx, int sy, int w, int h);
2230 EAPI void           ecore_x_image_put(Ecore_X_Image *im, Ecore_X_Drawable draw, Ecore_X_GC gc, int x, int y, int sx, int sy, int w, int h);
2231 EAPI void          *ecore_x_image_data_get(Ecore_X_Image *im, int *bpl, int *rows, int *bpp);
2232 EAPI Eina_Bool      ecore_x_image_is_argb32_get(Ecore_X_Image *im);
2233
2234 EAPI Eina_Bool      ecore_x_image_to_argb_convert(void *src, int sbpp, int sbpl, Ecore_X_Colormap c, Ecore_X_Visual v, int x, int y, int w, int h, unsigned int *dst, int dbpl, int dx, int dy);
2235
2236 EAPI Eina_Bool      ecore_x_input_multi_select(Ecore_X_Window win);
2237 EAPI Eina_Bool      ecore_x_input_raw_select(Ecore_X_Window win); /**< @since 1.8 */
2238
2239 EAPI Eina_Bool      ecore_x_vsync_animator_tick_source_set(Ecore_X_Window win);
2240
2241 typedef enum _Ecore_X_Gesture_Event_Mask
2242 {
2243    ECORE_X_GESTURE_EVENT_MASK_NONE = 0L,
2244    ECORE_X_GESTURE_EVENT_MASK_FLICK = (1L << 0),
2245    ECORE_X_GESTURE_EVENT_MASK_PAN = (1L << 1),
2246    ECORE_X_GESTURE_EVENT_MASK_PINCHROTATION = (1L << 2),
2247    ECORE_X_GESTURE_EVENT_MASK_TAP = (1L << 3),
2248    ECORE_X_GESTURE_EVENT_MASK_TAPNHOLD = (1L << 4),
2249    ECORE_X_GESTURE_EVENT_MASK_HOLD = (1L << 5),
2250    ECORE_X_GESTURE_EVENT_MASK_GROUP = (1L << 6)
2251 } Ecore_X_Gesture_Event_Mask;
2252
2253 typedef enum _Ecore_X_Gesture_Event_Type
2254 {
2255    ECORE_X_GESTURE_EVENT_FLICK,
2256    ECORE_X_GESTURE_EVENT_PAN,
2257    ECORE_X_GESTURE_EVENT_PINCHROTATION,
2258    ECORE_X_GESTURE_EVENT_TAP,
2259    ECORE_X_GESTURE_EVENT_TAPNHOLD,
2260    ECORE_X_GESTURE_EVENT_HOLD,
2261    ECORE_X_GESTURE_EVENT_GROUP
2262 } Ecore_X_Gesture_Event_Type;
2263
2264 typedef enum _Ecore_X_Gesture_Event_Subtype
2265 {
2266    ECORE_X_GESTURE_END,
2267    ECORE_X_GESTURE_BEGIN,
2268    ECORE_X_GESTURE_UPDATE,
2269    ECORE_X_GESTURE_DONE
2270 } Ecore_X_Gesture_Event_Subtype;
2271
2272 typedef enum _Ecore_X_Gesture_Group_Subtype
2273 {
2274    ECORE_X_GESTURE_GROUP_REMOVED,
2275    ECORE_X_GESTURE_GROUP_ADDED,
2276    ECORE_X_GESTURE_GROUP_CURRENT
2277 } Ecore_X_Gesture_Group_Subtype;
2278
2279 typedef enum _Ecore_X_Gesture_Direction
2280 {
2281    ECORE_X_GESTURE_NORTHWARD,
2282    ECORE_X_GESTURE_NORTHEASTWARD,
2283    ECORE_X_GESTURE_EASTWARD,
2284    ECORE_X_GESTURE_SOUTHEASTWARD,
2285    ECORE_X_GESTURE_SOUTHWARD,
2286    ECORE_X_GESTURE_SOUTHWESTWARD,
2287    ECORE_X_GESTURE_WESTWARD,
2288    ECORE_X_GESTURE_NORTHWESTWARD
2289 } Ecore_X_Gesture_Direction;
2290
2291 struct _Ecore_X_Event_Gesture_Notify_Flick
2292 {
2293    Ecore_X_Window                win;
2294    Ecore_X_Time                  time;
2295    Ecore_X_Gesture_Event_Subtype subtype;
2296    int                           num_fingers;
2297    int                           distance;
2298    Ecore_X_Time                  duration;
2299    Ecore_X_Gesture_Direction     direction;
2300    double                        angle;
2301 };
2302
2303 struct _Ecore_X_Event_Gesture_Notify_Pan
2304 {
2305    Ecore_X_Window                win;
2306    Ecore_X_Time                  time;
2307    Ecore_X_Gesture_Event_Subtype subtype;
2308    int                           num_fingers;
2309    int                           dx;
2310    int                           dy;
2311    int                           distance;
2312    Ecore_X_Time                  duration;
2313    Ecore_X_Gesture_Direction     direction;
2314 };
2315
2316 struct _Ecore_X_Event_Gesture_Notify_PinchRotation
2317 {
2318    Ecore_X_Window                win;
2319    Ecore_X_Time                  time;
2320    Ecore_X_Gesture_Event_Subtype subtype;
2321    int                           num_fingers;
2322    int                           distance;
2323    int                           cx;
2324    int                           cy;
2325    double                        zoom;
2326    double                        angle;
2327 };
2328
2329 struct _Ecore_X_Event_Gesture_Notify_Tap
2330 {
2331    Ecore_X_Window                win;
2332    Ecore_X_Time                  time;
2333    Ecore_X_Gesture_Event_Subtype subtype;
2334    int                           num_fingers;
2335    int                           cx;
2336    int                           cy;
2337    int                           tap_repeat;
2338    Ecore_X_Time                  interval;
2339 };
2340
2341 struct _Ecore_X_Event_Gesture_Notify_TapNHold
2342 {
2343    Ecore_X_Window                win;
2344    Ecore_X_Time                  time;
2345    Ecore_X_Gesture_Event_Subtype subtype;
2346    int                           num_fingers;
2347    int                           cx;
2348    int                           cy;
2349    Ecore_X_Time                  interval;
2350    Ecore_X_Time                  hold_time;
2351 };
2352
2353 struct _Ecore_X_Event_Gesture_Notify_Hold
2354 {
2355    Ecore_X_Window                win;
2356    Ecore_X_Time                  time;
2357    Ecore_X_Gesture_Event_Subtype subtype;
2358    int                           num_fingers;
2359    int                           cx;
2360    int                           cy;
2361    Ecore_X_Time                  hold_time;
2362 };
2363
2364 struct _Ecore_X_Event_Gesture_Notify_Group
2365 {
2366    Ecore_X_Window                win;
2367    Ecore_X_Time                  time;
2368    Ecore_X_Gesture_Group_Subtype subtype;
2369    int                           num_groups;
2370    int                           group_id;
2371 };
2372
2373 EAPI Eina_Bool                             ecore_x_gesture_supported(void);
2374
2375 EAPI Eina_Bool                             ecore_x_gesture_events_select(Ecore_X_Window win, Ecore_X_Gesture_Event_Mask mask);
2376
2377 EAPI Ecore_X_Gesture_Event_Mask            ecore_x_gesture_events_selected_get(Ecore_X_Window win);
2378
2379 EAPI Eina_Bool                             ecore_x_gesture_event_grab(Ecore_X_Window win, Ecore_X_Gesture_Event_Type type, int num_fingers);
2380
2381 EAPI Eina_Bool                             ecore_x_gesture_event_ungrab(Ecore_X_Window win, Ecore_X_Gesture_Event_Type type, int num_fingers);
2382
2383 EAPI void                                  ecore_x_e_illume_indicator_state_set(Ecore_X_Window win, Ecore_X_Illume_Indicator_State state);
2384 EAPI Ecore_X_Illume_Indicator_State        ecore_x_e_illume_indicator_state_get(Ecore_X_Window win);
2385 EAPI void                                  ecore_x_e_illume_indicator_state_send(Ecore_X_Window win, Ecore_X_Illume_Indicator_State state);
2386
2387 EAPI void                                  ecore_x_e_illume_indicator_opacity_set(Ecore_X_Window win, Ecore_X_Illume_Indicator_Opacity_Mode mode);
2388
2389 EAPI Ecore_X_Illume_Indicator_Opacity_Mode ecore_x_e_illume_indicator_opacity_get(Ecore_X_Window win);
2390
2391 EAPI void                                  ecore_x_e_illume_indicator_opacity_send(Ecore_X_Window win, Ecore_X_Illume_Indicator_Opacity_Mode mode);
2392
2393 EAPI void
2394 ecore_x_e_illume_window_state_set(Ecore_X_Window win,
2395                                   Ecore_X_Illume_Window_State state);
2396
2397 EAPI Ecore_X_Illume_Window_State           ecore_x_e_illume_window_state_get(Ecore_X_Window win);
2398 EAPI void                                  ecore_x_xkb_select_group(int group); /* @since 1.7 */
2399
2400 #ifdef __cplusplus
2401 }
2402 #endif // ifdef __cplusplus
2403
2404 #include <Ecore_X_Atoms.h>
2405 #include <Ecore_X_Cursor.h>
2406
2407 #endif // ifndef _ECORE_X_H