efeaa52de016514091d4d34f498a6f445eff5f71
[platform/upstream/ecore.git] / src / lib / ecore_evas / ecore_evas_private.h
1 #ifndef _ECORE_EVAS_PRIVATE_H
2 #define _ECORE_EVAS_PRIVATE_H
3
4 #include <Evas.h>
5 #include <Ecore.h>
6 #include <ecore_private.h>
7 #include <Ecore_Input.h>
8 #include <Ecore_Input_Evas.h>
9
10 #define ECORE_MAGIC_EVAS 0x76543211
11
12 #ifdef BUILD_ECORE_EVAS_X11
13 # include <Ecore_X.h>
14 # include <Ecore_X_Atoms.h>
15 # ifdef HAVE_ECORE_X_XCB
16 #  include <xcb/xcb.h>
17 # endif
18 # ifdef HAVE_ECORE_X_XLIB
19 #  include <X11/Xlib.h>
20 #  include <X11/Xutil.h>
21 # endif
22 #endif
23
24 #ifdef BUILD_ECORE_EVAS_SOFTWARE_X11
25 # include <Evas_Engine_Software_X11.h>
26 #endif
27
28 #ifdef BUILD_ECORE_EVAS_OPENGL_X11
29 # include <Evas_Engine_GL_X11.h>
30 #endif
31
32 #ifdef BUILD_ECORE_EVAS_SOFTWARE_8_X11
33 # include <Evas_Engine_Software_8_X11.h>
34 #endif
35
36 #ifdef BUILD_ECORE_EVAS_SOFTWARE_16_X11
37 # include <Evas_Engine_Software_16_X11.h>
38 #endif
39
40 #ifdef BUILD_ECORE_EVAS_FB
41 # include <Evas_Engine_FB.h>
42 #endif
43
44 #ifdef BUILD_ECORE_EVAS_DIRECTFB
45 # include <Evas_Engine_DirectFB.h>
46 # include "Ecore_DirectFB.h"
47 #endif
48
49 #if defined(BUILD_ECORE_EVAS_SOFTWARE_BUFFER) || defined(BUILD_ECORE_EVAS_EWS)
50 # include <Evas_Engine_Buffer.h>
51 #endif
52
53 #ifdef BUILD_ECORE_EVAS_WIN32
54 # include "Ecore_Win32.h"
55 # ifdef BUILD_ECORE_EVAS_SOFTWARE_GDI
56 #  include <Evas_Engine_Software_Gdi.h>
57 # endif
58 # ifdef BUILD_ECORE_EVAS_SOFTWARE_DDRAW
59 #  include <Evas_Engine_Software_DDraw.h>
60 # endif
61 # ifdef BUILD_ECORE_EVAS_DIRECT3D
62 #  include <Evas_Engine_Direct3D.h>
63 # endif
64 # ifdef BUILD_ECORE_EVAS_OPENGL_GLEW
65 #  include <Evas_Engine_GL_Glew.h>
66 # endif
67 # ifdef BUILD_ECORE_EVAS_SOFTWARE_16_DDRAW
68 #  include <Evas_Engine_Software_16_DDraw.h>
69 # endif
70 #endif
71
72 #ifdef BUILD_ECORE_EVAS_SOFTWARE_16_WINCE
73 # include "Ecore_WinCE.h"
74 # include <Evas_Engine_Software_16_WinCE.h>
75 #endif
76
77 #ifdef BUILD_ECORE_EVAS_GL_COCOA
78 # include "Ecore_Cocoa.h"
79 # include <Evas_Engine_Gl_Cocoa.h>
80 #endif
81
82 #ifdef BUILD_ECORE_EVAS_WAYLAND_SHM
83 # include "Ecore_Wayland.h"
84 # include <Evas_Engine_Wayland_Shm.h>
85 #endif
86
87 #ifdef BUILD_ECORE_EVAS_WAYLAND_EGL
88 # include "Ecore_Wayland.h"
89 # include <Evas_Engine_Wayland_Egl.h>
90 #endif
91
92 /** Log domain macros and variables **/
93
94 extern int _ecore_evas_log_dom;
95
96 #ifdef ECORE_EVAS_DEFAULT_LOG_COLOR
97 # undef ECORE_EVAS_DEFAULT_LOG_COLOR
98 #endif
99 #define ECORE_EVAS_DEFAULT_LOG_COLOR EINA_COLOR_BLUE
100
101 #ifdef ERR
102 # undef ERR
103 #endif
104 #define ERR(...) EINA_LOG_DOM_ERR(_ecore_evas_log_dom, __VA_ARGS__)
105 #ifdef DBG
106 # undef DBG
107 #endif
108 #define DBG(...) EINA_LOG_DOM_DBG(_ecore_evas_log_dom, __VA_ARGS__)
109 #ifdef INF
110 # undef INF
111 #endif
112 #define INF(...) EINA_LOG_DOM_INFO(_ecore_evas_log_dom, __VA_ARGS__)
113 #ifdef WRN
114 # undef WRN
115 #endif
116 #define WRN(...) EINA_LOG_DOM_WARN(_ecore_evas_log_dom, __VA_ARGS__)
117 #ifdef CRIT
118 # undef CRIT
119 #endif
120 #define CRIT(...) EINA_LOG_DOM_CRIT(_ecore_evas_log_dom, __VA_ARGS__)
121
122
123 #define IDLE_FLUSH_TIME 0.5
124 #ifndef _ECORE_EVAS_H
125 typedef struct _Ecore_Evas Ecore_Evas;
126 typedef void   (*Ecore_Evas_Event_Cb) (Ecore_Evas *ee);
127 #endif
128
129 typedef struct _Ecore_Evas_Engine Ecore_Evas_Engine;
130 typedef struct _Ecore_Evas_Engine_Func Ecore_Evas_Engine_Func;
131
132 struct _Ecore_Evas_Engine_Func
133 {
134    void (*fn_free) (Ecore_Evas *ee);
135    void (*fn_callback_resize_set) (Ecore_Evas *ee, Ecore_Evas_Event_Cb func);
136    void (*fn_callback_move_set) (Ecore_Evas *ee, Ecore_Evas_Event_Cb func);
137    void (*fn_callback_show_set) (Ecore_Evas *ee, Ecore_Evas_Event_Cb func);
138    void (*fn_callback_hide_set) (Ecore_Evas *ee, Ecore_Evas_Event_Cb func);
139    void (*fn_callback_delete_request_set) (Ecore_Evas *ee, Ecore_Evas_Event_Cb func);
140    void (*fn_callback_destroy_set) (Ecore_Evas *ee, Ecore_Evas_Event_Cb func);
141    void (*fn_callback_focus_in_set) (Ecore_Evas *ee, Ecore_Evas_Event_Cb func);
142    void (*fn_callback_focus_out_set) (Ecore_Evas *ee, Ecore_Evas_Event_Cb func);
143    void (*fn_callback_mouse_in_set) (Ecore_Evas *ee, Ecore_Evas_Event_Cb func);
144    void (*fn_callback_mouse_out_set) (Ecore_Evas *ee, Ecore_Evas_Event_Cb func);
145    void (*fn_callback_sticky_set) (Ecore_Evas *ee, Ecore_Evas_Event_Cb func);
146    void (*fn_callback_unsticky_set) (Ecore_Evas *ee, Ecore_Evas_Event_Cb func);
147    void (*fn_callback_pre_render_set) (Ecore_Evas *ee, Ecore_Evas_Event_Cb func);
148    void (*fn_callback_post_render_set) (Ecore_Evas *ee, Ecore_Evas_Event_Cb func);
149    void (*fn_move) (Ecore_Evas *ee, int x, int y);
150    void (*fn_managed_move) (Ecore_Evas *ee, int x, int y);
151    void (*fn_resize) (Ecore_Evas *ee, int w, int h);
152    void (*fn_move_resize) (Ecore_Evas *ee, int x, int y, int w, int h);
153    void (*fn_rotation_set) (Ecore_Evas *ee, int rot, int resize);
154    void (*fn_shaped_set) (Ecore_Evas *ee, int shaped);
155    void (*fn_show) (Ecore_Evas *ee);
156    void (*fn_hide) (Ecore_Evas *ee);
157    void (*fn_raise) (Ecore_Evas *ee);
158    void (*fn_lower) (Ecore_Evas *ee);
159    void (*fn_activate) (Ecore_Evas *ee);
160    void (*fn_title_set) (Ecore_Evas *ee, const char *t);
161    void (*fn_name_class_set) (Ecore_Evas *ee, const char *n, const char *c);
162    void (*fn_size_min_set) (Ecore_Evas *ee, int w, int h);
163    void (*fn_size_max_set) (Ecore_Evas *ee, int w, int h);
164    void (*fn_size_base_set) (Ecore_Evas *ee, int w, int h);
165    void (*fn_size_step_set) (Ecore_Evas *ee, int w, int h);
166    void (*fn_object_cursor_set) (Ecore_Evas *ee, Evas_Object *obj, int layer, int hot_x, int hot_y);
167    void (*fn_layer_set) (Ecore_Evas *ee, int layer);
168    void (*fn_focus_set) (Ecore_Evas *ee, int on);
169    void (*fn_iconified_set) (Ecore_Evas *ee, int on);
170    void (*fn_borderless_set) (Ecore_Evas *ee, int on);
171    void (*fn_override_set) (Ecore_Evas *ee, int on);
172    void (*fn_maximized_set) (Ecore_Evas *ee, int on);
173    void (*fn_fullscreen_set) (Ecore_Evas *ee, int on);
174    void (*fn_avoid_damage_set) (Ecore_Evas *ee, int on);
175    void (*fn_withdrawn_set) (Ecore_Evas *ee, int withdrawn);
176    void (*fn_sticky_set) (Ecore_Evas *ee, int sticky);
177    void (*fn_ignore_events_set) (Ecore_Evas *ee, int ignore);
178    void (*fn_alpha_set) (Ecore_Evas *ee, int alpha);
179    void (*fn_transparent_set) (Ecore_Evas *ee, int transparent);
180    void (*fn_profiles_set) (Ecore_Evas *ee, const char **profiles, int num_profiles);
181
182    void (*fn_window_group_set) (Ecore_Evas *ee, const Ecore_Evas *ee_group);
183    void (*fn_aspect_set) (Ecore_Evas *ee, double aspect);
184    void (*fn_urgent_set) (Ecore_Evas *ee, int urgent);
185    void (*fn_modal_set) (Ecore_Evas *ee, int modal);
186    void (*fn_demands_attention_set) (Ecore_Evas *ee, int demand);
187    void (*fn_focus_skip_set) (Ecore_Evas *ee, int skip);
188
189    int (*fn_render) (Ecore_Evas *ee);
190    void (*fn_screen_geometry_get) (const Ecore_Evas *ee, int *x, int *y, int *w, int *h);
191    void (*fn_screen_dpi_get) (const Ecore_Evas *ee, int *xdpi, int *ydpi);
192 };
193
194 struct _Ecore_Evas_Engine
195 {
196    Ecore_Evas_Engine_Func *func;
197
198 /* TODO: UGLY! This should be an union or inheritance! */
199 #ifdef BUILD_ECORE_EVAS_X11
200    struct 
201      {
202       Ecore_X_Window win_root;
203       Eina_List     *win_extra;
204       Ecore_X_Pixmap pmap;
205       Ecore_X_Pixmap mask;
206       Ecore_X_GC     gc;
207       Ecore_X_XRegion *damages;
208       Ecore_X_Sync_Counter sync_counter;
209       Ecore_X_Window leader;
210       Ecore_X_Sync_Counter netwm_sync_counter;
211       int            netwm_sync_val_hi;
212       unsigned int   netwm_sync_val_lo;
213       int            sync_val; // bigger! this will screw up at 2 billion frames (414 days of continual rendering @ 60fps)
214       int            screen_num;
215       int            px, py, pw, ph;
216       unsigned char  direct_resize : 1;
217       unsigned char  using_bg_pixmap : 1;
218       unsigned char  managed : 1;
219       unsigned char  sync_began : 1;
220       unsigned char  sync_cancel : 1;
221       unsigned char  netwm_sync_set : 1;
222       unsigned char  configure_coming : 1;
223       struct {
224            unsigned char modal : 1;
225            unsigned char sticky : 1;
226            unsigned char maximized_v : 1;
227            unsigned char maximized_h : 1;
228            unsigned char shaded : 1;
229            unsigned char skip_taskbar : 1;
230            unsigned char skip_pager : 1;
231            unsigned char fullscreen : 1;
232            unsigned char above : 1;
233            unsigned char below : 1;
234       } state;
235       Ecore_X_Window win_shaped_input;
236    } x;
237 #endif
238 #ifdef BUILD_ECORE_EVAS_FB
239    struct {
240       int real_w;
241       int real_h;
242    } fb;
243 #endif
244 #ifdef BUILD_ECORE_EVAS_SOFTWARE_BUFFER
245    struct {
246       void *pixels;
247       Evas_Object *image;
248       void  (*free_func) (void *data, void *pix);
249       void *(*alloc_func) (void *data, int size);
250       void *data;
251    } buffer;
252 #endif
253 #ifdef BUILD_ECORE_EVAS_DIRECTFB
254    struct {
255       Ecore_DirectFB_Window *window;
256    } directfb;
257 #endif
258 #ifdef BUILD_ECORE_EVAS_WIN32
259    struct {
260       Ecore_Win32_Window *parent;
261       struct {
262          unsigned char region     : 1;
263          unsigned char fullscreen : 1;
264       } state;
265    } win32;
266 #endif
267 #ifdef BUILD_ECORE_EVAS_SOFTWARE_16_WINCE
268    struct {
269       Ecore_WinCE_Window *window;
270       struct {
271          unsigned char fullscreen : 1;
272       } state;
273    } wince;
274 #endif
275 #ifdef BUILD_ECORE_EVAS_EWS
276    struct {
277       Evas_Object *image;
278    } ews;
279 #endif
280
281 #if defined(BUILD_ECORE_EVAS_WAYLAND_SHM) || defined(BUILD_ECORE_EVAS_WAYLAND_EGL)
282    struct 
283      {
284         Ecore_Wl_Window *parent, *win;
285         Evas_Object *frame;
286
287 # if defined(BUILD_ECORE_EVAS_WAYLAND_SHM)
288         struct wl_shm_pool *pool;
289         size_t pool_size;
290         void *pool_data;
291         struct wl_buffer *buffer;
292         Eina_Bool buffer_valid;
293 # endif
294
295      } wl;
296 #endif
297
298    Ecore_Timer *idle_flush_timer;
299 };
300
301 struct _Ecore_Evas
302 {
303    EINA_INLIST;
304    ECORE_MAGIC;
305    Evas       *evas;
306    const char *driver;
307    char       *name;
308    int         x, y, w, h;
309    short       rotation;
310    Eina_Bool   shaped  : 1;
311    Eina_Bool   visible : 1;
312    Eina_Bool   draw_ok : 1;
313    Eina_Bool   should_be_visible : 1;
314    Eina_Bool   alpha  : 1;
315    Eina_Bool   transparent  : 1;
316    Eina_Bool   in  : 1;
317
318    Eina_Hash  *data;
319
320    struct {
321       int      x, y, w, h;
322    } req;
323    
324    struct {
325       int      x, y;
326    } mouse;
327
328    struct {
329       int      w, h;
330    } expecting_resize;
331
332    struct {
333       char           *title;
334       char           *name;
335       char           *clas;
336       char           *profile;
337       struct {
338          int          w, h;
339       } min,
340         max,
341         base,
342         step;
343       struct {
344          Evas_Object *object;
345          int          layer;
346          struct {
347             int       x, y;
348          } hot;
349       } cursor;
350       int             layer;
351       Ecore_Window    window;
352       unsigned char   avoid_damage;
353       Ecore_Evas     *group_ee;
354       Ecore_Window    group_ee_win;
355       double          aspect;
356       char            focused      : 1;
357       char            iconified    : 1;
358       char            borderless   : 1;
359       char            override     : 1;
360       char            maximized    : 1;
361       char            fullscreen   : 1;
362       char            withdrawn    : 1;
363       char            sticky       : 1;
364       char            request_pos  : 1;
365       char            draw_frame   : 1;
366       char            hwsurface    : 1;
367       char            urgent           : 1;
368       char            modal            : 1;
369       char            demand_attention : 1;
370       char            focus_skip       : 1;
371   } prop;
372
373    struct {
374       void          (*fn_resize) (Ecore_Evas *ee);
375       void          (*fn_move) (Ecore_Evas *ee);
376       void          (*fn_show) (Ecore_Evas *ee);
377       void          (*fn_hide) (Ecore_Evas *ee);
378       void          (*fn_delete_request) (Ecore_Evas *ee);
379       void          (*fn_destroy) (Ecore_Evas *ee);
380       void          (*fn_focus_in) (Ecore_Evas *ee);
381       void          (*fn_focus_out) (Ecore_Evas *ee);
382       void          (*fn_sticky) (Ecore_Evas *ee);
383       void          (*fn_unsticky) (Ecore_Evas *ee);
384       void          (*fn_mouse_in) (Ecore_Evas *ee);
385       void          (*fn_mouse_out) (Ecore_Evas *ee);
386       void          (*fn_pre_render) (Ecore_Evas *ee);
387       void          (*fn_post_render) (Ecore_Evas *ee);
388       void          (*fn_pre_free) (Ecore_Evas *ee);
389       void          (*fn_state_change) (Ecore_Evas *ee);
390    } func;
391
392    Ecore_Evas_Engine engine;
393    Eina_List *sub_ecore_evas;
394
395    int refcount;
396
397    unsigned char ignore_events : 1;
398    unsigned char manual_render : 1;
399    unsigned char registered : 1;
400    unsigned char no_comp_sync  : 1;
401    unsigned char semi_sync  : 1;
402    unsigned char deleted : 1;
403    int           gl_sync_draw_done; // added by gl77.lee
404 };
405
406 void _ecore_evas_ref(Ecore_Evas *ee);
407 void _ecore_evas_unref(Ecore_Evas *ee);
408
409 #ifdef BUILD_ECORE_EVAS_X11
410 int _ecore_evas_x_shutdown(void);
411 #endif
412 #ifdef BUILD_ECORE_EVAS_FB
413 int _ecore_evas_fb_shutdown(void);
414 #endif
415 #ifdef BUILD_ECORE_EVAS_SOFTWARE_BUFFER
416 int _ecore_evas_buffer_shutdown(void);
417 int _ecore_evas_buffer_render(Ecore_Evas *ee);
418 #endif
419 #ifdef BUILD_ECORE_EVAS_DIRECTFB
420 int _ecore_evas_directfb_shutdown(void);
421 #endif
422 #ifdef BUILD_ECORE_EVAS_WIN32
423 int _ecore_evas_win32_shutdown(void);
424 #endif
425 #ifdef BUILD_ECORE_EVAS_SOFTWARE_16_WINCE
426 int _ecore_evas_wince_shutdown(void);
427 #endif
428 #ifdef BUILD_ECORE_EVAS_EWS
429 void _ecore_evas_ews_events_init(void);
430 int _ecore_evas_ews_shutdown(void);
431 #endif
432
433 #ifdef BUILD_ECORE_EVAS_WAYLAND_SHM
434 void _ecore_evas_wayland_shm_resize(Ecore_Evas *ee, int location);
435 void _ecore_evas_wayland_shm_move(Ecore_Evas *ee, int x, int y);
436 void _ecore_evas_wayland_shm_drag_start(Ecore_Evas *ee, Ecore_Evas *drag_ee, void *source);
437 void _ecore_evas_wayland_shm_pointer_set(Ecore_Evas *ee, int hot_x, int hot_y);
438 void _ecore_evas_wayland_shm_type_set(Ecore_Evas *ee, int type);
439 #endif
440
441 #ifdef BUILD_ECORE_EVAS_WAYLAND_EGL
442 void _ecore_evas_wayland_egl_resize(Ecore_Evas *ee, int location);
443 void _ecore_evas_wayland_egl_move(Ecore_Evas *ee, int x, int y);
444 void _ecore_evas_wayland_egl_drag_start(Ecore_Evas *ee, Ecore_Evas *drag_ee, void *source);
445 void _ecore_evas_wayland_egl_pointer_set(Ecore_Evas *ee, int hot_x, int hot_y);
446 void _ecore_evas_wayland_egl_type_set(Ecore_Evas *ee, int type);
447 #endif
448
449 void _ecore_evas_fps_debug_init(void);
450 void _ecore_evas_fps_debug_shutdown(void);
451 void _ecore_evas_fps_debug_rendertime_add(double t);
452 void _ecore_evas_register(Ecore_Evas *ee);
453 void _ecore_evas_free(Ecore_Evas *ee);
454 void _ecore_evas_idle_timeout_update(Ecore_Evas *ee);
455 void _ecore_evas_mouse_move_process(Ecore_Evas *ee, int x, int y, unsigned int timestamp);
456 void _ecore_evas_mouse_multi_move_process(Ecore_Evas *ee, int device,
457                                           int x, int y,
458                                           double radius,
459                                           double radius_x, double radius_y,
460                                           double pressure,
461                                           double angle,
462                                           double mx, double my,
463                                           unsigned int timestamp);
464 void _ecore_evas_mouse_multi_down_process(Ecore_Evas *ee, int device,
465                                           int x, int y,
466                                           double radius,
467                                           double radius_x, double radius_y,
468                                           double pressure,
469                                           double angle,
470                                           double mx, double my,
471                                           Evas_Button_Flags flags,
472                                           unsigned int timestamp);
473 void _ecore_evas_mouse_multi_up_process(Ecore_Evas *ee, int device,
474                                         int x, int y,
475                                         double radius,
476                                         double radius_x, double radius_y,
477                                         double pressure,
478                                         double angle,
479                                         double mx, double my,
480                                         Evas_Button_Flags flags,
481                                         unsigned int timestamp);
482
483 extern Eina_Bool _ecore_evas_app_comp_sync;
484
485 void _ecore_evas_extn_init(void);
486 void _ecore_evas_extn_shutdown(void);
487
488 #endif