Tizen 2.1 base
[framework/uifw/ecore.git] / src / lib / ecore_evas / Ecore_Evas.h
1 #ifndef _ECORE_EVAS_H
2 #define _ECORE_EVAS_H
3
4 #include <Evas.h>
5 #include <Ecore_Getopt.h>
6 #include <Ecore_Input.h>
7
8 #ifdef EAPI
9 # undef EAPI
10 #endif
11
12 #ifdef _WIN32
13 # ifdef EFL_ECORE_EVAS_BUILD
14 #  ifdef DLL_EXPORT
15 #   define EAPI __declspec(dllexport)
16 #  else
17 #   define EAPI
18 #  endif /* ! DLL_EXPORT */
19 # else
20 #  define EAPI __declspec(dllimport)
21 # endif /* ! EFL_ECORE_EVAS_BUILD */
22 #else
23 # ifdef __GNUC__
24 #  if __GNUC__ >= 4
25 #   define EAPI __attribute__ ((visibility("default")))
26 #  else
27 #   define EAPI
28 #  endif
29 # else
30 #  define EAPI
31 # endif
32 #endif /* ! _WIN32 */
33
34 /**
35  * @file Ecore_Evas.h
36  * @brief Evas wrapper functions
37  *
38  * The following is a list of example that partially exemplify Ecore_Evas's API:
39  * @li @ref ecore_evas_callbacks_example_c
40  * @li @ref ecore_evas_object_example_c
41  * @li @ref ecore_evas_basics_example_c
42  * @li @ref Ecore_Evas_Window_Sizes_Example_c
43  * @li @ref Ecore_Evas_Buffer_Example_01_c
44  * @li @ref Ecore_Evas_Buffer_Example_02_c
45  */
46
47 /* FIXME:
48  * to do soon:
49  * - iconfication api needs to work
50  * - maximization api needs to work
51  * - document all calls
52  *
53  * later:
54  * - buffer back-end that renders to an evas_image_object ???
55  * - qt back-end ???
56  * - dfb back-end ??? (dfb's threads make this REALLY HARD)
57  */
58
59 #ifdef __cplusplus
60 extern "C" {
61 #endif
62
63 /**
64  * @defgroup Ecore_Evas_Group Ecore_Evas wrapper/helper set of functions
65  *
66  * Ecore evas is a set of functions that makes it easy to tie together ecore's
67  * main loop and input handling to evas. As such it's a natural base for EFL
68  * applications. While this combination makes it easy to create the basic
69  * aspects all applications need, for normal applications(ones with buttons,
70  * checkboxes and layouts) one should consider using Elementary.
71  *
72  * Ecore evas is extremely well suited for applications that are not based on
73  * widgets. It has a main loop that delivers events, does basic window handling
74  * and leaves all of the drawing up to the user. This works very well if used
75  * in conjunction with Edje or if doing custom drawing as, for example, is done
76  * in games.
77  *
78  * This is a list of examples of these functions:
79  * @li @ref ecore_evas_basics_example_c
80  * @li @ref ecore_evas_object_example_c
81  * @li @ref ecore_evas_callbacks_example_c
82  * @li @ref Ecore_Evas_Window_Sizes_Example_c
83  * @li @ref Ecore_Evas_Buffer_Example_01_c
84  * @li @ref Ecore_Evas_Buffer_Example_02_c
85  *
86  * @{
87  */
88
89 /* these are dummy and just tell u what API levels ecore_evas supports - not if
90  * the actual support is compiled in. you need to query for that separately.
91  */
92 #define HAVE_ECORE_EVAS_X 1
93 #define HAVE_ECORE_EVAS_FB 1
94 #define HAVE_ECORE_EVAS_X11_GL 1
95 #define HAVE_ECORE_EVAS_X11_16 1
96 #define HAVE_ECORE_EVAS_DIRECTFB 1
97 #define HAVE_ECORE_EVAS_WIN32 1
98 #define HAVE_ECORE_EVAS_COCOA 1
99 #define HAVE_ECORE_EVAS_SDL 1
100 #define HAVE_ECORE_EVAS_WINCE 1
101 #define HAVE_ECORE_EVAS_EWS 1
102 #define HAVE_ECORE_EVAS_PSL1GHT 1
103 #define HAVE_ECORE_EVAS_WAYLAND_SHM 1
104 #define HAVE_ECORE_EVAS_WAYLAND_EGL 1
105
106 typedef enum _Ecore_Evas_Engine_Type
107 {
108    ECORE_EVAS_ENGINE_SOFTWARE_BUFFER,
109    ECORE_EVAS_ENGINE_SOFTWARE_XLIB,
110    ECORE_EVAS_ENGINE_XRENDER_X11,
111    ECORE_EVAS_ENGINE_OPENGL_X11,
112    ECORE_EVAS_ENGINE_SOFTWARE_XCB,
113    ECORE_EVAS_ENGINE_XRENDER_XCB,
114    ECORE_EVAS_ENGINE_SOFTWARE_GDI,
115    ECORE_EVAS_ENGINE_SOFTWARE_DDRAW,
116    ECORE_EVAS_ENGINE_DIRECT3D,
117    ECORE_EVAS_ENGINE_OPENGL_GLEW,
118    ECORE_EVAS_ENGINE_OPENGL_COCOA,
119    ECORE_EVAS_ENGINE_SOFTWARE_SDL,
120    ECORE_EVAS_ENGINE_DIRECTFB,
121    ECORE_EVAS_ENGINE_SOFTWARE_FB,
122    ECORE_EVAS_ENGINE_SOFTWARE_8_X11,
123    ECORE_EVAS_ENGINE_SOFTWARE_16_X11,
124    ECORE_EVAS_ENGINE_SOFTWARE_16_DDRAW,
125    ECORE_EVAS_ENGINE_SOFTWARE_16_WINCE,
126    ECORE_EVAS_ENGINE_OPENGL_SDL,
127    ECORE_EVAS_ENGINE_EWS,
128    ECORE_EVAS_ENGINE_PSL1GHT,
129    ECORE_EVAS_ENGINE_WAYLAND_SHM,
130    ECORE_EVAS_ENGINE_WAYLAND_EGL
131 } Ecore_Evas_Engine_Type;
132
133 typedef enum _Ecore_Evas_Avoid_Damage_Type
134 {
135    ECORE_EVAS_AVOID_DAMAGE_NONE = 0,
136    ECORE_EVAS_AVOID_DAMAGE_EXPOSE = 1,
137    ECORE_EVAS_AVOID_DAMAGE_BUILT_IN = 2
138 } Ecore_Evas_Avoid_Damage_Type;
139
140 typedef enum _Ecore_Evas_Object_Associate_Flags
141 {
142   ECORE_EVAS_OBJECT_ASSOCIATE_BASE  = 0,
143   ECORE_EVAS_OBJECT_ASSOCIATE_STACK = 1 << 0,
144   ECORE_EVAS_OBJECT_ASSOCIATE_LAYER = 1 << 1,
145   ECORE_EVAS_OBJECT_ASSOCIATE_DEL = 1 << 2
146 } Ecore_Evas_Object_Associate_Flags;
147
148 #ifndef _ECORE_X_H
149 #define _ECORE_X_WINDOW_PREDEF
150 typedef unsigned int Ecore_X_Window;
151 #endif
152
153 #ifndef _ECORE_DIRECTFB_H
154 #define _ECORE_DIRECTFB_WINDOW_PREDEF
155 typedef struct _Ecore_DirectFB_Window Ecore_DirectFB_Window;
156 #endif
157
158 #ifndef __ECORE_WIN32_H__
159 typedef struct _Ecore_Win32_Window Ecore_Win32_Window;
160 #endif
161
162 #ifndef __ECORE_WINCE_H__
163 typedef struct _Ecore_WinCE_Window Ecore_WinCE_Window;
164 #endif
165
166 #ifndef __ECORE_COCOA_H__
167 typedef struct _Ecore_Cocoa_Window Ecore_Cocoa_Window;
168 #endif
169
170 #ifndef _ECORE_EVAS_PRIVATE_H
171 /* basic data types */
172 typedef struct _Ecore_Evas Ecore_Evas;
173 typedef void   (*Ecore_Evas_Event_Cb) (Ecore_Evas *ee); /**< Callback used for several ecore evas events @since 1.2 */
174 #endif
175
176 #ifndef _ECORE_WAYLAND_H_
177 #define _ECORE_WAYLAND_WINDOW_PREDEF
178 typedef struct _Ecore_Wl_Window Ecore_Wl_Window;
179 #endif
180
181 /* module setup/shutdown calls */
182
183 EAPI int         ecore_evas_engine_type_supported_get(Ecore_Evas_Engine_Type engine);
184
185 /**
186  * @brief Init the Ecore_Evas system.
187  *
188  * @return How many times the lib has been initialized, 0 indicates failure.
189  *
190  * Set up the Evas wrapper system. Init Evas and Ecore libraries.
191  *
192  * @see ecore_evas_shutdown()
193  */
194 EAPI int         ecore_evas_init(void);
195 /**
196  * @brief Shut down the Ecore_Evas system.
197  *
198  * @return 0 if ecore evas is fully shut down, or > 0 if it still being used.
199  *
200  * This closes the Evas wrapper system down. Shut down Evas and Ecore libraries.
201  *
202  * @see ecore_evas_init()
203  */
204 EAPI int         ecore_evas_shutdown(void);
205
206 EAPI void        ecore_evas_app_comp_sync_set(Eina_Bool do_sync);
207 EAPI Eina_Bool   ecore_evas_app_comp_sync_get(void);
208
209 /**
210  * @brief Returns a list of supported engines names.
211  *
212  * @return Newly allocated list with engines names. Engines names
213  * strings are internal and should be considered constants, do not
214  * free or modify them, to free the list use ecore_evas_engines_free().
215  */
216 EAPI Eina_List  *ecore_evas_engines_get(void);
217 /**
218  * @brief Free list returned by ecore_evas_engines_get()
219  *
220  * @param engines list with engines names
221  */
222 EAPI void        ecore_evas_engines_free(Eina_List *engines);
223 /**
224  * @brief Creates a new Ecore_Evas based on engine name and common parameters.
225  *
226  * @param engine_name engine name as returned by
227  *        ecore_evas_engines_get() or @c NULL to use environment variable
228  *        ECORE_EVAS_ENGINE, that can be undefined and in this case
229  *        this call will try to find the first working engine.
230  * @param x horizontal position of window (not supported in all engines)
231  * @param y vertical position of window (not supported in all engines)
232  * @param w width of window
233  * @param h height of window
234  * @param extra_options string with extra parameter, dependent on engines
235  *        or @ NULL. String is usually in the form: 'key1=value1;key2=value2'.
236  *        Pay attention that when getting that from shell commands, most
237  *        consider ';' as the command terminator, so you need to escape
238  *        it or use quotes.
239  *
240  * @return Ecore_Evas instance or @c NULL if creation failed.
241  */
242 EAPI Ecore_Evas *ecore_evas_new(const char *engine_name, int x, int y, int w, int h, const char *extra_options);
243 /**
244  * @brief Set whether an Ecore_Evas has an alpha channel or not.
245  *
246  * @param ee The Ecore_Evas to shape
247  * @param alpha @c EINA_TRUE to enable the alpha channel, @c EINA_FALSE to
248  * disable it
249  *
250  * This function allows you to make an Ecore_Evas translucent using an
251  * alpha channel. See ecore_evas_shaped_set() for details. The difference
252  * between a shaped window and a window with an alpha channel is that an
253  * alpha channel supports multiple levels of transparency, as opposed to
254  * the 1 bit transparency of a shaped window (a pixel is either opaque, or
255  * it's transparent).
256  *
257  * @warning Support for this depends on the underlying windowing system.
258  */
259 EAPI void        ecore_evas_alpha_set(Ecore_Evas *ee, Eina_Bool alpha);
260 /**
261  * @brief Query whether an Ecore_Evas has an alpha channel.
262  * @param ee The Ecore_Evas to query.
263  * @return @c EINA_TRUE if ee has an alpha channel, @c EINA_FALSE if it does
264  * not.
265  *
266  * This function returns @c EINA_TRUE if @p ee has an alpha channel, and
267  * @c EINA_FALSE if it does not.
268  *
269  * @see ecore_evas_alpha_set()
270  */
271 EAPI Eina_Bool   ecore_evas_alpha_get(const Ecore_Evas *ee);
272 /**
273  * @brief Set whether an Ecore_Evas has an transparent window or not.
274  *
275  * @param ee The Ecore_Evas to shape
276  * @param transparent @c EINA_TRUE to enable the transparent window,
277  * @c EINA_FALSE to disable it
278  *
279  * This function sets some translucency options, for more complete support see
280  * ecore_evas_alpha_set().
281  *
282  * @warning Support for this depends on the underlying windowing system.
283  *
284  * @see ecore_evas_alpha_set()
285  */
286 EAPI void        ecore_evas_transparent_set(Ecore_Evas *ee, Eina_Bool transparent);
287 /**
288  * @brief  Query whether an Ecore_Evas is transparent.
289  *
290  * @param ee The Ecore_Evas to query.
291  * @return @c EINA_TRUE if ee is transparent, @c EINA_FALSE if it isn't.
292  *
293  * @see ecore_evas_transparent_set()
294  */
295 EAPI Eina_Bool   ecore_evas_transparent_get(const Ecore_Evas *ee);
296 /**
297  * @brief  Get the geometry of an Ecore_Evas.
298  *
299  * @param ee The Ecore_Evas whose geometry y
300  * @param x A pointer to an int to place the x coordinate in
301  * @param y A pointer to an int to place the y coordinate in
302  * @param w A pointer to an int to place the w size in
303  * @param h A pointer to an int to place the h size in
304  *
305  * This function takes four pointers to (already allocated) ints, and places
306  * the geometry of @p ee in them. If any of the parameters is not desired you
307  * may pass @c NULL on them.
308  *
309  * @code
310  * int x, y, w, h;
311  * ecore_evas_geometry_get(ee, &x, &y, &w, &h);
312  * @endcode
313  *
314  * @see ecore_evas_new()
315  * @see ecore_evas_resize()
316  * @see ecore_evas_move()
317  * @see ecore_evas_move_resize()
318  */
319 EAPI void        ecore_evas_geometry_get(const Ecore_Evas *ee, int *x, int *y, int *w, int *h);
320 /**
321  * @brief  Get the geometry which an Ecore_Evas was latest recently requested.
322  *
323  * @param ee The Ecore_Evas whose geometry y
324  * @param x A pointer to an int to place the x coordinate in
325  * @param y A pointer to an int to place the y coordinate in
326  * @param w A pointer to an int to place the w size in
327  * @param h A pointer to an int to place the h size in
328  *
329  * This function takes four pointers to (already allocated) ints, and places
330  * the geometry which @p ee was latest recently requested . If any of the
331  * parameters is not desired you may pass @c NULL on them.
332  * This function can represent recently requested geometry.
333  * ecore_evas_geometry_get function returns the value is updated after engine
334  * finished request. By comparison, ecore_evas_request_geometry_get returns
335  * recently requested value.
336  *
337  * @code
338  * int x, y, w, h;
339  * ecore_evas_request_geometry_get(ee, &x, &y, &w, &h);
340  * @endcode
341  *
342  * @since 1.1
343  */
344 EAPI void        ecore_evas_request_geometry_get(const Ecore_Evas *ee, int *x, int *y, int *w, int *h);
345 /**
346  * @brief Set the focus of an Ecore_Evas' window.
347  *
348  * @param ee The Ecore_Evas
349  * @param on @c EINA_TRUE for focus, @c EINA_FALSE to defocus.
350  *
351  * This function focuses @p ee if @p on is @c EINA_TRUE, or unfocuses @p ee if
352  * @p on is @c EINA_FALSE.
353  *
354  * @warning Support for this depends on the underlying windowing system.
355  */
356 EAPI void        ecore_evas_focus_set(Ecore_Evas *ee, Eina_Bool on);
357 /**
358  * @brief Query whether an Ecore_Evas' window is focused or not.
359  *
360  * @param ee The Ecore_Evas to set
361  * @return @c EINA_TRUE if @p ee if focused, @c EINA_FALSE if not.
362  *
363  * @see ecore_evas_focus_set()
364  */
365 EAPI Eina_Bool   ecore_evas_focus_get(const Ecore_Evas *ee);
366 /**
367  * @brief Iconify or uniconify an Ecore_Evas' window.
368  *
369  * @param ee The Ecore_Evas
370  * @param on @c EINA_TRUE to iconify, @c EINA_FALSE to uniconify.
371  *
372  * This function iconifies @p ee if @p on is @c EINA_TRUE, or uniconifies @p ee
373  * if @p on is @c EINA_FALSE.
374  *
375  * @note Iconify and minimize are synonyms.
376  *
377  * @warning Support for this depends on the underlying windowing system.
378  */
379 EAPI void        ecore_evas_iconified_set(Ecore_Evas *ee, Eina_Bool on);
380 /**
381  * @brief Query whether an Ecore_Evas' window is iconified or not.
382  *
383  * @param ee The Ecore_Evas to set
384  * @return @c EINA_TRUE if @p ee is iconified, @c EINA_FALSE if not.
385  *
386  * @note Iconify and minimize are synonyms.
387  *
388  * @see ecore_evas_iconified_set()
389  */
390 EAPI Eina_Bool   ecore_evas_iconified_get(const Ecore_Evas *ee);
391 /**
392  * @brief Set whether an Ecore_Evas' window is borderless or not.
393  *
394  * @param ee The Ecore_Evas
395  * @param on @c EINA_TRUE for borderless, @c EINA_FALSE for bordered.
396  *
397  * This function makes @p ee borderless if @p on is @c EINA_TRUE, or bordered
398  * if @p on is @c EINA_FALSE.
399  *
400  * @warning Support for this depends on the underlying windowing system.
401  */
402 EAPI void        ecore_evas_borderless_set(Ecore_Evas *ee, Eina_Bool on);
403 /**
404  * @brief Query whether an Ecore_Evas' window is borderless or not.
405  *
406  * @param ee The Ecore_Evas to set
407  * @return @c EINA_TRUE if @p ee is borderless, @c EINA_FALSE if not.
408  *
409  * @see ecore_evas_borderless_set()
410  */
411 EAPI Eina_Bool   ecore_evas_borderless_get(const Ecore_Evas *ee);
412 /**
413  * @brief Set whether or not an Ecore_Evas' window is fullscreen.
414  *
415  * @param ee The Ecore_Evas
416  * @param on @c EINA_TRUE fullscreen, @c EINA_FALSE not.
417  *
418  * This function causes @p ee to be fullscreen if @p on is @c EINA_TRUE, or
419  * not if @p on is @c EINA_FALSE.
420  *
421  * @warning Support for this depends on the underlying windowing system.
422  */
423 EAPI void        ecore_evas_fullscreen_set(Ecore_Evas *ee, Eina_Bool on);
424 /**
425  * @brief Query whether an Ecore_Evas' window is fullscreen or not.
426  *
427  * @param ee The Ecore_Evas to set
428  * @return @c EINA_TRUE if @p ee is fullscreen, @c EINA_FALSE if not.
429  *
430  * @see ecore_evas_fullscreen_set()
431  */
432 EAPI Eina_Bool   ecore_evas_fullscreen_get(const Ecore_Evas *ee);
433 /**
434  * @brief Set another window that this window is a group member of
435  *
436  * @param ee The Ecore_Evas
437  * @param ee_group The other group member
438  *
439  * If @p ee_group is @c NULL, @p ee is removed from the group, otherwise it is
440  * added. Note that if you free the @p ee_group canvas before @p ee, then
441  * getting the group canvas with ecore_evas_window_group_get() will return
442  * an invalid handle.
443  *
444  * @warning Support for this depends on the underlying windowing system.
445  * @since 1.2
446  */
447 EAPI void        ecore_evas_window_group_set(Ecore_Evas *ee, const Ecore_Evas *ee_group);
448 /**
449  * @brief Get the canvas group set.
450  *
451  * This returns the handle set by ecore_evas_window_group_set().
452  *
453  * @param ee The Ecore_Evas to set
454  * @return The Canvas group handle
455  *
456  * @see ecore_evas_window_group_set()
457  * @since 1.2
458  */
459 EAPI const Ecore_Evas *ecore_evas_window_group_get(const Ecore_Evas *ee);
460 /**
461  * @brief Set the aspect ratio of a canvas window
462  *
463  * @param ee The Ecore_Evas
464  * @param aspect The aspect ratio (width divided by height), or 0 to disable
465  *
466  * This sets the desired aspect ratio of a canvas window
467  *
468  * @warning Support for this depends on the underlying windowing system.
469  * @since 1.2
470  */
471 EAPI void        ecore_evas_aspect_set(Ecore_Evas *ee, double aspect);
472 /**
473  * @brief Get the aspect ratio of a canvas window
474  *
475  * This returns the value set by ecore_evas_aspect_set().
476  *
477  * @param ee The Ecore_Evas to set
478  * @return The aspect ratio
479  *
480  * @see ecore_evas_aspect_set()
481  * @since 1.2
482  */
483 EAPI double      ecore_evas_aspect_get(const Ecore_Evas *ee);
484 /**
485  * @brief Set The urgent hint flag
486  *
487  * @param ee The Ecore_Evas
488  * @param urgent The urgent state flag
489  *
490  * This sets the "urgent" state hint on a window so the desktop environment
491  * can highlight it somehow.
492  *
493  * @warning Support for this depends on the underlying windowing system.
494  * @since 1.2
495  */
496 EAPI void        ecore_evas_urgent_set(Ecore_Evas *ee, Eina_Bool urgent);
497 /**
498  * @brief Get the urgent state on the cavas window
499  *
500  * This returns the value set by ecore_evas_urgent_set()
501  *
502  * @param ee The Ecore_Evas to set
503  * @return The urgent state set
504  *
505  * @see ecore_evas_urgent_set()
506  * @since 1.2
507  */
508 EAPI Eina_Bool   ecore_evas_urgent_get(const Ecore_Evas *ee);
509 /**
510  * @brief Set the modal state flag on the canvas window
511  *
512  * @param ee The Ecore_Evas
513  * @param modal The modal hint flag
514  *
515  * This hints if the window should be modal (eg if it is also transient
516  * for another window, the other window will maybe be denied focus by
517  * the desktop window manager).
518  *
519  * @warning Support for this depends on the underlying windowing system.
520  * @since 1.2
521  */
522 EAPI void        ecore_evas_modal_set(Ecore_Evas *ee, Eina_Bool modal);
523 /**
524  * @brief Get The modal flag
525  *
526  * This returns the value set by ecore_evas_modal_set().
527  *
528  * @param ee The Ecore_Evas to set
529  * @return The modal flag
530  *
531  * @see ecore_evas_modal_set()
532  * @since 1.2
533  */
534 EAPI Eina_Bool   ecore_evas_modal_get(const Ecore_Evas *ee);
535 /**
536  * @brief Set the "i demand attention" flag on a canvas window
537  *
538  * @param ee The Ecore_Evas
539  * @param demand The flag state to set
540  *
541  * A window may demand attention now (eg you must enter a password before
542  * continuing), and so it may flag a window with this.
543  *
544  * @warning Support for this depends on the underlying windowing system.
545  * @since 1.2
546  */
547 EAPI void        ecore_evas_demand_attention_set(Ecore_Evas *ee, Eina_Bool demand);
548 /**
549  * @brief Get the "i demand attention" flag
550  *
551  * This returns the value set by ecore_evas_demand_attention_set().
552  *
553  * @param ee The Ecore_Evas to set
554  * @return The "i demand attention" flag.
555  *
556  * @see ecore_evas_demand_attention_set()
557  * @since 1.2
558  */
559 EAPI Eina_Bool   ecore_evas_demand_attention_get(const Ecore_Evas *ee);
560 /**
561  * @brief Set the "focus skip" flag
562  *
563  * @param ee The Ecore_Evas
564  * @param skip The "focus skip" state to set.
565  *
566  * A window may not want to accept focus, be in the taskbar, pager etc.
567  * sometimes (example for a small notification window that hovers around
568  * a taskbar or panel, or hovers around a window until some activity
569  * dismisses it).
570  *
571  * @warning Support for this depends on the underlying windowing system.
572  * @since 1.2
573  */
574 EAPI void        ecore_evas_focus_skip_set(Ecore_Evas *ee, Eina_Bool skip);
575 /**
576  * @brief Get the "focus skip" flag
577  *
578  * This returns the value set by ecore_evas_focus_skip_set().
579  *
580  * @param ee The Ecore_Evas to set
581  * @return The "focus skip" flag.
582  *
583  * @see ecore_evas_focus_skip_set()
584  * @since 1.2
585  */
586 EAPI Eina_Bool   ecore_evas_focus_skip_get(const Ecore_Evas *ee);
587
588 /**
589  * @brief Set if this evas should ignore @b all events.
590  *
591  * @param ee The Ecore_Evas whose window's to ignore events.
592  * @param ignore The Ecore_Evas new ignore state.
593  *
594  * @warning Support for this depends on the underlying windowing system.
595  */
596 EAPI void        ecore_evas_ignore_events_set(Ecore_Evas *ee, Eina_Bool ignore);
597 /**
598  * @brief Returns the ignore state of an Ecore_Evas' window.
599  *
600  * @param ee The Ecore_Evas whose window's ignore events state is returned.
601  * @return The Ecore_Evas window's ignore state.
602  *
603  * @see ecore_evas_ignore_events_set()
604  */
605 EAPI Eina_Bool   ecore_evas_ignore_events_get(const Ecore_Evas *ee);
606 /**
607  * @brief Query whether an Ecore_Evas' window is visible or not.
608  *
609  * @param ee The Ecore_Evas to query.
610  * @return 1 if visible, 0 if not.
611  *
612  * This function queries @p ee and returns 1 if it is visible, and 0 if not.
613  *
614  * @see ecore_evas_show()
615  * @see ecore_evas_hide()
616  */
617 EAPI int         ecore_evas_visibility_get(const Ecore_Evas *ee);
618 /**
619  * @brief Set the layer of an Ecore_Evas' window.
620  *
621  * @param ee The Ecore_Evas
622  * @param layer The layer to put @p ee on.
623  *
624  * This function moves @p ee to the layer @p layer.
625  *
626  * @warning Support for this depends on the underlying windowing system.
627  *
628  * @see ecore_evas_lower()
629  * @see ecore_evas_raise()
630  */
631 EAPI void        ecore_evas_layer_set(Ecore_Evas *ee, int layer);
632 /**
633  * @brief Get the layer of an Ecore_Evas' window.
634  *
635  * @param ee The Ecore_Evas to set
636  * @return the layer @p ee's window is on.
637  *
638  * @see ecore_evas_layer_set()
639  * @see ecore_evas_lower()
640  * @see ecore_evas_raise()
641  */
642 EAPI int         ecore_evas_layer_get(const Ecore_Evas *ee);
643 /**
644  * @brief Maximize (or unmaximize) an Ecore_Evas' window.
645  *
646  * @param ee The Ecore_Evas
647  * @param on @c EINA_TRUE to maximize, @c EINA_FALSE to unmaximize.
648  *
649  * This function maximizes @p ee if @p on is @c EINA_TRUE, or unmaximizes @p ee
650  * if @p on is @c EINA_FALSE.
651  *
652  * @warning Support for this depends on the underlying windowing system.
653  */
654 EAPI void        ecore_evas_maximized_set(Ecore_Evas *ee, Eina_Bool on);
655 /**
656  * @brief Query whether an Ecore_Evas' window is maximized or not.
657  *
658  * @param ee The Ecore_Evas to set
659  * @return @c EINA_TRUE if @p ee is maximized, @c EINA_FALSE if not.
660  *
661  * @see ecore_evas_maximized_set()
662  */
663 EAPI Eina_Bool   ecore_evas_maximized_get(const Ecore_Evas *ee);
664 /**
665  * @brief Set Ecore_Evas's window profile list.
666  *
667  * @param ee The Ecore_Evas
668  * @param profiles The profile name list
669  * @param num_profiles The number of profile names
670  *
671  * @warning Support for this depends on the underlying windowing system.
672  * @since 1.7.0
673  */
674 EAPI void        ecore_evas_profiles_set(Ecore_Evas *ee, const char **profiles, unsigned int num_profiles);
675 /**
676  * @brief Get Ecore_Evas's window profile name.
677  *
678  * @param ee The Ecore_Evas
679  * @return The profile name
680  *
681  * @since 1.7.0
682  */
683 EAPI const char *ecore_evas_profile_get(const Ecore_Evas *ee);
684 /**
685  * @brief Move an Ecore_Evas.
686  *
687  * @param ee The Ecore_Evas to move
688  * @param x The x coordinate to move to
689  * @param y The y coordinate to move to
690  *
691  * This moves @p ee to the screen coordinates (@p x, @p y)
692  *
693  * @warning Support for this depends on the underlying windowing system.
694  *
695  * @see ecore_evas_new()
696  * @see ecore_evas_resize()
697  * @see ecore_evas_move_resize()
698  */
699 EAPI void        ecore_evas_move(Ecore_Evas *ee, int x, int y);
700 /**
701  * @brief Resize an Ecore_Evas.
702  *
703  * @param ee The Ecore_Evas to move
704  * @param w The w coordinate to resize to
705  * @param h The h coordinate to resize to
706  *
707  * This resizes @p ee to @p w x @p h.
708  *
709  * @warning Support for this depends on the underlying windowing system.
710  *
711  * @see ecore_evas_new()
712  * @see ecore_evas_move()
713  * @see ecore_evas_move_resize()
714  */
715 EAPI void        ecore_evas_resize(Ecore_Evas *ee, int w, int h);
716 /**
717  * @brief Move and resize an Ecore_Evas
718  *
719  * @param ee The Ecore_Evas to move and resize
720  * @param x The x coordinate to move to
721  * @param y The y coordinate to move to
722  * @param w The w coordinate to resize to
723  * @param h The h coordinate to resize to
724  *
725  * This moves @p ee to the screen coordinates (@p x, @p y) and  resizes
726  * it to @p w x @p h.
727  *
728  * @warning Support for this depends on the underlying windowing system.
729  *
730  * @see ecore_evas_new()
731  * @see ecore_evas_move()
732  * @see ecore_evas_resize()
733  */
734 EAPI void        ecore_evas_move_resize(Ecore_Evas *ee, int x, int y, int w, int h);
735 /**
736  * @brief Set the rotation of an Ecore_Evas' window.
737  *
738  * @param ee The Ecore_Evas
739  * @param rot the angle (in degrees) of rotation.
740  *
741  * The allowed values of @p rot depend on the engine being used. Most only
742  * allow multiples of 90.
743  *
744  * @warning Support for this depends on the underlying windowing system.
745  *
746  * @see ecore_evas_rotation_with_resize_set()
747  */
748 EAPI void        ecore_evas_rotation_set(Ecore_Evas *ee, int rot);
749 /**
750  * @brief Set the rotation of an Ecore_Evas' window
751  *
752  * @param ee The Ecore_Evas
753  * @param rot the angle (in degrees) of rotation.
754  *
755  * Like ecore_evas_rotation_set(), but it also resizes the window's contents so
756  * that they fit inside the current window geometry.
757  *
758  * @warning Support for this depends on the underlying windowing system.
759  *
760  * @see ecore_evas_rotation_set()
761  */
762 EAPI void        ecore_evas_rotation_with_resize_set(Ecore_Evas *ee, int rot);
763 /**
764  * @brief Get the rotation of an Ecore_Evas' window
765  *
766  * @param ee The Ecore_Evas
767  * @return the angle (in degrees) of rotation.
768  *
769  * @see ecore_evas_rotation_set()
770  * @see ecore_evas_rotation_with_resize_set()
771  */
772 EAPI int         ecore_evas_rotation_get(const Ecore_Evas *ee);
773 /**
774  * @brief Raise an Ecore_Evas' window.
775  *
776  * @param ee The Ecore_Evas to raise.
777  *
778  * This functions raises the Ecore_Evas to the front.
779  *
780  * @warning Support for this depends on the underlying windowing system.
781  *
782  * @see ecore_evas_lower()
783  * @see ecore_evas_layer_set()
784  */
785 EAPI void        ecore_evas_raise(Ecore_Evas *ee);
786 /**
787  * @brief Lower an Ecore_Evas' window.
788  *
789  * @param ee The Ecore_Evas to raise.
790  *
791  * This functions lowers the Ecore_Evas to the back.
792  *
793  * @warning Support for this depends on the underlying windowing system.
794  *
795  * @see ecore_evas_raise()
796  * @see ecore_evas_layer_set()
797  */
798 EAPI void        ecore_evas_lower(Ecore_Evas *ee);
799 /**
800  * @brief Set the title of an Ecore_Evas' window.
801  *
802  * @param ee The Ecore_Evas whose title you wish to set.
803  * @param t The title
804  *
805  * This function sets the title of @p ee to @p t.
806  *
807  * @warning Support for this depends on the underlying windowing system.
808  */
809 EAPI void        ecore_evas_title_set(Ecore_Evas *ee, const char *t);
810 /**
811  * @brief Get the title of an Ecore_Evas' window.
812  *
813  * @param ee The Ecore_Evas whose title you wish to get.
814  * @return The title of @p ee.
815  *
816  * This function returns the title of @p ee.
817  *
818  * @see ecore_evas_title_set()
819  */
820 EAPI const char *ecore_evas_title_get(const Ecore_Evas *ee);
821 /**
822  * @brief Set the name and class of an Ecore_Evas' window.
823  *
824  * @param ee the Ecore_Evas
825  * @param n the name
826  * @param c the class
827  *
828  * This function sets the name of @p ee to @p n, and its class to @p c. The
829  * meaning of @p name and @p class depends on the underlying windowing system.
830  *
831  * @warning Support for this depends on the underlying windowing system.
832  */
833 EAPI void        ecore_evas_name_class_set(Ecore_Evas *ee, const char *n, const char *c);
834 /**
835  * @brief Get the name and class of an Ecore_Evas' window
836  *
837  * This function gets the name of @p ee into @p n, and its class into
838  * @p c.
839  *
840  * @param ee The Ecore_Evas to query.
841  * @param n A pointer to a string to place the name in.
842  * @param c A pointer to a string to place the class in.
843  * @see ecore_evas_name_class_set()
844  */
845 EAPI void        ecore_evas_name_class_get(const Ecore_Evas *ee, const char **n, const char **c);
846 /**
847  * @brief Returns a pointer to the underlying window.
848  *
849  * @param ee The Ecore_Evas whose window is desired.
850  * @return A pointer to the underlying window.
851  *
852  * @warning Support for this depends on the underlying windowing system.
853  */
854 EAPI Ecore_Window ecore_evas_window_get(const Ecore_Evas *ee);
855
856
857 /* engine/target specific init calls */
858 EAPI Ecore_Evas     *ecore_evas_software_x11_new(const char *disp_name, Ecore_X_Window parent, int x, int y, int w, int h);
859 EAPI Ecore_X_Window  ecore_evas_software_x11_window_get(const Ecore_Evas *ee);
860 EAPI void            ecore_evas_software_x11_direct_resize_set(Ecore_Evas *ee, Eina_Bool on);
861 EAPI Eina_Bool       ecore_evas_software_x11_direct_resize_get(const Ecore_Evas *ee);
862 EAPI void            ecore_evas_software_x11_extra_event_window_add(Ecore_Evas *ee, Ecore_X_Window win);
863
864 #define ECORE_EVAS_GL_X11_OPT_NONE         0
865 #define ECORE_EVAS_GL_X11_OPT_INDIRECT     1
866 #define ECORE_EVAS_GL_X11_OPT_VSYNC        2
867 #define ECORE_EVAS_GL_X11_OPT_SWAP_MODE    3 
868 #define ECORE_EVAS_GL_X11_OPT_LAST         4
869
870 #define ECORE_EVAS_GL_X11_SWAP_MODE_AUTO   0
871 #define ECORE_EVAS_GL_X11_SWAP_MODE_FULL   1
872 #define ECORE_EVAS_GL_X11_SWAP_MODE_COPY   2
873 #define ECORE_EVAS_GL_X11_SWAP_MODE_DOUBLE 3
874 #define ECORE_EVAS_GL_X11_SWAP_MODE_TRIPLE 4
875    
876 EAPI Ecore_Evas     *ecore_evas_gl_x11_new(const char *disp_name, Ecore_X_Window parent, int x, int y, int w, int h);
877 EAPI Ecore_Evas     *ecore_evas_gl_x11_options_new(const char *disp_name, Ecore_X_Window parent, int x, int y, int w, int h, const int *opt);
878 EAPI Ecore_X_Window  ecore_evas_gl_x11_window_get(const Ecore_Evas *ee);
879 EAPI void            ecore_evas_gl_x11_direct_resize_set(Ecore_Evas *ee, Eina_Bool on);
880 EAPI Eina_Bool       ecore_evas_gl_x11_direct_resize_get(const Ecore_Evas *ee);
881 EAPI void            ecore_evas_gl_x11_extra_event_window_add(Ecore_Evas *ee, Ecore_X_Window win);
882 EAPI void            ecore_evas_gl_x11_pre_post_swap_callback_set(const Ecore_Evas *ee, void *data, void (*pre_cb) (void *data, Evas *e), void (*post_cb) (void *data, Evas *e));
883
884 EAPI Ecore_Evas     *ecore_evas_xrender_x11_new(const char *disp_name, Ecore_X_Window parent, int x, int y, int w, int h);
885 EAPI Ecore_X_Window  ecore_evas_xrender_x11_window_get(const Ecore_Evas *ee);
886 EAPI void            ecore_evas_xrender_x11_direct_resize_set(Ecore_Evas *ee, Eina_Bool on);
887 EAPI Eina_Bool       ecore_evas_xrender_x11_direct_resize_get(const Ecore_Evas *ee);
888 EAPI void            ecore_evas_xrender_x11_extra_event_window_add(Ecore_Evas *ee, Ecore_X_Window win);
889
890 EAPI Ecore_Evas     *ecore_evas_software_x11_8_new(const char *disp_name, Ecore_X_Window parent, int x, int y, int w, int h);
891 EAPI Ecore_X_Window  ecore_evas_software_x11_8_window_get(const Ecore_Evas *ee);
892 EAPI Ecore_X_Window  ecore_evas_software_x11_8_subwindow_get(const Ecore_Evas *ee);
893 EAPI void            ecore_evas_software_x11_8_direct_resize_set(Ecore_Evas *ee, Eina_Bool on);
894 EAPI Eina_Bool       ecore_evas_software_x11_8_direct_resize_get(const Ecore_Evas *ee);
895 EAPI void            ecore_evas_software_x11_8_extra_event_window_add(Ecore_Evas *ee, Ecore_X_Window win);
896
897 EAPI Ecore_Evas     *ecore_evas_software_x11_16_new(const char *disp_name, Ecore_X_Window parent, int x, int y, int w, int h);
898 EAPI Ecore_X_Window  ecore_evas_software_x11_16_window_get(const Ecore_Evas *ee);
899 EAPI void            ecore_evas_software_x11_16_direct_resize_set(Ecore_Evas *ee, Eina_Bool on);
900 EAPI Eina_Bool       ecore_evas_software_x11_16_direct_resize_get(const Ecore_Evas *ee);
901 EAPI void            ecore_evas_software_x11_16_extra_event_window_add(Ecore_Evas *ee, Ecore_X_Window win);
902
903 EAPI Ecore_Evas     *ecore_evas_fb_new(const char *disp_name, int rotation, int w, int h);
904
905 EAPI Ecore_Evas     *ecore_evas_directfb_new(const char *disp_name, int windowed, int x, int y, int w, int h);
906 EAPI Ecore_DirectFB_Window *ecore_evas_directfb_window_get(const Ecore_Evas *ee);
907
908
909 EAPI Ecore_Evas     *ecore_evas_wayland_shm_new(const char *disp_name, unsigned int parent, int x, int y, int w, int h, Eina_Bool frame);
910 EAPI Ecore_Evas     *ecore_evas_wayland_egl_new(const char *disp_name, unsigned int parent, int x, int y, int w, int h, Eina_Bool frame);
911 EAPI void            ecore_evas_wayland_resize(Ecore_Evas *ee, int location);
912 EAPI void            ecore_evas_wayland_move(Ecore_Evas *ee, int x, int y);
913
914 EAPI void            ecore_evas_wayland_pointer_set(Ecore_Evas *ee, int hot_x, int hot_y);
915 EAPI void            ecore_evas_wayland_type_set(Ecore_Evas *ee, int type);
916 EAPI Ecore_Wl_Window *ecore_evas_wayland_window_get(const Ecore_Evas *ee);
917
918 /**
919  * @brief Create a new @c Ecore_Evas canvas bound to the Evas
920  * @b buffer engine
921  *
922  * @param w The width of the canvas, in pixels
923  * @param h The height of the canvas, in pixels
924  * @return A new @c Ecore_Evas instance or @c NULL, on failure
925  *
926  * This creates a new buffer canvas wrapper, with image data array
927  * @b bound to the ARGB format, 8 bits per pixel.
928  *
929  * This function will allocate the needed pixels array with canonical
930  * @c malloc(). If you wish a custom function to allocate it, consider
931  * using ecore_evas_buffer_allocfunc_new(), instead.
932  *
933  * @note This function actually is a wrapper on
934  * ecore_evas_buffer_allocfunc_new(), using the same @a w and @a h
935  * arguments and canonical @c malloc() and @c free() to the memory
936  * allocation and freeing functions. See that function's documentation
937  * for more details.
938  */
939 EAPI Ecore_Evas     *ecore_evas_buffer_new(int w, int h);
940
941 /**
942  * @brief Create a new @c Ecore_Evas canvas bound to the Evas
943  * @b buffer engine, giving custom allocation and freeing functions for
944  * the canvas memory region
945  *
946  * @param w The width of the canvas, in canvas units
947  * @param h The height of the canvas, in canvas units
948  * @param alloc_func Function to be called to allocate the memory
949  * needed for the new buffer canvas. @a data will be passed the same
950  * value as the @p data of this function, while @a size will be passed
951  * @p w times @p h times @c sizeof(int).
952  * @param free_func Function to be called to free the memory used by
953  * the new buffer canvas. @a data will be passed the same value as the
954  * @p data of this function, while @a pix will be passed the canvas
955  * memory pointer.
956  * @param data Custom data to be passed to the allocation and freeing
957  * functions
958  * @return A new @c Ecore_Evas instance or @c NULL, on failure
959  *
960  * This creates a new buffer canvas wrapper, with image data array
961  * @b bound to the ARGB format, 8 bits per pixel.
962  *
963  * This function is useful when one wants an @c Ecore_Evas buffer
964  * canvas with a custom allocation function, like one getting memory
965  * chunks from a memory pool, for example.
966  *
967  * On any resizing of this @c Ecore_Evas buffer canvas, its image data
968  * will be @b freed, to be allocated again with the new size.
969  *
970  * @note @p w and @p h sizes have to greater or equal to 1. Otherwise,
971  * they'll be interpreted as 1, exactly.
972  *
973  * @see ecore_evas_buffer_new()
974  */
975 EAPI Ecore_Evas     *ecore_evas_buffer_allocfunc_new(int w, int h, void *(*alloc_func) (void *data, int size), void (*free_func) (void *data, void *pix), const void *data);
976
977 /**
978  * @brief Grab a pointer to the actual pixels array of a given
979  * @c Ecore_Evas @b buffer canvas/window.
980  *
981  * @param ee An @c Ecore_Evas handle
982  * @return A pointer to the internal pixels array of @p ee
983  *
984  * Besides returning a pointer to the actual pixel array of the given
985  * canvas, this call will force a <b>rendering update on @p ee</b>,
986  * first.
987  *
988  * A common use case for this call is to create an image object, from
989  * @b another canvas, to have as data @p ee's contents, thus
990  * snapshoting the canvas. For that case, one can also use the
991  * ecore_evas_object_image_new() helper function.
992  */
993 EAPI const void     *ecore_evas_buffer_pixels_get(Ecore_Evas *ee);
994
995 /**
996  * @brief Create a new @c Ecore_Evas canvas bound to the Evas
997  * @b ews (Ecore + Evas Single Process Windowing System) engine
998  *
999  * EWS is a simple single process windowing system. The backing store
1000  * is also an @c Ecore_Evas that can be setup with
1001  * ecore_evas_ews_setup() and retrieved with
1002  * ecore_evas_ews_ecore_evas_get(). It will allow window management
1003  * using events prefixed with @c ECORE_EVAS_EVENT_EWS_.
1004  *
1005  * The EWS windows (returned by this function or
1006  * ecore_evas_new("ews"...)) will all be software buffer windows
1007  * automatic rendered to the backing store.
1008  *
1009  * @param x horizontal position of window, in pixels
1010  * @param y vertical position of window, in pixels
1011  * @param w The width of the canvas, in pixels
1012  * @param h The height of the canvas, in pixels
1013  * @return A new @c Ecore_Evas instance or @c NULL, on failure
1014  *
1015  * @see ecore_evas_ews_setup()
1016  * @see ecore_evas_ews_ecore_evas_get()
1017  *
1018  * @since 1.1
1019  */
1020 EAPI Ecore_Evas     *ecore_evas_ews_new(int x, int y, int w, int h);
1021
1022
1023 /**
1024  * Returns the backing store image object that represents the given
1025  * window in EWS.
1026  * @return The evas object of EWS backing store.
1027  *
1028  * @note This should not be modified anyhow, but may be helpful to
1029  *       determine stacking and geometry of it for window managers
1030  *       that decorate windows.
1031  *
1032  * @param ee The Ecore_Evas from which to get the backing store.
1033  * @see ecore_evas_ews_manager_set()
1034  * @see ecore_evas_ews_evas_get()
1035  * @since 1.1
1036  */
1037 EAPI Evas_Object *ecore_evas_ews_backing_store_get(const Ecore_Evas *ee);
1038
1039 /**
1040  * Calls the window to be deleted (freed), but can let user decide to
1041  * forbid it by using ecore_evas_callback_delete_request_set()
1042  *
1043  * @param ee The Ecore_Evas for which window will be deleted.
1044  * @since 1.1
1045  */
1046 EAPI void ecore_evas_ews_delete_request(Ecore_Evas *ee);
1047
1048 /**
1049  * @brief Create an Evas image object with image data <b>bound to an
1050  * own, internal @c Ecore_Evas canvas wrapper</b>
1051  *
1052  * @param ee_target @c Ecore_Evas to have the canvas receiving the new
1053  * image object
1054  * @return A handle to the new image object
1055  *
1056  * This will create a @b special Evas image object. The image's pixel
1057  * array will get bound to the same image data array of an @b internal
1058  * @b buffer @c Ecore_Evas canvas. The user of this function is, then,
1059  * supposed to grab that @c Ecore_Evas handle, with
1060  * ecore_evas_object_ecore_evas_get(), and use its canvas to render
1061  * whichever contents he/she wants, @b independently of the contents
1062  * of the canvas owned by @p ee_target. Those contents will reflect on
1063  * the canvas of @p ee, though, being exactly the image data of the
1064  * object returned by this function.
1065  *
1066  * This is a helper function for the scenario of one wanting to grab a
1067  * buffer canvas' contents (with ecore_evas_buffer_pixels_get()) to be
1068  * used on another canvas, for whichever reason. The most common goal
1069  * of this setup is to @b save an image file with a whole canvas as
1070  * contents, which could not be achieved by using an image file within
1071  * the target canvas.
1072  *
1073  * @warning Always resize the returned image and its underlying
1074  * @c Ecore_Evas handle accordingly. They must be kept with same sizes
1075  * for things to work as expected. Also, you @b must issue
1076  * @c evas_object_image_size_set() on the image with that same size. If
1077  * the image is to be shown in a canvas bound to an engine different
1078  * than the buffer one, then you must also set this image's @b fill
1079  * properties accordingly.
1080  *
1081  * @note The image returned will always be bound to the
1082  * @c EVAS_COLORSPACE_ARGB8888 colorspace, always.
1083  *
1084  * @note Use ecore_evas_object_evas_get() to grab the image's internal
1085  * own canvas directly.
1086  *
1087  * @note If snapshoting this image's internal canvas, remember to
1088  * flush its internal @c Ecore_Evas firstly, with
1089  * ecore_evas_manual_render().
1090  */
1091 EAPI Evas_Object    *ecore_evas_object_image_new(Ecore_Evas *ee_target);
1092
1093 /**
1094  * @brief Retrieve the internal @c Ecore_Evas handle of an image
1095  * object created via ecore_evas_object_image_new()
1096  *
1097  * @param obj A handle to an image object created via
1098  * ecore_evas_object_image_new()
1099  * @return The underlying @c Ecore_Evas handle in @p obj
1100  */
1101 EAPI Ecore_Evas     *ecore_evas_object_ecore_evas_get(Evas_Object *obj);
1102
1103 /**
1104  * @brief Retrieve the canvas bound to the internal @c Ecore_Evas
1105  * handle of an image object created via ecore_evas_object_image_new()
1106  *
1107  * @param obj A handle to an image object created via
1108  * ecore_evas_object_image_new()
1109  * @return A handle to @p obj's underlying @c Ecore_Evas's canvas
1110  */
1111 EAPI Evas           *ecore_evas_object_evas_get(Evas_Object *obj);
1112
1113 EAPI Ecore_Evas     *ecore_evas_software_gdi_new(Ecore_Win32_Window *parent,
1114                                                  int                 x,
1115                                                  int                 y,
1116                                                  int                 width,
1117                                                  int                 height);
1118
1119 EAPI Ecore_Evas     *ecore_evas_software_ddraw_new(Ecore_Win32_Window *parent,
1120                                                    int                 x,
1121                                                    int                 y,
1122                                                    int                 width,
1123                                                    int                 height);
1124
1125 EAPI Ecore_Evas     *ecore_evas_software_16_ddraw_new(Ecore_Win32_Window *parent,
1126                                                       int                 x,
1127                                                       int                 y,
1128                                                       int                 width,
1129                                                       int                 height);
1130
1131 EAPI Ecore_Evas     *ecore_evas_direct3d_new(Ecore_Win32_Window *parent,
1132                                              int                 x,
1133                                              int                 y,
1134                                              int                 width,
1135                                              int                 height);
1136
1137 EAPI Ecore_Evas *ecore_evas_gl_glew_new(Ecore_Win32_Window *parent,
1138                                         int                 x,
1139                                         int                 y,
1140                                         int                 width,
1141                                         int                 height);
1142
1143 EAPI Ecore_Win32_Window *ecore_evas_win32_window_get(const Ecore_Evas *ee);
1144
1145 EAPI Ecore_Evas     *ecore_evas_sdl_new(const char* name, int w, int h, int fullscreen, int hwsurface, int noframe, int alpha);
1146 EAPI Ecore_Evas     *ecore_evas_sdl16_new(const char* name, int w, int h, int fullscreen, int hwsurface, int noframe, int alpha);
1147 EAPI Ecore_Evas     *ecore_evas_gl_sdl_new(const char* name, int w, int h, int fullscreen, int noframe);
1148
1149 EAPI Ecore_Evas     *ecore_evas_software_wince_new(Ecore_WinCE_Window *parent,
1150                                                    int                 x,
1151                                                    int                 y,
1152                                                    int                 width,
1153                                                    int                 height);
1154
1155 EAPI Ecore_Evas     *ecore_evas_software_wince_fb_new(Ecore_WinCE_Window *parent,
1156                                                       int                 x,
1157                                                       int                 y,
1158                                                       int                 width,
1159                                                       int                 height);
1160
1161 EAPI Ecore_Evas     *ecore_evas_software_wince_gapi_new(Ecore_WinCE_Window *parent,
1162                                                         int                 x,
1163                                                         int                 y,
1164                                                         int                 width,
1165                                                         int                 height);
1166
1167 EAPI Ecore_Evas     *ecore_evas_software_wince_ddraw_new(Ecore_WinCE_Window *parent,
1168                                                          int                 x,
1169                                                          int                 y,
1170                                                          int                 width,
1171                                                          int                 height);
1172
1173 EAPI Ecore_Evas     *ecore_evas_software_wince_gdi_new(Ecore_WinCE_Window *parent,
1174                                                        int                 x,
1175                                                        int                 y,
1176                                                        int                 width,
1177                                                        int                 height);
1178
1179 EAPI Ecore_WinCE_Window *ecore_evas_software_wince_window_get(const Ecore_Evas *ee);
1180
1181 EAPI Ecore_Evas *ecore_evas_cocoa_new(Ecore_Cocoa_Window *parent,
1182                                       int x,
1183                                       int y,
1184                                       int w,
1185                                       int h);
1186
1187 EAPI Ecore_Evas *ecore_evas_psl1ght_new(const char* name, int w, int h);
1188
1189
1190 /* generic manipulation calls */
1191 /**
1192  * @brief Get the engine name used by this Ecore_Evas(window).
1193  *
1194  * @param ee Ecore_Evas whose engine's name is desired.
1195  * @return A string that can(usually) be used in ecore_evas_new()
1196  *
1197  * @see ecore_evas_free()
1198  */
1199 EAPI const char *ecore_evas_engine_name_get(const Ecore_Evas *ee);
1200 /**
1201  * @brief Return the Ecore_Evas for this Evas
1202  *
1203  * @param e The Evas to get the Ecore_Evas from
1204  * @return The Ecore_Evas that holds this Evas, or @c NULL if not held by one.
1205  *
1206  * @warning Only use on Evas' created with ecore evas!
1207  */
1208 EAPI Ecore_Evas *ecore_evas_ecore_evas_get(const Evas *e);
1209 /**
1210  * @brief Free an Ecore_Evas
1211  *
1212  * @param ee The Ecore_Evas to free
1213  *
1214  * This frees up any memory used by the Ecore_Evas.
1215  */
1216 EAPI void        ecore_evas_free(Ecore_Evas *ee);
1217 /**
1218  * @brief Retrieve user data associated with an Ecore_Evas.
1219  *
1220  * @param ee The Ecore_Evas to retrieve the user data from.
1221  * @param key The key which the user data to be retrieved is associated with.
1222  *
1223  * This function retrieves user specific data that has been stored within an
1224  * Ecore_Evas structure with ecore_evas_data_set().
1225  *
1226  * @returns @c NULL on error or no data found, A pointer to the user data on
1227  *     success.
1228  *
1229  * @see ecore_evas_data_set()
1230  */
1231 EAPI void       *ecore_evas_data_get(const Ecore_Evas *ee, const char *key);
1232 /**
1233  * @brief Store user data in an Ecore_Evas structure.
1234  *
1235  * @param ee The Ecore_Evas to store the user data in.
1236  * @param key A unique string to associate the user data against. Cannot
1237  * be NULL.
1238  * @param data A pointer to the user data to store.
1239  *
1240  * This function associates the @p data with a @p key which is stored by
1241  * the Ecore_Evas @p ee. Be aware that a call to ecore_evas_free() will
1242  * not free any memory for the associated user data, this is the responsibility
1243  * of the caller.
1244  *
1245  * @see ecore_evas_callback_pre_free_set()
1246  * @see ecore_evas_free()
1247  * @see ecore_evas_data_get()
1248  */
1249 EAPI void        ecore_evas_data_set(Ecore_Evas *ee, const char *key, const void *data);
1250 /**
1251  * Set a callback for Ecore_Evas resize events.
1252  * @param ee The Ecore_Evas to set callbacks on
1253  * @param func The function to call
1254
1255  * A call to this function will set a callback on an Ecore_Evas, causing
1256  * @p func to be called whenever @p ee is resized.
1257  *
1258  * @warning If and when this function is called depends on the underlying
1259  * windowing system.
1260  */
1261 EAPI void        ecore_evas_callback_resize_set(Ecore_Evas *ee, Ecore_Evas_Event_Cb func);
1262 /**
1263  * Set a callback for Ecore_Evas move events.
1264  * @param ee The Ecore_Evas to set callbacks on
1265  * @param func The function to call
1266
1267  * A call to this function will set a callback on an Ecore_Evas, causing
1268  * @p func to be called whenever @p ee is moved.
1269  *
1270  * @warning If and when this function is called depends on the underlying
1271  * windowing system.
1272  */
1273 EAPI void        ecore_evas_callback_move_set(Ecore_Evas *ee, Ecore_Evas_Event_Cb func);
1274 /**
1275  * Set a callback for Ecore_Evas show events.
1276  * @param ee The Ecore_Evas to set callbacks on
1277  * @param func The function to call
1278
1279  * A call to this function will set a callback on an Ecore_Evas, causing
1280  * @p func to be called whenever @p ee is shown.
1281  *
1282  * @warning If and when this function is called depends on the underlying
1283  * windowing system.
1284  */
1285 EAPI void        ecore_evas_callback_show_set(Ecore_Evas *ee, Ecore_Evas_Event_Cb func);
1286 /**
1287  * Set a callback for Ecore_Evas hide events.
1288  * @param ee The Ecore_Evas to set callbacks on
1289  * @param func The function to call
1290
1291  * A call to this function will set a callback on an Ecore_Evas, causing
1292  * @p func to be called whenever @p ee is hidden.
1293  *
1294  * @warning If and when this function is called depends on the underlying
1295  * windowing system.
1296  */
1297 EAPI void        ecore_evas_callback_hide_set(Ecore_Evas *ee, Ecore_Evas_Event_Cb func);
1298 /**
1299  * Set a callback for Ecore_Evas delete request events.
1300  * @param ee The Ecore_Evas to set callbacks on
1301  * @param func The function to call
1302
1303  * A call to this function will set a callback on an Ecore_Evas, causing
1304  * @p func to be called whenever @p ee gets a delete request.
1305  *
1306  * @warning If and when this function is called depends on the underlying
1307  * windowing system.
1308  */
1309 EAPI void        ecore_evas_callback_delete_request_set(Ecore_Evas *ee, Ecore_Evas_Event_Cb func);
1310 /**
1311  * Set a callback for Ecore_Evas destroy events.
1312  * @param ee The Ecore_Evas to set callbacks on
1313  * @param func The function to call
1314
1315  * A call to this function will set a callback on an Ecore_Evas, causing
1316  * @p func to be called whenever @p ee is destroyed.
1317  *
1318  * @warning If and when this function is called depends on the underlying
1319  * windowing system.
1320  */
1321 EAPI void        ecore_evas_callback_destroy_set(Ecore_Evas *ee, Ecore_Evas_Event_Cb func);
1322 /**
1323  * Set a callback for Ecore_Evas focus in events.
1324  * @param ee The Ecore_Evas to set callbacks on
1325  * @param func The function to call
1326
1327  * A call to this function will set a callback on an Ecore_Evas, causing
1328  * @p func to be called whenever @p ee gets focus.
1329  *
1330  * @warning If and when this function is called depends on the underlying
1331  * windowing system.
1332  */
1333 EAPI void        ecore_evas_callback_focus_in_set(Ecore_Evas *ee, Ecore_Evas_Event_Cb func);
1334 /**
1335  * Set a callback for Ecore_Evas focus out events.
1336  * @param ee The Ecore_Evas to set callbacks on
1337  * @param func The function to call
1338
1339  * A call to this function will set a callback on an Ecore_Evas, causing
1340  * @p func to be called whenever @p ee loses focus.
1341  *
1342  * @warning If and when this function is called depends on the underlying
1343  * windowing system.
1344  */
1345 EAPI void        ecore_evas_callback_focus_out_set(Ecore_Evas *ee, Ecore_Evas_Event_Cb func);
1346 /**
1347  * Set a callback for Ecore_Evas sticky events.
1348  * @param ee The Ecore_Evas to set callbacks on
1349  * @param func The function to call
1350
1351  * A call to this function will set a callback on an Ecore_Evas, causing
1352  * @p func to be called whenever @p ee becomes sticky.
1353  *
1354  * @warning If and when this function is called depends on the underlying
1355  * windowing system.
1356  */
1357 EAPI void        ecore_evas_callback_sticky_set(Ecore_Evas *ee, Ecore_Evas_Event_Cb func);
1358 /**
1359  * Set a callback for Ecore_Evas un-sticky events.
1360  * @param ee The Ecore_Evas to set callbacks on
1361  * @param func The function to call
1362
1363  * A call to this function will set a callback on an Ecore_Evas, causing
1364  * @p func to be called whenever @p ee becomes un-sticky.
1365  *
1366  * @warning If and when this function is called depends on the underlying
1367  * windowing system.
1368  */
1369 EAPI void        ecore_evas_callback_unsticky_set(Ecore_Evas *ee, Ecore_Evas_Event_Cb func);
1370 /**
1371  * Set a callback for Ecore_Evas mouse in events.
1372  * @param ee The Ecore_Evas to set callbacks on
1373  * @param func The function to call
1374
1375  * A call to this function will set a callback on an Ecore_Evas, causing
1376  * @p func to be called whenever the mouse enters @p ee.
1377  *
1378  * @warning If and when this function is called depends on the underlying
1379  * windowing system.
1380  */
1381 EAPI void        ecore_evas_callback_mouse_in_set(Ecore_Evas *ee, Ecore_Evas_Event_Cb func);
1382 /**
1383  * Set a callback for Ecore_Evas mouse out events.
1384  * @param ee The Ecore_Evas to set callbacks on
1385  * @param func The function to call
1386
1387  * A call to this function will set a callback on an Ecore_Evas, causing
1388  * @p func to be called whenever the mouse leaves @p ee.
1389  *
1390  * @warning If and when this function is called depends on the underlying
1391  * windowing system.
1392  */
1393 EAPI void        ecore_evas_callback_mouse_out_set(Ecore_Evas *ee, Ecore_Evas_Event_Cb func);
1394 /**
1395  * Set a callback for Ecore_Evas pre render events.
1396  * @param ee The Ecore_Evas to set callbacks on
1397  * @param func The function to call
1398
1399  * A call to this function will set a callback on an Ecore_Evas, causing
1400  * @p func to be called just before the evas in @p ee is rendered.
1401  *
1402  * @warning If and when this function is called depends on the underlying
1403  * windowing system.
1404  */
1405 EAPI void        ecore_evas_callback_pre_render_set(Ecore_Evas *ee, Ecore_Evas_Event_Cb func);
1406 /**
1407  * Set a callback for Ecore_Evas mouse post render events.
1408  * @param ee The Ecore_Evas to set callbacks on
1409  * @param func The function to call
1410
1411  * A call to this function will set a callback on an Ecore_Evas, causing
1412  * @p func to be called just after the evas in @p ee is rendered.
1413  *
1414  * @warning If and when this function is called depends on the underlying
1415  * windowing system.
1416  */
1417 EAPI void        ecore_evas_callback_post_render_set(Ecore_Evas *ee, Ecore_Evas_Event_Cb func);
1418 /**
1419  * Set a callback for Ecore_Evas pre-free event.
1420  * @param ee The Ecore_Evas to set callbacks on
1421  * @param func The function to call
1422  *
1423  * A call to this function will set a callback on an Ecore_Evas, causing
1424  * @p func to be called just before the instance @p ee is freed.
1425  *
1426  * @warning If and when this function is called depends on the underlying
1427  * windowing system.
1428  */
1429 EAPI void        ecore_evas_callback_pre_free_set(Ecore_Evas *ee, Ecore_Evas_Event_Cb func);
1430 /**
1431  * Set a callback for Ecore_Evas state changes.
1432  * @param ee The Ecore_Evas to set callbacks on
1433  * @param func The function to call
1434
1435  * A call to this function will set a callback on an Ecore_Evas, causing
1436  * @p func to be called whenever @p ee changes state.
1437  *
1438  * @since 1.2
1439  * @warning If and when this function is called depends on the underlying
1440  * windowing system.
1441  */
1442 EAPI void        ecore_evas_callback_state_change_set(Ecore_Evas *ee, Ecore_Evas_Event_Cb func);
1443
1444 /**
1445  * Get an Ecore_Evas's Evas
1446  * @param ee The Ecore_Evas whose Evas you wish to get
1447  * @return The Evas wrapped by @p ee
1448  *
1449  * This function returns the Evas contained within @p ee.
1450  */
1451 EAPI Evas       *ecore_evas_get(const Ecore_Evas *ee);
1452
1453 /**
1454  * Provide Managed move co-ordinates for an Ecore_Evas
1455  * @param ee The Ecore_Evas to move
1456  * @param x The x coordinate to set as the managed location
1457  * @param y The y coordinate to set as the managed location
1458  *
1459  * This sets the managed geometry position of the @p ee to (@p x, @p y)
1460  */
1461 EAPI void        ecore_evas_managed_move(Ecore_Evas *ee, int x, int y);
1462
1463 /**
1464  * Set whether an Ecore_Evas is shaped or not.
1465  *
1466  * @param ee The Ecore_Evas to shape.
1467  * @param shaped @c EINA_TRUE to shape, @c EINA_FALSE to not.
1468  *
1469  * This function allows one to make an Ecore_Evas shaped to the contents of the
1470  * evas. If @p shaped is @c EINA_TRUE, @p ee will be transparent in parts of
1471  * the evas that contain no objects. If @p shaped is @c EINA_FALSE, then @p ee
1472  * will be rectangular, and parts with no data will show random framebuffer
1473  * artifacting. For non-shaped Ecore_Evases, it is recommended to cover the
1474  * entire evas with a background object.
1475  */
1476 EAPI void        ecore_evas_shaped_set(Ecore_Evas *ee, Eina_Bool shaped);
1477
1478 /**
1479  * Query whether an Ecore_Evas is shaped or not.
1480  *
1481  * @param ee The Ecore_Evas to query.
1482  * @return @c EINA_TRUE if shaped, @c EINA_FALSE if not.
1483  *
1484  * This function returns @c EINA_TRUE if @p ee is shaped, and @c EINA_FALSE if not.
1485  */
1486 EAPI Eina_Bool   ecore_evas_shaped_get(const Ecore_Evas *ee);
1487 /**
1488  * @brief Show an Ecore_Evas' window
1489  *
1490  * @param ee The Ecore_Evas to show.
1491  *
1492  * This function makes @p ee visible.
1493  */
1494 EAPI void        ecore_evas_show(Ecore_Evas *ee);
1495 /**
1496  * @brief Hide an Ecore_Evas' window
1497  *
1498  * @param ee The Ecore_Evas to hide.
1499  *
1500  * This function makes @p ee hidden(not visible).
1501  */
1502 EAPI void        ecore_evas_hide(Ecore_Evas *ee);
1503
1504 /**
1505  * Activate (set focus to, via the window manager) an Ecore_Evas' window.
1506  * @param ee The Ecore_Evas to activate.
1507  *
1508  * This functions activates the Ecore_Evas.
1509  */
1510 EAPI void        ecore_evas_activate(Ecore_Evas *ee);
1511
1512
1513 /**
1514  * Set the minimum size of a given @c Ecore_Evas window
1515  *
1516  * @param ee An @c Ecore_Evas window's handle
1517  * @param w The minimum width
1518  * @param h The minimum height
1519  *
1520  * This function sets the minimum size of @p ee to be @p w x @p h.
1521  * One won't be able to resize that window to dimensions smaller than
1522  * the ones set.
1523  *
1524  * @note When base sizes are set, via ecore_evas_size_base_set(),
1525  * they'll be used to calculate a window's minimum size, instead of
1526  * those set by this function.
1527  *
1528  * @see ecore_evas_size_min_get()
1529  */
1530 EAPI void        ecore_evas_size_min_set(Ecore_Evas *ee, int w, int h);
1531
1532 /**
1533  * Get the minimum size set for a given @c Ecore_Evas window
1534  *
1535  * @param ee An @c Ecore_Evas window's handle
1536  * @param w A pointer to an int to place the minimum width in.
1537  * @param h A pointer to an int to place the minimum height in.
1538  *
1539  * @note Use @c NULL pointers on the size components you're not
1540  * interested in: they'll be ignored by the function.
1541  *
1542  * @see ecore_evas_size_min_set() for more details
1543  */
1544 EAPI void        ecore_evas_size_min_get(const Ecore_Evas *ee, int *w, int *h);
1545
1546 /**
1547  * Set the maximum size of a given @c Ecore_Evas window
1548  *
1549  * @param ee An @c Ecore_Evas window's handle
1550  * @param w The maximum width
1551  * @param h The maximum height
1552  *
1553  * This function sets the maximum size of @p ee to be @p w x @p h.
1554  * One won't be able to resize that window to dimensions bigger than
1555  * the ones set.
1556  *
1557  * @see ecore_evas_size_max_get()
1558  */
1559 EAPI void        ecore_evas_size_max_set(Ecore_Evas *ee, int w, int h);
1560
1561 /**
1562  * Get the maximum size set for a given @c Ecore_Evas window
1563  *
1564  * @param ee An @c Ecore_Evas window's handle
1565  * @param w A pointer to an int to place the maximum width in.
1566  * @param h A pointer to an int to place the maximum height in.
1567  *
1568  * @note Use @c NULL pointers on the size components you're not
1569  * interested in: they'll be ignored by the function.
1570  *
1571  * @see ecore_evas_size_max_set() for more details
1572  */
1573 EAPI void        ecore_evas_size_max_get(const Ecore_Evas *ee, int *w, int *h);
1574
1575 /**
1576  * Set the base size for a given @c Ecore_Evas window
1577  *
1578  * @param ee An @c Ecore_Evas window's handle
1579  * @param w The base width
1580  * @param h The base height
1581  *
1582  * This function sets the @b base size of @p ee to be @p w x @p h.
1583  * When base sizes are set, they'll be used to calculate a window's
1584  * @b minimum size, instead of those set by ecore_evas_size_min_get().
1585  *
1586  * @see ecore_evas_size_base_get()
1587  */
1588 EAPI void        ecore_evas_size_base_set(Ecore_Evas *ee, int w, int h);
1589
1590 /**
1591  * Get the base size set for a given @c Ecore_Evas window
1592  *
1593  * @param ee An @c Ecore_Evas window's handle
1594  * @param w A pointer to an int to place the base width in.
1595  * @param h A pointer to an int to place the base height in.
1596  *
1597  * @note Use @c NULL pointers on the size components you're not
1598  * interested in: they'll be ignored by the function.
1599  *
1600  * @see ecore_evas_size_base_set() for more details
1601  */
1602 EAPI void        ecore_evas_size_base_get(const Ecore_Evas *ee, int *w, int *h);
1603
1604 /**
1605  * Set the "size step" for a given @c Ecore_Evas window
1606  *
1607  * @param ee An @c Ecore_Evas window's handle
1608  * @param w The step width
1609  * @param h The step height
1610  *
1611  * This function sets the size steps of @p ee to be @p w x @p h. This
1612  * limits the size of this @c Ecore_Evas window to be @b always an
1613  * integer multiple of the step size, for each axis.
1614  */
1615 EAPI void        ecore_evas_size_step_set(Ecore_Evas *ee, int w, int h);
1616
1617 /**
1618  * Get the "size step" set for a given @c Ecore_Evas window
1619  *
1620  * @param ee An @c Ecore_Evas window's handle
1621  * @param w A pointer to an int to place the step width in.
1622  * @param h A pointer to an int to place the step height in.
1623  *
1624  * @note Use @c NULL pointers on the size components you're not
1625  * interested in: they'll be ignored by the function.
1626  *
1627  * @see ecore_evas_size_base_set() for more details
1628  */
1629 EAPI void        ecore_evas_size_step_get(const Ecore_Evas *ee, int *w, int *h);
1630
1631 /**
1632  * @brief Set the cursor of an Ecore_Evas.
1633  *
1634  * @param ee The Ecore_Evas
1635  * @param file  The path to an image file for the cursor.
1636  * @param layer The layer in which the cursor will appear.
1637  * @param hot_x The x coordinate of the cursor's hot spot.
1638  * @param hot_y The y coordinate of the cursor's hot spot.
1639  *
1640  * This function makes the mouse cursor over @p ee be the image specified by
1641  * @p file. The actual point within the image that the mouse is at is specified
1642  * by @p hot_x and @p hot_y, which are coordinates with respect to the top left
1643  * corner of the cursor image.
1644  *
1645  * @note This function creates an object from the image and uses
1646  * ecore_evas_object_cursor_set().
1647  *
1648  * @see ecore_evas_object_cursor_set()
1649  */
1650 EAPI void        ecore_evas_cursor_set(Ecore_Evas *ee, const char *file, int layer, int hot_x, int hot_y);
1651 /**
1652  * @brief Get information about an Ecore_Evas' cursor
1653  *
1654  * @param ee The Ecore_Evas to set
1655  * @param obj A pointer to an Evas_Object to place the cursor Evas_Object.
1656  * @param layer A pointer to an int to place the cursor's layer in.
1657  * @param hot_x A pointer to an int to place the cursor's hot_x coordinate in.
1658  * @param hot_y A pointer to an int to place the cursor's hot_y coordinate in.
1659  *
1660  * This function queries information about an Ecore_Evas' cursor.
1661  *
1662  * @see ecore_evas_cursor_set()
1663  * @see ecore_evas_object_cursor_set()
1664  */
1665 EAPI void        ecore_evas_cursor_get(const Ecore_Evas *ee, Evas_Object **obj, int *layer, int *hot_x, int *hot_y);
1666 /**
1667  * @brief Set the cursor of an Ecore_Evas
1668  *
1669  * @param ee The Ecore_Evas
1670  *
1671  * @param obj The Evas_Object which will be the cursor.
1672  * @param layer The layer in which the cursor will appear.
1673  * @param hot_x The x coordinate of the cursor's hot spot.
1674  * @param hot_y The y coordinate of the cursor's hot spot.
1675  *
1676  * This function makes the mouse cursor over @p ee be the object specified by
1677  * @p obj. The actual point within the object that the mouse is at is specified
1678  * by @p hot_x and @p hot_y, which are coordinates with respect to the top left
1679  * corner of the cursor object.
1680  *
1681  * @see ecore_evas_cursor_set()
1682  */
1683 EAPI void        ecore_evas_object_cursor_set(Ecore_Evas *ee, Evas_Object *obj, int layer, int hot_x, int hot_y);
1684
1685 /**
1686  * Tell the WM whether or not to ignore an Ecore_Evas' window
1687  *
1688  * @param ee The Ecore_Evas.
1689  * @param on @c EINA_TRUE to ignore, @c EINA_FALSE to not.
1690  *
1691  * This function causes the window manager to ignore @p ee if @p on is
1692  * @c EINA_TRUE, or not ignore @p ee if @p on is @c EINA_FALSE.
1693  */
1694 EAPI void        ecore_evas_override_set(Ecore_Evas *ee, Eina_Bool on);
1695
1696 /**
1697  * Query whether an Ecore_Evas' window is overridden or not
1698  *
1699  * @param ee The Ecore_Evas to set.
1700  * @return @c EINA_TRUE if @p ee is overridden, @c EINA_FALSE if not.
1701  */
1702 EAPI Eina_Bool   ecore_evas_override_get(const Ecore_Evas *ee);
1703
1704 /**
1705  * Set whether or not an Ecore_Evas' window should avoid damage
1706  *
1707  * @param ee The Ecore_Evas
1708  * @param on The type of the damage management
1709  *
1710  * This option causes updates of the Ecore_Evas to be done on a pixmap, and
1711  * then copied to the window, or the pixmap used directly on the window,
1712  * depending on the setting. Possible options are:
1713  *
1714  * @li @ref ECORE_EVAS_AVOID_DAMAGE_NONE - every expose event triggers a new
1715  * damage and consequently render of the affected area. The rendering of things
1716  * happens directly on the window;
1717  *
1718  * @li @ref ECORE_EVAS_AVOID_DAMAGE_EXPOSE - there's a pixmap where everything
1719  * is rendered into, and then copied to the window. On expose events, there's
1720  * no need to render things again, just to copy the exposed region to the
1721  * window;
1722  *
1723  * @li @ref ECORE_EVAS_AVOID_DAMAGE_BUILT_IN - there's the same pixmap as the
1724  * previous one, but it is set as a "background pixmap" of the window.  The
1725  * rendered things appear directly on the window, with no need to copy
1726  * anything, but would stay stored on the pixmap, so there's no need to render
1727  * things again on expose events. This option can be faster than the previous
1728  * one, but may lead to artifacts during resize of the window.
1729  */
1730 EAPI void        ecore_evas_avoid_damage_set(Ecore_Evas *ee, Ecore_Evas_Avoid_Damage_Type on);
1731
1732 /**
1733  * Query whether an Ecore_Evas' window avoids damage or not
1734  * @param ee The Ecore_Evas to set
1735  * @return The type of the damage management
1736  *
1737  */
1738 EAPI Ecore_Evas_Avoid_Damage_Type ecore_evas_avoid_damage_get(const Ecore_Evas *ee);
1739
1740 /**
1741  * Set the withdrawn state of an Ecore_Evas' window.
1742  * @param ee The Ecore_Evas whose window's withdrawn state is set.
1743  * @param withdrawn The Ecore_Evas window's new withdrawn state.
1744  *
1745  */
1746 EAPI void        ecore_evas_withdrawn_set(Ecore_Evas *ee, Eina_Bool withdrawn);
1747
1748 /**
1749  * Returns the withdrawn state of an Ecore_Evas' window.
1750  * @param ee The Ecore_Evas whose window's withdrawn state is returned.
1751  * @return The Ecore_Evas window's withdrawn state.
1752  *
1753  */
1754 EAPI Eina_Bool   ecore_evas_withdrawn_get(const Ecore_Evas *ee);
1755
1756 /**
1757  * Set the sticky state of an Ecore_Evas window.
1758  *
1759  * @param ee The Ecore_Evas whose window's sticky state is set.
1760  * @param sticky The Ecore_Evas window's new sticky state.
1761  *
1762  */
1763 EAPI void        ecore_evas_sticky_set(Ecore_Evas *ee, Eina_Bool sticky);
1764
1765 /**
1766  * Returns the sticky state of an Ecore_Evas' window.
1767  *
1768  * @param ee The Ecore_Evas whose window's sticky state is returned.
1769  * @return The Ecore_Evas window's sticky state.
1770  *
1771  */
1772 EAPI Eina_Bool   ecore_evas_sticky_get(const Ecore_Evas *ee);
1773 EAPI void        ecore_evas_manual_render_set(Ecore_Evas *ee, Eina_Bool manual_render);
1774 EAPI Eina_Bool   ecore_evas_manual_render_get(const Ecore_Evas *ee);
1775
1776 /**
1777  * @brief Registers an @c Ecore_Evas to receive events through ecore_input_evas.
1778  *
1779  * @param ee The @c Ecore_Evas handle.
1780  *
1781  * This function calls ecore_event_window_register() with the @p ee as its @c
1782  * id argument, @c window argument, and uses its @c Evas too. It is useful when
1783  * no @c window information is available on a given @c Ecore_Evas backend.
1784  *
1785  * @see ecore_evas_input_event_unregister()
1786  * @since 1.1
1787  */
1788 EAPI void        ecore_evas_input_event_register(Ecore_Evas *ee);
1789 /**
1790  * @brief Unregisters an @c Ecore_Evas receiving events through ecore_input_evas.
1791  *
1792  * @param ee The @c Ecore_Evas handle.
1793  *
1794  * @see ecore_evas_input_event_register()
1795  * @since 1.1
1796  */
1797 EAPI void        ecore_evas_input_event_unregister(Ecore_Evas *ee);
1798
1799 /**
1800  * @brief Force immediate rendering on a given @c Ecore_Evas window
1801  *
1802  * @param ee An @c Ecore_Evas handle
1803  *
1804  * Use this call to forcefully flush the @p ee's canvas rendering
1805  * pipeline, thus bring its window to an up to date state.
1806  */
1807 EAPI void        ecore_evas_manual_render(Ecore_Evas *ee);
1808 EAPI void        ecore_evas_comp_sync_set(Ecore_Evas *ee, Eina_Bool do_sync);
1809 EAPI Eina_Bool   ecore_evas_comp_sync_get(const Ecore_Evas *ee);
1810
1811 /**
1812  * @brief Get geometry of screen associated with this Ecore_Evas.
1813  *
1814  * @param ee The Ecore_Evas whose window's to query container screen geometry.
1815  * @param x where to return the horizontal offset value. May be @c NULL.
1816  * @param y where to return the vertical offset value. May be @c NULL.
1817  * @param w where to return the width value. May be @c NULL.
1818  * @param h where to return the height value. May be @c NULL.
1819  *
1820  * @since 1.1
1821  */
1822 EAPI void        ecore_evas_screen_geometry_get(const Ecore_Evas *ee, int *x, int *y, int *w, int *h);
1823
1824 /**
1825  * @brief Get the dpi of the screen the Ecore_Evas is primarily on.
1826  *
1827  * @param ee The Ecore_Evas whose window's to query.
1828  * @param xdpi Pointer to integer to store horizontal DPI. May be @c NULL.
1829  * @param ydpi Pointer to integer to store vertical DPI. May be @c NULL.
1830  *
1831  * @since 1.7
1832  */
1833 EAPI void        ecore_evas_screen_dpi_get(const Ecore_Evas *ee, int *xdpi, int *ydpi);
1834
1835 EAPI void        ecore_evas_draw_frame_set(Ecore_Evas *ee, Eina_Bool draw_frame);
1836 EAPI Eina_Bool   ecore_evas_draw_frame_get(const Ecore_Evas *ee);
1837
1838 /**
1839  * @brief Associate the given object to this ecore evas.
1840  *
1841  * @param ee The Ecore_Evas to associate to @a obj
1842  * @param obj The object to associate to @a ee
1843  * @param flags The association flags.
1844  * @return @c EINA_TRUE on success, @c EINA_FALSE otherwise.
1845  *
1846  * Association means that operations on one will affect the other, for
1847  * example moving the object will move the window, resize the object will
1848  * also affect the ecore evas window, hide and show applies as well.
1849  *
1850  * This is meant to simplify development, since you often need to associate
1851  * these events with your "base" objects, background or bottom-most object.
1852  *
1853  * Be aware that some methods might not be what you would like, deleting
1854  * either the window or the object will delete the other. If you want to
1855  * change that behavior, let's say to hide window when it's closed, you
1856  * must use ecore_evas_callback_delete_request_set() and set your own code,
1857  * like ecore_evas_hide(). Just remember that if you override delete_request
1858  * and still want to delete the window/object, you must do that yourself.
1859  *
1860  * Since we now define delete_request, deleting windows will not quit
1861  * main loop, if you wish to do so, you should listen for EVAS_CALLBACK_FREE
1862  * on the object, that way you get notified and you can call
1863  * ecore_main_loop_quit().
1864  *
1865  * Flags can be OR'ed of:
1866  * @li ECORE_EVAS_OBJECT_ASSOCIATE_BASE (or 0): to listen to basic events
1867  *     like delete, resize and move, but no stacking or layer are used.
1868  * @li ECORE_EVAS_OBJECT_ASSOCIATE_STACK: stacking operations will act
1869  *     on the Ecore_Evas, not the object. So evas_object_raise() will
1870  *     call ecore_evas_raise(). Relative operations (stack_above, stack_below)
1871  *     are still not implemented.
1872  * @li ECORE_EVAS_OBJECT_ASSOCIATE_LAYER: stacking operations will act
1873  *     on the Ecore_Evas, not the object. So evas_object_layer_set() will
1874  *     call ecore_evas_layer_set().
1875  * @li ECORE_EVAS_OBJECT_ASSOCIATE_DEL: the object delete will delete the
1876  *     ecore_evas as well as delete_requests on the ecore_evas will delete
1877  *     etc.
1878  */
1879 EAPI Eina_Bool    ecore_evas_object_associate(Ecore_Evas *ee, Evas_Object *obj, Ecore_Evas_Object_Associate_Flags flags);
1880 /**
1881  * @brief Cancel the association set with ecore_evas_object_associate().
1882  *
1883  * @param ee The Ecore_Evas to dissociate from @a obj
1884  * @param obj The object to dissociate from @a ee
1885  * @return @c EINA_TRUE on success, @c EINA_FALSE otherwise.
1886  */
1887 EAPI Eina_Bool    ecore_evas_object_dissociate(Ecore_Evas *ee, Evas_Object *obj);
1888 /**
1889  * @brief Get the object associated with @p ee
1890  *
1891  * @param ee The Ecore_Evas to get the object from.
1892  * @return The associated object, or @c NULL if there is no associated object.
1893  */
1894 EAPI Evas_Object *ecore_evas_object_associate_get(const Ecore_Evas *ee);
1895
1896 /* helper function to be used with ECORE_GETOPT_CALLBACK_*() */
1897 EAPI unsigned char ecore_getopt_callback_ecore_evas_list_engines(const Ecore_Getopt *parser, const Ecore_Getopt_Desc *desc, const char *str, void *data, Ecore_Getopt_Value *storage);
1898
1899 /**
1900  * @brief Get a list of all the ecore_evases.
1901  *
1902  * @return A list of ecore_evases.
1903  *
1904  * The returned list of ecore evases is only valid until the canvases are
1905  * destroyed (and should not be cached for instance). The list can be freed by
1906  * just deleting the list.
1907  */
1908 EAPI Eina_List   *ecore_evas_ecore_evas_list_get(void);
1909
1910 /* specific calls to an x11 environment ecore_evas */
1911 EAPI void           ecore_evas_x11_leader_set(Ecore_Evas *ee, Ecore_X_Window win);
1912 EAPI Ecore_X_Window ecore_evas_x11_leader_get(Ecore_Evas *ee);
1913 EAPI void           ecore_evas_x11_leader_default_set(Ecore_Evas *ee);
1914 EAPI void           ecore_evas_x11_shape_input_rectangle_set(Ecore_Evas *ee, int x, int y, int w, int h);
1915 EAPI void           ecore_evas_x11_shape_input_rectangle_add(Ecore_Evas *ee, int x, int y, int w, int h);
1916 EAPI void           ecore_evas_x11_shape_input_rectangle_subtract(Ecore_Evas *ee, int x, int y, int w, int h);
1917 EAPI void           ecore_evas_x11_shape_input_empty(Ecore_Evas *ee);
1918 EAPI void           ecore_evas_x11_shape_input_reset(Ecore_Evas *ee);
1919 EAPI void           ecore_evas_x11_shape_input_apply(Ecore_Evas *ee);
1920
1921 /**
1922  * @defgroup Ecore_Evas_Ews Ecore_Evas Single Process Windowing System.
1923  *
1924  * These are global scope functions to manage the EWS to be used by
1925  * ecore_evas_ews_new().
1926  *
1927  * @since 1.1
1928  * @{
1929  */
1930
1931 /**
1932  * Sets the engine to be used by the backing store engine.
1933  *
1934  * @param engine The engine to be set.
1935  * @param options The options of the engine to be set.
1936  * @return @c EINA_TRUE on success, @c EINA_FALSE if ews is already in use.
1937  * @since 1.1
1938  */
1939 EAPI Eina_Bool ecore_evas_ews_engine_set(const char *engine, const char *options);
1940
1941 /**
1942  * Reconfigure the backing store used.
1943  *
1944  * @param x The X coordinate to be used.
1945  * @param y The Y coordinate to be used.
1946  * @param w The width of the Ecore_Evas to setup.
1947  * @param h The height of the Ecore_Evas to setup.
1948  * @return @c EINA_TRUE on success, @c EINA_FALSE otherwise.
1949  * @since 1.1
1950  */
1951 EAPI Eina_Bool ecore_evas_ews_setup(int x, int y, int w, int h);
1952
1953 /**
1954  * Return the internal backing store in use.
1955  *
1956  * @return The internal backing store in use.
1957  * @note this will forced it to be created, making future calls to
1958  * ecore_evas_ews_engine_set() void.
1959  *
1960  * @see ecore_evas_ews_evas_get()
1961  * @since 1.1
1962  */
1963 EAPI Ecore_Evas *ecore_evas_ews_ecore_evas_get(void);
1964
1965 /**
1966  * Return the internal backing store in use.
1967  *
1968  * @return The internal backing store in use.
1969  * @note this will forced it to be created, making future calls to
1970  * ecore_evas_ews_engine_set() void.
1971  *
1972  * @see ecore_evas_ews_ecore_evas_get()
1973  * @since 1.1
1974  */
1975 EAPI Evas *ecore_evas_ews_evas_get(void);
1976
1977 /**
1978  * Get the current background.
1979  */
1980 EAPI Evas_Object *ecore_evas_ews_background_get(void);
1981
1982 /**
1983  * Set the current background, must be created at evas ecore_evas_ews_evas_get()
1984  *
1985  * It will be kept at lowest layer (EVAS_LAYER_MIN) and below
1986  * everything else. You can set any object, default is a black
1987  * rectangle.
1988  *
1989  * @note previous object will be deleted!
1990  * @param o The Evas_Object for which to set the background.
1991  */
1992 EAPI void ecore_evas_ews_background_set(Evas_Object *o);
1993
1994 /**
1995  * Return all Ecore_Evas* created by EWS.
1996  *
1997  * @return An eina list of Ecore_evases.
1998  e @note Do not change the returned list or its contents.
1999  * @since 1.1
2000  */
2001 EAPI const Eina_List *ecore_evas_ews_children_get(void);
2002
2003 /**
2004  * Set the identifier of the manager taking care of internal windows.
2005  *
2006  * The ECORE_EVAS_EWS_EVENT_MANAGER_CHANGE event is issued. Consider
2007  * handling it to know if you should stop handling events yourself
2008  * (ie: another manager took over)
2009  *
2010  * @param manager any unique identifier address.
2011  *
2012  * @see ecore_evas_ews_manager_get()
2013  * @since 1.1
2014  */
2015 EAPI void        ecore_evas_ews_manager_set(const void *manager);
2016
2017 /**
2018  * Get the identifier of the manager taking care of internal windows.
2019  *
2020  * @return the value set by ecore_evas_ews_manager_set()
2021  * @since 1.1
2022  */
2023 EAPI const void *ecore_evas_ews_manager_get(void);
2024
2025 EAPI extern int ECORE_EVAS_EWS_EVENT_MANAGER_CHANGE; /**< manager was changed @since 1.1 */
2026 EAPI extern int ECORE_EVAS_EWS_EVENT_ADD; /**< window was created @since 1.1 */
2027 EAPI extern int ECORE_EVAS_EWS_EVENT_DEL; /**< window was deleted, pointer is already invalid but may be used as reference for further cleanup work. @since 1.1 */
2028 EAPI extern int ECORE_EVAS_EWS_EVENT_RESIZE; /**< window was resized @since 1.1 */
2029 EAPI extern int ECORE_EVAS_EWS_EVENT_MOVE; /**< window was moved @since 1.1 */
2030 EAPI extern int ECORE_EVAS_EWS_EVENT_SHOW; /**< window become visible @since 1.1 */
2031 EAPI extern int ECORE_EVAS_EWS_EVENT_HIDE; /**< window become hidden @since 1.1 */
2032 EAPI extern int ECORE_EVAS_EWS_EVENT_FOCUS; /**< window was focused @since 1.1 */
2033 EAPI extern int ECORE_EVAS_EWS_EVENT_UNFOCUS; /**< window lost focus @since 1.1 */
2034 EAPI extern int ECORE_EVAS_EWS_EVENT_RAISE; /**< window was raised @since 1.1 */
2035 EAPI extern int ECORE_EVAS_EWS_EVENT_LOWER; /**< window was lowered @since 1.1 */
2036 EAPI extern int ECORE_EVAS_EWS_EVENT_ACTIVATE; /**< window was activated @since 1.1 */
2037
2038 EAPI extern int ECORE_EVAS_EWS_EVENT_ICONIFIED_CHANGE; /**< window minimized/iconified changed @since 1.1 */
2039 EAPI extern int ECORE_EVAS_EWS_EVENT_MAXIMIZED_CHANGE; /**< window maximized changed @since 1.1 */
2040 EAPI extern int ECORE_EVAS_EWS_EVENT_LAYER_CHANGE; /**< window layer changed @since 1.1 */
2041 EAPI extern int ECORE_EVAS_EWS_EVENT_FULLSCREEN_CHANGE; /**< window fullscreen changed @since 1.1 */
2042 EAPI extern int ECORE_EVAS_EWS_EVENT_CONFIG_CHANGE; /**< some other window property changed (title, name, class, alpha, transparent, shaped...) @since 1.1 */
2043
2044 /**
2045  * @}
2046  */
2047
2048 /**
2049  * @defgroup Ecore_Evas_Extn External plug/socket infrastructure to remote canvases
2050  *
2051  * These functions allow 1 process to create a "socket" was pluged into which another
2052  * process can create a "plug" remotely to plug into.
2053  * Socket can provides content for several plugs.
2054  * This is best for small sized objects (about the size range
2055  * of a small icon up to a few large icons). Sine the plug is actually an
2056  * image object, you can fetch the pixel data
2057  *
2058  * @since 1.2
2059  * @{
2060  */
2061
2062 EAPI extern int ECORE_EVAS_EXTN_CLIENT_ADD; /**< this event is received when a plug has connected to an extn socket @since 1.2 */
2063 EAPI extern int ECORE_EVAS_EXTN_CLIENT_DEL; /**< this event is received when a plug has disconnected from an extn socket @since 1.2 */
2064
2065 /**
2066  * @brief Create a new Ecore_Evas canvas for the new external ecore evas socket
2067  *
2068  * @param w The width of the canvas, in pixels
2069  * @param h The height of the canvas, in pixels
2070  * @return A new @c Ecore_Evas instance or @c NULL, on failure
2071  *
2072  * This creates a new extn_socket canvas wrapper, with image data array
2073  * @b bound to the ARGB format, 8 bits per pixel.
2074  *
2075  * If creation is successful, an Ecore_Evas handle is returned or @c NULL if
2076  * creation fails. Also focus, show, hide etc. callbacks will also be called
2077  * if the plug object is shown, or already visible on connect, or if it is
2078  * hidden later, focused or unfocused.
2079  *
2080  * This function has to be flowed by ecore_evas_extn_socket_listen(),
2081  * for starting ecore ipc service.
2082  *
2083  * @code
2084  * Eina_Bool res = EINA_FALSE;
2085  * Ecore_Evas *ee = ecore_evas_extn_socket_new(1, 1);
2086  *
2087  * res = ecore_evas_extn_socket_listen("svcname", 1, EINA_FALSE);
2088  * if (!res) return;
2089  * ecore_evas_resize(ee, 240, 400);
2090  * @endcode
2091  *
2092  * or
2093  *
2094  * @code
2095  * Eina_Bool res = EINA_FALSE;
2096  * Ecore_Evas *ee = ecore_evas_extn_socket_new(240, 400);
2097  *
2098  * res = ecore_evas_extn_socket_listen("svcname", 1, EINA_FALSE);
2099  * if (!res) return;
2100  * @endcode
2101  *
2102  * When a client(plug) connects, you will get the ECORE_EVAS_EXTN_CLIENT_ADD event
2103  * in the ecore event queue, with event_info being the image object pointer
2104  * passed as a void pointer. When a client disconnects you will get the
2105  * ECORE_EVAS_EXTN_CLIENT_DEL event.
2106  *
2107  * You can set up event handles for these events as follows:
2108  *
2109  * @code
2110  * static void client_add_cb(void *data, int event, void *event_info)
2111  * {
2112  *   Evas_Object *obj = event_info;
2113  *   printf("client added to image object %p\n", obj);
2114  *   evas_object_show(obj);
2115  * }
2116  *
2117  * static void client_del_cb(void *data, int event, void *event_info)
2118  * {
2119  *   Evas_Object *obj = event_info;
2120  *   printf("client deleted from image object %p\n", obj);
2121  *   evas_object_hide(obj);
2122  * }
2123  *
2124  * void setup(void)
2125  * {
2126  *   ecore_event_handler_add(ECORE_EVAS_EXTN_CLIENT_ADD,
2127  *                           client_add_cb, NULL);
2128  *   ecore_event_handler_add(ECORE_EVAS_EXTN_CLIENT_DEL,
2129  *                           client_del_cb, NULL);
2130  * }
2131  * @endcode
2132  *
2133  * Note that events come in later after the event happened. You may want to be
2134  * careful as data structures you had associated with the image object
2135  * may have been freed after deleting, but the object may still be around
2136  * awating cleanup and thus still be valid.You can change the size with something like:
2137  *
2138  * @see ecore_evas_extn_socket_listen()
2139  * @see ecore_evas_extn_plug_new()
2140  * @see ecore_evas_extn_plug_object_data_lock()
2141  * @see ecore_evas_extn_plug_object_data_unlock()
2142  *
2143  * @since 1.2
2144  */
2145 EAPI Ecore_Evas *ecore_evas_extn_socket_new(int w, int h);
2146
2147 /**
2148  * @brief Create a socket to provide the service for external ecore evas
2149  * socket.
2150  *
2151  * @param ee The Ecore_Evas.
2152  * @param svcname The name of the service to be advertised. ensure that it is
2153  * unique (when combined with @p svcnum) otherwise creation may fail.
2154  * @param svcnum A number (any value, @c 0 being the common default) to
2155  * differentiate multiple instances of services with the same name.
2156  * @param svcsys A boolean that if true, specifies to create a system-wide
2157  * service all users can connect to, otherwise the service is private to the
2158  * user ide that created the service.
2159  * @return @c EINA_TRUE if creation is successful, @c EINA_FALSE if it does
2160  * not.
2161  *
2162  * This creates socket specified by @p svcname, @p svcnum and @p svcsys. If
2163  * creation is successful, @c EINA_TRUE is returned or @c EINA_FALSE if
2164  * creation fails.
2165  *
2166  * @see ecore_evas_extn_socket_new()
2167  * @see ecore_evas_extn_plug_new()
2168  * @see ecore_evas_extn_plug_object_data_lock()
2169  * @see ecore_evas_extn_plug_object_data_unlock()
2170  *
2171  * @since 1.2
2172  */
2173 EAPI Eina_Bool ecore_evas_extn_socket_listen(Ecore_Evas *ee, const char *svcname, int svcnum, Eina_Bool svcsys);
2174
2175 /**
2176  * @brief Lock the pixel data so the socket cannot change it
2177  *
2178  * @param obj The image object returned by ecore_evas_extn_plug_new() to lock
2179  *
2180  * You may need to get the image pixel data with evas_object_image_data_get()
2181  * from the image object, but need to ensure that it does not change while
2182  * you are using the data. This function lets you set an advisory lock on the
2183  * image data so the external plug process will not render to it or alter it.
2184  *
2185  * You should only hold the lock for just as long as you need to read out the
2186  * image data or otherwise deal with it, and then unlock it with
2187  * ecore_evas_extn_plug_object_data_unlock(). Keeping a lock over more than
2188  * 1 iteration of the main ecore loop will be problematic, so avoid it. Also
2189  * forgetting to unlock may cause the socket process to freeze and thus create
2190  * odd behavior.
2191  *
2192  * @see ecore_evas_extn_plug_new()
2193  * @see ecore_evas_extn_plug_object_data_unlock()
2194  *
2195  * @since 1.2
2196  */
2197 EAPI void ecore_evas_extn_plug_object_data_lock(Evas_Object *obj);
2198
2199 /**
2200  * @brief Unlock the pixel data so the socket can change it again.
2201  *
2202  * @param obj The image object returned by ecore_evas_extn_plug_new() to unlock
2203  *
2204  * This unlocks after an advisor lock has been taken by
2205  * ecore_evas_extn_plug_object_data_lock().
2206  *
2207  * @see ecore_evas_extn_plug_new()
2208  * @see ecore_evas_extn_plug_object_data_lock()
2209  *
2210  * @since 1.2
2211  */
2212 EAPI void ecore_evas_extn_plug_object_data_unlock(Evas_Object *obj);
2213
2214 /**
2215  * @brief Create a new external ecore evas plug
2216  *
2217  * @param ee_target The Ecore_Evas containing the canvas in which the new image object will live.
2218  * @return An evas image object that will contain the image output of a socket.
2219  *
2220  * This creates an image object that will contain the output of another
2221  * processes socket canvas when it connects. All input will be sent back to
2222  * this process as well, effectively swallowing or placing the socket process
2223  * in the canvas of the plug process in place of the image object. The image
2224  * object by default is created to be filled (equivalent of
2225  * evas_object_image_filled_add() on creation) so image content will scale
2226  * to fill the image unless otherwise reconfigured. The Ecore_Evas size
2227  * of the plug is the master size and determines size in pixels of the
2228  * plug canvas. You can change the size with something like:
2229  *
2230  * @code
2231  * Eina_Bool res = EINA_FALSE;
2232  * Evas_Object *obj = ecore_evas_extn_plug_new(ee);
2233  *
2234  * res = ecore_evas_extn_plug_connect("svcname", 1, EINA_FALSE);
2235  * if (!res) return;
2236  * ecore_evas_resize(ee, 240, 400);
2237  * @endcode
2238  *
2239  * @see ecore_evas_extn_socket_new()
2240  * @see ecore_evas_extn_plug_connect()
2241  * @since 1.2
2242  */
2243 EAPI Evas_Object *ecore_evas_extn_plug_new(Ecore_Evas *ee_target);
2244
2245 /**
2246  * @brief Connect an external ecore evas plug to service provided by external
2247  * ecore evas socket.
2248  *
2249  * @param obj The Ecore_Evas containing the canvas in which the new image
2250  * object will live.
2251  * @param svcname The service name to connect to set up by the socket.
2252  * @param svcnum The service number to connect to (set up by socket).
2253  * @param svcsys Boolean to set if the service is a system one or not (set up
2254  * by socket).
2255  * @return @c EINA_TRUE if creation is successful, @c EINA_FALSE if it does
2256  * not.
2257  *
2258  * @see ecore_evas_extn_plug_new()
2259  *
2260  * @since 1.2
2261  */
2262 EAPI Eina_Bool ecore_evas_extn_plug_connect(Evas_Object *obj, const char *svcname, int svcnum, Eina_Bool svcsys);
2263
2264 /**
2265  * @}
2266  */
2267
2268 /**
2269  * @}
2270  */
2271
2272 #ifdef __cplusplus
2273 }
2274 #endif
2275
2276 #endif