1 #include <Elementary.h>
7 * The window class of Elementary. Contains functions to manipulate
8 * windows. The Evas engine used to render the window contents is specified
9 * in the system or user elementary config files (whichever is found last),
10 * and can be overridden with the ELM_ENGINE environment variable for testing.
11 * Engines that may be supported (depending on Evas and Ecore-Evas compilation
12 * setup and modules actually installed at runtime) are (listed in order of
13 * best supported and most likely to be complete and work to lowest quality).
15 * "x11", "x", "software-x11", "software_x11"
16 * (Software rendering in X11)
17 * "gl", "opengl", "opengl-x11", "opengl_x11"
18 * (OpenGL or OpenGL-ES2 rendering in X11)
20 * (Virtual screenshot renderer - renders to output file and exits)
21 * "fb", "software-fb", "software_fb"
22 * (Linux framebuffer direct software rendering)
23 * "sdl", "software-sdl", "software_sdl"
24 * (SDL software rendering to SDL buffer)
25 * "gl-sdl", "gl_sdl", "opengl-sdl", "opengl_sdl"
26 * (OpenGL or OpenGL-ES2 rendering using SDL as the buffer)
27 * "gdi", "software-gdi", "software_gdi"
28 * (Windows WIN32 rendering via GDI with software)
30 * (Rendering to a DirectFB window)
31 * "x11-8", "x8", "software-8-x11", "software_8_x11"
32 * (Rendering in grayscale using dedicated 8bit software engine in X11)
33 * "x11-16", "x16", "software-16-x11", "software_16_x11"
34 * (Rendering in X11 using 16bit software engine)
35 * "wince-gdi", "software-16-wince-gdi", "software_16_wince_gdi"
36 * (Windows CE rendering via GDI with 16bit software renderer)
37 * "sdl-16", "software-16-sdl", "software_16_sdl"
38 * (Rendering to SDL buffer with 16bit software renderer)
40 * All engines use a simple string to select the engine to render, EXCEPT
41 * the "shot" engine. This actually encodes the output of the virtual
42 * screenshot and how long to delay in the engine string. The engine string
43 * is encoded in the following way:
45 * "shot:[delay=XX][:][repeat=DDD][:][file=XX]"
47 * Where options are separated by a ":" char if more than one option is given,
48 * with delay, if provided being the first option and file the last (order
49 * is important). The delay specifies how long to wait after the window is
50 * shown before doing the virtual "in memory" rendering and then save the
51 * output to the file specified by the file option (and then exit). If no
52 * delay is given, the default is 0.5 seconds. If no file is given the
53 * default output file is "out.png". Repeat option is for continous
54 * capturing screenshots. Repeat range is from 1 to 999 and
55 * filename is fixed to "out001.png"
56 * Some examples of using the shot engine:
58 * ELM_ENGINE="shot:delay=1.0:repeat=5:file=elm_test.png" elementary_test
59 * ELM_ENGINE="shot:delay=1.0:file=elm_test.png" elementary_test
60 * ELM_ENGINE="shot:file=elm_test2.png" elementary_test
61 * ELM_ENGINE="shot:delay=2.0" elementary_test
62 * ELM_ENGINE="shot:" elementary_test
64 * Signals that you can add callbacks for are:
66 * "delete,request" - the user requested to delete the window
67 * "focus,in" - window got focus
68 * "focus,out" - window lost focus
69 * "moved" - window that holds the canvas was moved
72 typedef struct _Elm_Win Elm_Win;
78 Evas_Object *parent, *win_obj, *img_obj, *frame_obj;
80 #ifdef HAVE_ELEMENTARY_X
82 Ecore_Event_Handler *client_message_handler;
84 Ecore_Job *deferred_resize_job;
85 Ecore_Job *deferred_child_eval_job;
88 Elm_Win_Keyboard_Mode kbdmode;
95 Eina_Bool autodel : 1;
96 int *autodel_clear, rot;
106 Eina_Bool visible : 1;
107 Eina_Bool handled : 1;
111 Ecore_Job *reconf_job;
113 Eina_Bool enabled : 1;
114 Eina_Bool changed_theme : 1;
115 Eina_Bool top_animate : 1;
116 Eina_Bool geometry_changed : 1;
120 static const char *widtype = NULL;
121 static void _elm_win_obj_callback_del(void *data, Evas *e, Evas_Object *obj, void *event_info);
122 static void _elm_win_obj_callback_img_obj_del(void *data, Evas *e, Evas_Object *obj, void *event_info);
123 static void _elm_win_obj_callback_parent_del(void *data, Evas *e, Evas_Object *obj, void *event_info);
124 static void _elm_win_obj_intercept_move(void *data, Evas_Object *obj, Evas_Coord x, Evas_Coord y);
125 static void _elm_win_obj_intercept_show(void *data, Evas_Object *obj);
126 static void _elm_win_move(Ecore_Evas *ee);
127 static void _elm_win_resize(Ecore_Evas *ee);
128 static void _elm_win_delete_request(Ecore_Evas *ee);
129 static void _elm_win_resize_job(void *data);
130 #ifdef HAVE_ELEMENTARY_X
131 static void _elm_win_xwin_update(Elm_Win *win);
133 static void _elm_win_eval_subobjs(Evas_Object *obj);
134 static void _elm_win_subobj_callback_del(void *data, Evas *e, Evas_Object *obj, void *event_info);
135 static void _elm_win_subobj_callback_changed_size_hints(void *data, Evas *e, Evas_Object *obj, void *event_info);
136 static void _elm_win_focus_highlight_init(Elm_Win *win);
137 static void _elm_win_focus_highlight_shutdown(Elm_Win *win);
138 static void _elm_win_focus_highlight_visible_set(Elm_Win *win, Eina_Bool visible);
139 static void _elm_win_focus_highlight_reconfigure_job_start(Elm_Win *win);
140 static void _elm_win_focus_highlight_reconfigure_job_stop(Elm_Win *win);
141 static void _elm_win_focus_highlight_anim_end(void *data, Evas_Object *obj, const char *emission, const char *source);
142 static void _elm_win_focus_highlight_reconfigure(Elm_Win *win);
144 static const char SIG_DELETE_REQUEST[] = "delete,request";
145 static const char SIG_FOCUS_OUT[] = "focus,in";
146 static const char SIG_FOCUS_IN[] = "focus,out";
147 static const char SIG_MOVED[] = "moved";
149 static const Evas_Smart_Cb_Description _signals[] = {
150 {SIG_DELETE_REQUEST, ""},
159 Eina_List *_elm_win_list = NULL;
160 int _elm_win_deferred_free = 0;
162 // exmaple shot spec (wait 0.1 sec then save as my-window.png):
163 // ELM_ENGINE="shot:delay=0.1:file=my-window.png"
166 _shot_delay_get(Elm_Win *win)
169 char *d = strdup(win->shot.info);
172 for (p = (char *)win->shot.info; *p; p++)
174 if (!strncmp(p, "delay=", 6))
178 for (pd = d, p += 6; (*p) && (*p != ':'); p++, pd++)
193 _shot_file_get(Elm_Win *win)
196 char *tmp = strdup(win->shot.info);
197 char *repname = NULL;
199 if (!tmp) return NULL;
201 for (p = (char *)win->shot.info; *p; p++)
203 if (!strncmp(p, "file=", 5))
206 if (!win->shot.repeat_count) return tmp;
209 char *dotptr = strrchr(tmp, '.');
212 repname = malloc(sizeof(char)*(strlen(tmp) + 16));
213 strncpy(repname, tmp, dotptr - tmp);
214 sprintf(repname + (dotptr - tmp), "%03i",
215 win->shot.shot_counter + 1);
216 strcat(repname, dotptr);
223 if (!win->shot.repeat_count) return strdup("out.png");
226 repname = malloc(sizeof(char) * 24);
227 sprintf(repname, "out%03i.png", win->shot.shot_counter + 1);
233 _shot_repeat_count_get(Elm_Win *win)
237 char *d = strdup(win->shot.info);
240 for (p = (char *)win->shot.info; *p; p++)
242 if (!strncmp(p, "repeat=", 7))
246 for (pd = d, p += 7; (*p) && (*p != ':'); p++, pd++)
253 if (v > 1000) v = 999;
263 _shot_key_get(Elm_Win *win __UNUSED__)
269 _shot_flags_get(Elm_Win *win __UNUSED__)
275 _shot_do(Elm_Win *win)
279 unsigned int *pixels;
281 char *file, *key, *flags;
283 ecore_evas_manual_render(win->ee);
284 pixels = (void *)ecore_evas_buffer_pixels_get(win->ee);
286 ecore_evas_geometry_get(win->ee, NULL, NULL, &w, &h);
287 if ((w < 1) || (h < 1)) return;
288 file = _shot_file_get(win);
290 key = _shot_key_get(win);
291 flags = _shot_flags_get(win);
292 ee = ecore_evas_buffer_new(1, 1);
293 o = evas_object_image_add(ecore_evas_get(ee));
294 evas_object_image_alpha_set(o, ecore_evas_alpha_get(win->ee));
295 evas_object_image_size_set(o, w, h);
296 evas_object_image_data_set(o, pixels);
297 if (!evas_object_image_save(o, file, key, flags))
299 ERR("Cannot save window to '%s' (key '%s', flags '%s')",
304 if (flags) free(flags);
306 if (win->shot.repeat_count) win->shot.shot_counter++;
310 _shot_delay(void *data)
314 if (win->shot.repeat_count)
316 int remainshot = (win->shot.repeat_count - win->shot.shot_counter);
317 if (remainshot > 0) return EINA_TRUE;
319 win->shot.timer = NULL;
325 _shot_init(Elm_Win *win)
327 if (!win->shot.info) return;
328 win->shot.repeat_count = _shot_repeat_count_get(win);
329 win->shot.shot_counter = 0;
333 _shot_handle(Elm_Win *win)
335 if (!win->shot.info) return;
336 win->shot.timer = ecore_timer_add(_shot_delay_get(win), _shot_delay, win);
340 _elm_win_move(Ecore_Evas *ee)
342 Evas_Object *obj = ecore_evas_object_associate_get(ee);
347 win = elm_widget_data_get(obj);
349 ecore_evas_geometry_get(ee, &x, &y, NULL, NULL);
352 evas_object_smart_callback_call(win->win_obj, SIG_MOVED, NULL);
356 _elm_win_resize(Ecore_Evas *ee)
358 Evas_Object *obj = ecore_evas_object_associate_get(ee);
362 win = elm_widget_data_get(obj);
364 if (win->deferred_resize_job) ecore_job_del(win->deferred_resize_job);
365 win->deferred_resize_job = ecore_job_add(_elm_win_resize_job, win);
369 _elm_win_focus_in(Ecore_Evas *ee)
371 Evas_Object *obj = ecore_evas_object_associate_get(ee);
375 win = elm_widget_data_get(obj);
377 /*NB: Why two different "focus signals" here ??? */
378 evas_object_smart_callback_call(win->win_obj, SIG_FOCUS_IN, NULL);
379 win->focus_highlight.cur.visible = EINA_TRUE;
380 _elm_win_focus_highlight_reconfigure_job_start(win);
384 else if (win->img_obj)
391 _elm_win_focus_out(Ecore_Evas *ee)
393 Evas_Object *obj = ecore_evas_object_associate_get(ee);
397 win = elm_widget_data_get(obj);
399 evas_object_smart_callback_call(win->win_obj, SIG_FOCUS_OUT, NULL);
400 win->focus_highlight.cur.visible = EINA_FALSE;
401 _elm_win_focus_highlight_reconfigure_job_start(win);
405 else if (win->img_obj)
412 _elm_win_focus_next_hook(const Evas_Object *obj, Elm_Focus_Direction dir, Evas_Object **next)
414 Elm_Win *wd = elm_widget_data_get(obj);
415 const Eina_List *items;
416 void *(*list_data_get) (const Eina_List *list);
424 if (!(items = elm_widget_focus_custom_chain_get(obj)))
430 list_data_get = eina_list_data_get;
432 elm_widget_focus_list_next_get(obj, items, list_data_get, dir, next);
438 *next = (Evas_Object *)obj;
443 _elm_win_on_focus_hook(void *data __UNUSED__, Evas_Object *obj)
445 Elm_Win *win = elm_widget_data_get(obj);
449 evas_object_focus_set(win->img_obj, elm_widget_focus_get(obj));
451 evas_object_focus_set(obj, elm_widget_focus_get(obj));
455 _elm_win_event_cb(Evas_Object *obj, Evas_Object *src __UNUSED__, Evas_Callback_Type type, void *event_info)
457 if (type == EVAS_CALLBACK_KEY_DOWN)
459 Evas_Event_Key_Down *ev = event_info;
460 if (!strcmp(ev->keyname, "Tab"))
462 if (evas_key_modifier_is_set(ev->modifiers, "Shift"))
463 elm_widget_focus_cycle(obj, ELM_FOCUS_PREVIOUS);
465 elm_widget_focus_cycle(obj, ELM_FOCUS_NEXT);
466 ev->event_flags |= EVAS_EVENT_FLAG_ON_HOLD;
475 _deferred_ecore_evas_free(void *data)
477 ecore_evas_free(data);
478 _elm_win_deferred_free--;
482 _elm_win_obj_callback_show(void *data __UNUSED__, Evas *e __UNUSED__, Evas_Object *obj, void *event_info __UNUSED__)
486 elm_object_focus(obj);
487 if (win->shot.info) _shot_handle(win);
491 _elm_win_obj_callback_hide(void *data, Evas *e __UNUSED__, Evas_Object *obj __UNUSED__, void *event_info __UNUSED__)
498 else if (win->img_obj)
500 evas_object_hide(win->img_obj);
505 _elm_win_obj_callback_del(void *data, Evas *e, Evas_Object *obj, void *event_info __UNUSED__)
512 evas_object_event_callback_del_full(win->parent, EVAS_CALLBACK_DEL,
513 _elm_win_obj_callback_parent_del, win);
516 if (win->autodel_clear) *(win->autodel_clear) = -1;
517 _elm_win_list = eina_list_remove(_elm_win_list, win->win_obj);
518 while (win->subobjs) elm_win_resize_object_del(obj, win->subobjs->data);
521 ecore_evas_callback_delete_request_set(win->ee, NULL);
522 ecore_evas_callback_resize_set(win->ee, NULL);
524 if (win->deferred_resize_job) ecore_job_del(win->deferred_resize_job);
525 if (win->deferred_child_eval_job) ecore_job_del(win->deferred_child_eval_job);
526 if (win->shot.info) eina_stringshare_del(win->shot.info);
527 if (win->shot.timer) ecore_timer_del(win->shot.timer);
528 while (((child = evas_object_bottom_get(win->evas))) &&
531 evas_object_del(child);
533 while (((child = evas_object_top_get(win->evas))) &&
536 evas_object_del(child);
538 #ifdef HAVE_ELEMENTARY_X
539 if (win->client_message_handler)
540 ecore_event_handler_del(win->client_message_handler);
542 // FIXME: Why are we flushing edje on every window destroy ??
543 // edje_file_cache_flush();
544 // edje_collection_cache_flush();
545 // evas_image_cache_flush(win->evas);
546 // evas_font_cache_flush(win->evas);
547 // FIXME: we are in the del handler for the object and delete the canvas
548 // that lives under it from the handler... nasty. deferring doesn't help either
558 ecore_job_add(_deferred_ecore_evas_free, win->ee);
559 _elm_win_deferred_free++;
563 _elm_win_focus_highlight_shutdown(win);
564 eina_stringshare_del(win->focus_highlight.style);
568 if ((!_elm_win_list) &&
569 (elm_policy_get(ELM_POLICY_QUIT) == ELM_POLICY_QUIT_LAST_WINDOW_CLOSED))
571 edje_file_cache_flush();
572 edje_collection_cache_flush();
573 evas_image_cache_flush(e);
574 evas_font_cache_flush(e);
580 _elm_win_obj_callback_img_obj_del(void *data, Evas *e __UNUSED__, Evas_Object *obj __UNUSED__, void *event_info __UNUSED__)
583 if (!win->img_obj) return;
584 evas_object_event_callback_del_full
585 (win->img_obj, EVAS_CALLBACK_DEL, _elm_win_obj_callback_img_obj_del, win);
586 evas_object_del(win->img_obj);
590 _elm_win_obj_callback_parent_del(void *data, Evas *e __UNUSED__, Evas_Object *obj, void *event_info __UNUSED__)
593 if (obj == win->parent) win->parent = NULL;
597 _elm_win_obj_intercept_move(void *data, Evas_Object *obj, Evas_Coord x, Evas_Coord y)
603 if ((x != win->screen.x) || (y != win->screen.y))
607 evas_object_smart_callback_call(win->win_obj, SIG_MOVED, NULL);
612 evas_object_move(obj, x, y);
617 _elm_win_obj_intercept_show(void *data, Evas_Object *obj)
620 // this is called to make sure all smart containers have calculated their
621 // sizes BEFORE we show the window to make sure it initially appears at
622 // our desired size (ie min size is known first)
623 evas_smart_objects_calculate(evas_object_evas_get(obj));
624 evas_object_show(obj);
628 else if (win->img_obj)
630 evas_object_show(win->img_obj);
635 _elm_win_obj_callback_move(void *data, Evas *e __UNUSED__, Evas_Object *obj, void *event_info __UNUSED__)
639 if (ecore_evas_override_get(win->ee))
643 evas_object_geometry_get(obj, &x, &y, NULL, NULL);
646 evas_object_smart_callback_call(win->win_obj, SIG_MOVED, NULL);
651 else if (win->img_obj)
655 evas_object_geometry_get(obj, &x, &y, NULL, NULL);
658 // evas_object_move(win->img_obj, x, y);
663 _elm_win_obj_callback_resize(void *data, Evas *e __UNUSED__, Evas_Object *obj, void *event_info __UNUSED__)
670 else if (win->img_obj)
672 Evas_Coord w = 1, h = 1;
674 evas_object_geometry_get(obj, NULL, NULL, &w, &h);
677 evas_object_image_size_set(win->img_obj, w, h);
682 _elm_win_delete_request(Ecore_Evas *ee)
684 Evas_Object *obj = ecore_evas_object_associate_get(ee);
686 if (strcmp(elm_widget_type_get(obj), "win")) return;
688 win = elm_widget_data_get(obj);
690 int autodel = win->autodel;
691 win->autodel_clear = &autodel;
692 evas_object_ref(win->win_obj);
693 evas_object_smart_callback_call(win->win_obj, SIG_DELETE_REQUEST, NULL);
694 // FIXME: if above callback deletes - then the below will be invalid
695 if (autodel) evas_object_del(win->win_obj);
696 else win->autodel_clear = NULL;
697 evas_object_unref(win->win_obj);
701 _elm_win_resize_job(void *data)
708 win->deferred_resize_job = NULL;
709 ecore_evas_geometry_get(win->ee, NULL, NULL, &w, &h);
710 evas_object_resize(win->win_obj, w, h);
714 else if (win->img_obj)
717 EINA_LIST_FOREACH(win->subobjs, l, obj)
719 evas_object_move(obj, 0, 0);
720 evas_object_resize(obj, w, h);
724 #ifdef HAVE_ELEMENTARY_X
726 _elm_win_xwindow_get(Elm_Win *win)
730 #define ENGINE_COMPARE(name) (!strcmp(_elm_config->engine, name))
731 if (ENGINE_COMPARE(ELM_SOFTWARE_X11))
733 if (win->ee) win->xwin = ecore_evas_software_x11_window_get(win->ee);
735 else if (ENGINE_COMPARE(ELM_SOFTWARE_X11) ||
736 ENGINE_COMPARE(ELM_SOFTWARE_FB) ||
737 ENGINE_COMPARE(ELM_SOFTWARE_16_WINCE) ||
738 ENGINE_COMPARE(ELM_SOFTWARE_SDL) ||
739 ENGINE_COMPARE(ELM_SOFTWARE_16_SDL) ||
740 ENGINE_COMPARE(ELM_OPENGL_SDL))
743 else if (ENGINE_COMPARE(ELM_SOFTWARE_16_X11))
745 if (win->ee) win->xwin = ecore_evas_software_x11_16_window_get(win->ee);
747 else if (ENGINE_COMPARE(ELM_SOFTWARE_8_X11))
749 if (win->ee) win->xwin = ecore_evas_software_x11_8_window_get(win->ee);
752 else if (ENGINE_COMPARE(ELM_XRENDER_X11))
754 if (win->ee) win->xwin = ecore_evas_xrender_x11_window_get(win->ee);
757 else if (ENGINE_COMPARE(ELM_OPENGL_X11))
759 if (win->ee) win->xwin = ecore_evas_gl_x11_window_get(win->ee);
761 else if (ENGINE_COMPARE(ELM_SOFTWARE_WIN32))
763 if (win->ee) win->xwin = (long)ecore_evas_win32_window_get(win->ee);
765 #undef ENGINE_COMPARE
769 #ifdef HAVE_ELEMENTARY_X
771 _elm_win_xwin_update(Elm_Win *win)
773 _elm_win_xwindow_get(win);
778 win2 = elm_widget_data_get(win->parent);
782 ecore_x_icccm_transient_for_set(win->xwin, win2->xwin);
786 if (!win->xwin) return; /* nothing more to do */
791 ecore_x_netwm_window_type_set(win->xwin, ECORE_X_WINDOW_TYPE_NORMAL);
793 case ELM_WIN_DIALOG_BASIC:
794 ecore_x_netwm_window_type_set(win->xwin, ECORE_X_WINDOW_TYPE_DIALOG);
796 case ELM_WIN_DESKTOP:
797 ecore_x_netwm_window_type_set(win->xwin, ECORE_X_WINDOW_TYPE_DESKTOP);
800 ecore_x_netwm_window_type_set(win->xwin, ECORE_X_WINDOW_TYPE_DOCK);
802 case ELM_WIN_TOOLBAR:
803 ecore_x_netwm_window_type_set(win->xwin, ECORE_X_WINDOW_TYPE_TOOLBAR);
806 ecore_x_netwm_window_type_set(win->xwin, ECORE_X_WINDOW_TYPE_MENU);
808 case ELM_WIN_UTILITY:
809 ecore_x_netwm_window_type_set(win->xwin, ECORE_X_WINDOW_TYPE_UTILITY);
812 ecore_x_netwm_window_type_set(win->xwin, ECORE_X_WINDOW_TYPE_SPLASH);
814 case ELM_WIN_DROPDOWN_MENU:
815 ecore_x_netwm_window_type_set(win->xwin, ECORE_X_WINDOW_TYPE_DROPDOWN_MENU);
817 case ELM_WIN_POPUP_MENU:
818 ecore_x_netwm_window_type_set(win->xwin, ECORE_X_WINDOW_TYPE_POPUP_MENU);
820 case ELM_WIN_TOOLTIP:
821 ecore_x_netwm_window_type_set(win->xwin, ECORE_X_WINDOW_TYPE_TOOLTIP);
823 case ELM_WIN_NOTIFICATION:
824 ecore_x_netwm_window_type_set(win->xwin, ECORE_X_WINDOW_TYPE_NOTIFICATION);
827 ecore_x_netwm_window_type_set(win->xwin, ECORE_X_WINDOW_TYPE_COMBO);
830 ecore_x_netwm_window_type_set(win->xwin, ECORE_X_WINDOW_TYPE_DND);
835 ecore_x_e_virtual_keyboard_state_set
836 (win->xwin, (Ecore_X_Virtual_Keyboard_State)win->kbdmode);
841 _elm_win_eval_subobjs(Evas_Object *obj)
844 const Evas_Object *child;
846 Elm_Win *win = elm_widget_data_get(obj);
847 Evas_Coord w, h, minw = -1, minh = -1, maxw = -1, maxh = -1;
851 EINA_LIST_FOREACH(win->subobjs, l, child)
853 evas_object_size_hint_weight_get(child, &wx, &wy);
854 if (wx == 0.0) xx = 0;
855 if (wy == 0.0) xy = 0;
857 evas_object_size_hint_min_get(child, &w, &h);
860 if (w > minw) minw = w;
861 if (h > minh) minh = h;
863 evas_object_size_hint_max_get(child, &w, &h);
866 if (maxw == -1) maxw = w;
867 else if ((w > 0) && (w < maxw)) maxw = w;
868 if (maxh == -1) maxh = h;
869 else if ((h > 0) && (h < maxh)) maxh = h;
871 if (!xx) maxw = minw;
873 if (!xy) maxh = minh;
875 evas_object_size_hint_min_set(obj, minw, minh);
876 evas_object_size_hint_max_set(obj, maxw, maxh);
877 evas_object_geometry_get(obj, NULL, NULL, &w, &h);
878 if (w < minw) w = minw;
879 if (h < minh) h = minh;
880 if ((maxw >= 0) && (w > maxw)) w = maxw;
881 if ((maxh >= 0) && (h > maxh)) h = maxh;
882 evas_object_resize(obj, w, h);
886 _elm_win_subobj_callback_del(void *data, Evas *e __UNUSED__, Evas_Object *obj, void *event_info __UNUSED__)
888 Elm_Win *win = elm_widget_data_get(data);
889 win->subobjs = eina_list_remove(win->subobjs, obj);
890 _elm_win_eval_subobjs(win->win_obj);
894 _elm_win_subobj_callback_changed_size_hints(void *data, Evas *e __UNUSED__, Evas_Object *obj __UNUSED__, void *event_info __UNUSED__)
896 _elm_win_eval_subobjs(data);
900 _elm_win_shutdown(void)
902 while (_elm_win_list)
903 evas_object_del(_elm_win_list->data);
907 _elm_win_rescale(Elm_Theme *th, Eina_Bool use_theme)
914 EINA_LIST_FOREACH(_elm_win_list, l, obj)
915 elm_widget_theme(obj);
919 EINA_LIST_FOREACH(_elm_win_list, l, obj)
920 elm_widget_theme_specific(obj, th, EINA_FALSE);
924 #ifdef HAVE_ELEMENTARY_X
926 _elm_win_client_message(void *data, int type __UNUSED__, void *event)
929 Ecore_X_Event_Client_Message *e = event;
931 if (e->format != 32) return ECORE_CALLBACK_PASS_ON;
932 if (e->message_type == ECORE_X_ATOM_E_COMP_FLUSH)
934 if ((unsigned)e->data.l[0] == win->xwin)
936 Evas *evas = evas_object_evas_get(win->win_obj);
939 edje_file_cache_flush();
940 edje_collection_cache_flush();
941 evas_image_cache_flush(evas);
942 evas_font_cache_flush(evas);
946 else if (e->message_type == ECORE_X_ATOM_E_COMP_DUMP)
948 if ((unsigned)e->data.l[0] == win->xwin)
950 Evas *evas = evas_object_evas_get(win->win_obj);
953 edje_file_cache_flush();
954 edje_collection_cache_flush();
955 evas_image_cache_flush(evas);
956 evas_font_cache_flush(evas);
957 evas_render_dump(evas);
961 return ECORE_CALLBACK_PASS_ON;
966 _elm_win_focus_target_move(void *data, Evas *e __UNUSED__, Evas_Object *obj __UNUSED__, void *event_info __UNUSED__)
970 win->focus_highlight.geometry_changed = EINA_TRUE;
971 _elm_win_focus_highlight_reconfigure_job_start(win);
975 _elm_win_focus_target_resize(void *data, Evas *e __UNUSED__, Evas_Object *obj __UNUSED__, void *event_info __UNUSED__)
979 win->focus_highlight.geometry_changed = EINA_TRUE;
980 _elm_win_focus_highlight_reconfigure_job_start(win);
984 _elm_win_focus_target_del(void *data, Evas *e __UNUSED__, Evas_Object *obj __UNUSED__, void *event_info __UNUSED__)
988 win->focus_highlight.cur.target = NULL;
990 _elm_win_focus_highlight_reconfigure_job_start(win);
994 _elm_win_focus_target_callbacks_add(Elm_Win *win)
996 Evas_Object *obj = win->focus_highlight.cur.target;
998 evas_object_event_callback_add(obj, EVAS_CALLBACK_MOVE,
999 _elm_win_focus_target_move, win);
1000 evas_object_event_callback_add(obj, EVAS_CALLBACK_RESIZE,
1001 _elm_win_focus_target_resize, win);
1002 evas_object_event_callback_add(obj, EVAS_CALLBACK_DEL,
1003 _elm_win_focus_target_del, win);
1007 _elm_win_focus_target_callbacks_del(Elm_Win *win)
1009 Evas_Object *obj = win->focus_highlight.cur.target;
1011 evas_object_event_callback_del_full(obj, EVAS_CALLBACK_MOVE,
1012 _elm_win_focus_target_move, win);
1013 evas_object_event_callback_del_full(obj, EVAS_CALLBACK_RESIZE,
1014 _elm_win_focus_target_resize, win);
1015 evas_object_event_callback_del_full(obj, EVAS_CALLBACK_DEL,
1016 _elm_win_focus_target_del, win);
1019 static Evas_Object *
1020 _elm_win_focus_target_get(Evas_Object *obj)
1022 Evas_Object *o = obj;
1026 if (elm_widget_is(o))
1028 if (!elm_widget_highlight_ignore_get(o))
1030 o = elm_widget_parent_get(o);
1032 o = evas_object_smart_parent_get(o);
1036 o = elm_widget_parent_widget_get(o);
1038 o = evas_object_smart_parent_get(o);
1047 _elm_win_object_focus_in(void *data, Evas *e __UNUSED__, void *event_info)
1049 Evas_Object *obj = event_info, *target;
1050 Elm_Win *win = data;
1052 if (win->focus_highlight.cur.target == obj)
1055 target = _elm_win_focus_target_get(obj);
1056 win->focus_highlight.cur.target = target;
1057 if (elm_widget_highlight_in_theme_get(target))
1058 win->focus_highlight.cur.handled = EINA_TRUE;
1060 _elm_win_focus_target_callbacks_add(win);
1062 _elm_win_focus_highlight_reconfigure_job_start(win);
1066 _elm_win_object_focus_out(void *data, Evas *e __UNUSED__, void *event_info __UNUSED__)
1068 Elm_Win *win = data;
1070 if (!win->focus_highlight.cur.target)
1073 if (!win->focus_highlight.cur.handled)
1074 _elm_win_focus_target_callbacks_del(win);
1075 win->focus_highlight.cur.target = NULL;
1076 win->focus_highlight.cur.handled = EINA_FALSE;
1078 _elm_win_focus_highlight_reconfigure_job_start(win);
1082 _elm_win_focus_highlight_hide(void *data __UNUSED__, Evas_Object *obj, const char *emission __UNUSED__, const char *source __UNUSED__)
1084 evas_object_hide(obj);
1088 _elm_win_focus_highlight_init(Elm_Win *win)
1090 evas_event_callback_add(win->evas, EVAS_CALLBACK_CANVAS_OBJECT_FOCUS_IN,
1091 _elm_win_object_focus_in, win);
1092 evas_event_callback_add(win->evas,
1093 EVAS_CALLBACK_CANVAS_OBJECT_FOCUS_OUT,
1094 _elm_win_object_focus_out, win);
1096 win->focus_highlight.cur.target = evas_focus_get(win->evas);
1098 win->focus_highlight.top = edje_object_add(win->evas);
1099 win->focus_highlight.changed_theme = EINA_TRUE;
1100 edje_object_signal_callback_add(win->focus_highlight.top,
1101 "elm,action,focus,hide,end", "",
1102 _elm_win_focus_highlight_hide, NULL);
1103 edje_object_signal_callback_add(win->focus_highlight.top,
1104 "elm,action,focus,anim,end", "",
1105 _elm_win_focus_highlight_anim_end, win);
1106 _elm_win_focus_highlight_reconfigure_job_start(win);
1110 _elm_win_focus_highlight_shutdown(Elm_Win *win)
1112 _elm_win_focus_highlight_reconfigure_job_stop(win);
1113 if (win->focus_highlight.cur.target)
1115 _elm_win_focus_target_callbacks_del(win);
1116 win->focus_highlight.cur.target = NULL;
1118 if (win->focus_highlight.top)
1120 evas_object_del(win->focus_highlight.top);
1121 win->focus_highlight.top = NULL;
1124 evas_event_callback_del_full(win->evas,
1125 EVAS_CALLBACK_CANVAS_OBJECT_FOCUS_IN,
1126 _elm_win_object_focus_in, win);
1127 evas_event_callback_del_full(win->evas,
1128 EVAS_CALLBACK_CANVAS_OBJECT_FOCUS_OUT,
1129 _elm_win_object_focus_out, win);
1133 _elm_win_focus_highlight_visible_set(Elm_Win *win, Eina_Bool visible)
1137 top = win->focus_highlight.top;
1142 evas_object_show(top);
1143 edje_object_signal_emit(top, "elm,action,focus,show", "elm");
1149 edje_object_signal_emit(top, "elm,action,focus,hide", "elm");
1154 _elm_win_focus_highlight_reconfigure_job(void *data)
1156 _elm_win_focus_highlight_reconfigure((Elm_Win *)data);
1160 _elm_win_focus_highlight_reconfigure_job_start(Elm_Win *win)
1162 if (win->focus_highlight.reconf_job)
1163 ecore_job_del(win->focus_highlight.reconf_job);
1164 win->focus_highlight.reconf_job = ecore_job_add(
1165 _elm_win_focus_highlight_reconfigure_job, win);
1169 _elm_win_focus_highlight_reconfigure_job_stop(Elm_Win *win)
1171 if (win->focus_highlight.reconf_job)
1172 ecore_job_del(win->focus_highlight.reconf_job);
1173 win->focus_highlight.reconf_job = NULL;
1177 _elm_win_focus_highlight_simple_setup(Elm_Win *win, Evas_Object *obj)
1179 Evas_Object *clip, *target = win->focus_highlight.cur.target;
1180 Evas_Coord x, y, w, h;
1182 clip = evas_object_clip_get(target);
1183 evas_object_geometry_get(target, &x, &y, &w, &h);
1185 evas_object_move(obj, x, y);
1186 evas_object_resize(obj, w, h);
1187 evas_object_clip_set(obj, clip);
1191 _elm_win_focus_highlight_anim_setup(Elm_Win *win, Evas_Object *obj)
1193 Evas_Coord tx, ty, tw, th;
1194 Evas_Coord w, h, px, py, pw, ph;
1195 Edje_Message_Int_Set *m;
1196 Evas_Object *previous = win->focus_highlight.prev.target;
1197 Evas_Object *target = win->focus_highlight.cur.target;
1199 evas_object_geometry_get(win->win_obj, NULL, NULL, &w, &h);
1200 evas_object_geometry_get(target, &tx, &ty, &tw, &th);
1201 evas_object_geometry_get(previous, &px, &py, &pw, &ph);
1202 evas_object_move(obj, 0, 0);
1203 evas_object_resize(obj, tw, th);
1204 evas_object_clip_unset(obj);
1206 m = alloca(sizeof(*m) + (sizeof(int) * 8));
1216 edje_object_message_send(obj, EDJE_MESSAGE_INT_SET, 1, m);
1220 _elm_win_focus_highlight_anim_end(void *data, Evas_Object *obj, const char *emission __UNUSED__, const char *source __UNUSED__)
1222 Elm_Win *win = data;
1223 _elm_win_focus_highlight_simple_setup(win, obj);
1227 _elm_win_focus_highlight_reconfigure(Elm_Win *win)
1229 Evas_Object *target = win->focus_highlight.cur.target;
1230 Evas_Object *previous = win->focus_highlight.prev.target;
1231 Evas_Object *top = win->focus_highlight.top;
1232 Eina_Bool visible_changed;
1233 Eina_Bool common_visible;
1234 const char *sig = NULL;
1236 _elm_win_focus_highlight_reconfigure_job_stop(win);
1238 visible_changed = (win->focus_highlight.cur.visible !=
1239 win->focus_highlight.prev.visible);
1241 if ((target == previous) && (!visible_changed) &&
1242 (!win->focus_highlight.geometry_changed))
1245 if ((previous) && (win->focus_highlight.prev.handled))
1246 elm_widget_signal_emit(previous, "elm,action,focus_highlight,hide", "elm");
1249 common_visible = EINA_FALSE;
1250 else if (win->focus_highlight.cur.handled)
1252 common_visible = EINA_FALSE;
1253 if (win->focus_highlight.cur.visible)
1254 sig = "elm,action,focus_highlight,show";
1256 sig = "elm,action,focus_highlight,hide";
1259 common_visible = win->focus_highlight.cur.visible;
1261 _elm_win_focus_highlight_visible_set(win, common_visible);
1263 elm_widget_signal_emit(target, sig, "elm");
1265 if ((!target) || (!common_visible) || (win->focus_highlight.cur.handled))
1268 if (win->focus_highlight.changed_theme)
1271 if (win->focus_highlight.style)
1272 str = win->focus_highlight.style;
1275 _elm_theme_object_set(win->win_obj, top, "focus_highlight", "top",
1277 win->focus_highlight.changed_theme = EINA_FALSE;
1279 if (_elm_config->focus_highlight_animate)
1281 str = edje_object_data_get(win->focus_highlight.top, "animate");
1282 win->focus_highlight.top_animate = ((str) && (!strcmp(str, "on")));
1286 if ((win->focus_highlight.top_animate) && (previous) &&
1287 (!win->focus_highlight.prev.handled))
1288 _elm_win_focus_highlight_anim_setup(win, top);
1290 _elm_win_focus_highlight_simple_setup(win, top);
1291 evas_object_raise(top);
1294 win->focus_highlight.geometry_changed = EINA_FALSE;
1295 win->focus_highlight.prev = win->focus_highlight.cur;
1300 _debug_key_down(void *data __UNUSED__, Evas *e __UNUSED__, Evas_Object *obj, void *event_info)
1302 Evas_Event_Key_Down *ev = event_info;
1304 if (ev->event_flags & EVAS_EVENT_FLAG_ON_HOLD)
1308 if ((strcmp(ev->keyname, "F12")) ||
1309 (!evas_key_modifier_is_set(ev->modifiers, "Control")))
1312 printf("Tree graph generated.\n");
1313 elm_object_tree_dot_dump(obj, "./dump.dot");
1318 _win_img_hide(void *data,
1320 Evas_Object *obj __UNUSED__,
1321 void *event_info __UNUSED__)
1323 Elm_Win *win = data;
1325 elm_widget_focus_hide_handle(win->win_obj);
1329 _win_img_mouse_down(void *data,
1331 Evas_Object *obj __UNUSED__,
1332 void *event_info __UNUSED__)
1334 Elm_Win *win = data;
1335 elm_widget_focus_mouse_down_handle(win->win_obj);
1339 _win_img_focus_in(void *data,
1341 Evas_Object *obj __UNUSED__,
1342 void *event_info __UNUSED__)
1344 Elm_Win *win = data;
1345 elm_widget_focus_steal(win->win_obj);
1349 _win_img_focus_out(void *data,
1351 Evas_Object *obj __UNUSED__,
1352 void *event_info __UNUSED__)
1354 Elm_Win *win = data;
1355 elm_widget_focused_object_clear(win->win_obj);
1359 _win_inlined_image_set(Elm_Win *win)
1361 evas_object_image_alpha_set(win->img_obj, EINA_FALSE);
1362 evas_object_image_filled_set(win->img_obj, EINA_TRUE);
1363 evas_object_event_callback_add(win->img_obj, EVAS_CALLBACK_DEL,
1364 _elm_win_obj_callback_img_obj_del, win);
1366 evas_object_event_callback_add(win->img_obj, EVAS_CALLBACK_HIDE,
1367 _win_img_hide, win);
1368 evas_object_event_callback_add(win->img_obj, EVAS_CALLBACK_MOUSE_DOWN,
1369 _win_img_mouse_down, win);
1370 evas_object_event_callback_add(win->img_obj, EVAS_CALLBACK_FOCUS_IN,
1371 _win_img_focus_in, win);
1372 evas_object_event_callback_add(win->img_obj, EVAS_CALLBACK_FOCUS_OUT,
1373 _win_img_focus_out, win);
1377 * Adds a window object. If this is the first window created, pass NULL as
1380 * @param parent Parent object to add the window to, or NULL
1381 * @param name The name of the window
1382 * @param type The window type, one of the following:
1384 * ELM_WIN_DIALOG_BASIC
1392 * @return The created object, or NULL on failure
1397 elm_win_add(Evas_Object *parent, const char *name, Elm_Win_Type type)
1401 const char *fontpath;
1403 win = ELM_NEW(Elm_Win);
1405 #define FALLBACK_TRY(engine) \
1408 CRITICAL(engine " engine creation failed. Trying software X11."); \
1409 win->ee = ecore_evas_software_x11_new(NULL, 0, 0, 0, 1, 1); \
1411 #define ENGINE_COMPARE(name) (!strcmp(_elm_config->engine, name))
1415 case ELM_WIN_INLINED_IMAGE:
1419 Evas *e = evas_object_evas_get(parent);
1422 Ecore_Evas *ee = ecore_evas_ecore_evas_get(e);
1425 win->img_obj = ecore_evas_object_image_new(ee);
1428 win->ee = ecore_evas_object_ecore_evas_get(win->img_obj);
1431 _win_inlined_image_set(win);
1435 evas_object_del(win->img_obj);
1436 win->img_obj = NULL;
1445 if (ENGINE_COMPARE(ELM_SOFTWARE_X11))
1447 win->ee = ecore_evas_software_x11_new(NULL, 0, 0, 0, 1, 1);
1448 #ifdef HAVE_ELEMENTARY_X
1449 win->client_message_handler = ecore_event_handler_add
1450 (ECORE_X_EVENT_CLIENT_MESSAGE, _elm_win_client_message, win);
1453 else if (ENGINE_COMPARE(ELM_SOFTWARE_FB))
1455 win->ee = ecore_evas_fb_new(NULL, 0, 1, 1);
1456 FALLBACK_TRY("Sofware FB");
1458 else if (ENGINE_COMPARE(ELM_SOFTWARE_DIRECTFB))
1460 win->ee = ecore_evas_directfb_new(NULL, 1, 0, 0, 1, 1);
1461 FALLBACK_TRY("Sofware DirectFB");
1463 else if (ENGINE_COMPARE(ELM_SOFTWARE_16_X11))
1465 win->ee = ecore_evas_software_x11_16_new(NULL, 0, 0, 0, 1, 1);
1466 FALLBACK_TRY("Sofware-16");
1467 #ifdef HAVE_ELEMENTARY_X
1468 win->client_message_handler = ecore_event_handler_add
1469 (ECORE_X_EVENT_CLIENT_MESSAGE, _elm_win_client_message, win);
1472 else if (ENGINE_COMPARE(ELM_SOFTWARE_8_X11))
1474 win->ee = ecore_evas_software_x11_8_new(NULL, 0, 0, 0, 1, 1);
1475 FALLBACK_TRY("Sofware-8");
1476 #ifdef HAVE_ELEMENTARY_X
1477 win->client_message_handler = ecore_event_handler_add
1478 (ECORE_X_EVENT_CLIENT_MESSAGE, _elm_win_client_message, win);
1482 else if (ENGINE_COMPARE(ELM_XRENDER_X11))
1484 win->ee = ecore_evas_xrender_x11_new(NULL, 0, 0, 0, 1, 1);
1485 FALLBACK_TRY("XRender");
1486 #ifdef HAVE_ELEMENTARY_X
1487 win->client_message_handler = ecore_event_handler_add
1488 (ECORE_X_EVENT_CLIENT_MESSAGE, _elm_win_client_message, win);
1492 else if (ENGINE_COMPARE(ELM_OPENGL_X11))
1497 if (_elm_config->vsync)
1499 opt[opt_i] = ECORE_EVAS_GL_X11_OPT_VSYNC;
1505 win->ee = ecore_evas_gl_x11_options_new(NULL, 0, 0, 0, 1, 1, opt);
1507 win->ee = ecore_evas_gl_x11_new(NULL, 0, 0, 0, 1, 1);
1508 FALLBACK_TRY("OpenGL");
1509 #ifdef HAVE_ELEMENTARY_X
1510 win->client_message_handler = ecore_event_handler_add
1511 (ECORE_X_EVENT_CLIENT_MESSAGE, _elm_win_client_message, win);
1514 else if (ENGINE_COMPARE(ELM_SOFTWARE_WIN32))
1516 win->ee = ecore_evas_software_gdi_new(NULL, 0, 0, 1, 1);
1517 FALLBACK_TRY("Sofware Win32");
1519 else if (ENGINE_COMPARE(ELM_SOFTWARE_16_WINCE))
1521 win->ee = ecore_evas_software_wince_gdi_new(NULL, 0, 0, 1, 1);
1522 FALLBACK_TRY("Sofware-16-WinCE");
1524 else if (ENGINE_COMPARE(ELM_SOFTWARE_SDL))
1526 win->ee = ecore_evas_sdl_new(NULL, 0, 0, 0, 0, 0, 1);
1527 FALLBACK_TRY("Sofware SDL");
1529 else if (ENGINE_COMPARE(ELM_SOFTWARE_16_SDL))
1531 win->ee = ecore_evas_sdl16_new(NULL, 0, 0, 0, 0, 0, 1);
1532 FALLBACK_TRY("Sofware-16-SDL");
1534 else if (ENGINE_COMPARE(ELM_OPENGL_SDL))
1536 win->ee = ecore_evas_gl_sdl_new(NULL, 1, 1, 0, 0);
1537 FALLBACK_TRY("OpenGL SDL");
1539 else if (!strncmp(_elm_config->engine, "shot:", 5))
1541 win->ee = ecore_evas_buffer_new(1, 1);
1542 ecore_evas_manual_render_set(win->ee, EINA_TRUE);
1543 win->shot.info = eina_stringshare_add(_elm_config->engine + 5);
1552 ERR("Cannot create window.");
1556 #ifdef HAVE_ELEMENTARY_X
1557 _elm_win_xwindow_get(win);
1559 if ((_elm_config->bgpixmap) && (!_elm_config->compositing))
1560 ecore_evas_avoid_damage_set(win->ee, ECORE_EVAS_AVOID_DAMAGE_EXPOSE);
1561 // bg pixmap done by x - has other issues like can be redrawn by x before it
1562 // is filled/ready by app
1563 // ecore_evas_avoid_damage_set(win->ee, ECORE_EVAS_AVOID_DAMAGE_BUILT_IN);
1566 win->parent = parent;
1568 evas_object_event_callback_add(win->parent, EVAS_CALLBACK_DEL,
1569 _elm_win_obj_callback_parent_del, win);
1571 win->evas = ecore_evas_get(win->ee);
1572 win->win_obj = elm_widget_add(win->evas);
1573 elm_widget_type_set(win->win_obj, "win");
1574 ELM_SET_WIDTYPE(widtype, "win");
1575 elm_widget_data_set(win->win_obj, win);
1576 elm_widget_event_hook_set(win->win_obj, _elm_win_event_cb);
1577 elm_widget_on_focus_hook_set(win->win_obj, _elm_win_on_focus_hook, NULL);
1578 elm_widget_can_focus_set(win->win_obj, EINA_TRUE);
1579 elm_widget_highlight_ignore_set(win->win_obj, EINA_TRUE);
1580 elm_widget_focus_next_hook_set(win->win_obj, _elm_win_focus_next_hook);
1581 evas_object_color_set(win->win_obj, 0, 0, 0, 0);
1582 evas_object_move(win->win_obj, 0, 0);
1583 evas_object_resize(win->win_obj, 1, 1);
1584 evas_object_layer_set(win->win_obj, 50);
1585 evas_object_pass_events_set(win->win_obj, EINA_TRUE);
1587 ecore_evas_object_associate(win->ee, win->win_obj,
1588 ECORE_EVAS_OBJECT_ASSOCIATE_BASE |
1589 ECORE_EVAS_OBJECT_ASSOCIATE_STACK |
1590 ECORE_EVAS_OBJECT_ASSOCIATE_LAYER);
1591 evas_object_event_callback_add(win->win_obj, EVAS_CALLBACK_SHOW,
1592 _elm_win_obj_callback_show, win);
1593 evas_object_event_callback_add(win->win_obj, EVAS_CALLBACK_HIDE,
1594 _elm_win_obj_callback_hide, win);
1595 evas_object_event_callback_add(win->win_obj, EVAS_CALLBACK_DEL,
1596 _elm_win_obj_callback_del, win);
1597 evas_object_event_callback_add(win->win_obj, EVAS_CALLBACK_MOVE,
1598 _elm_win_obj_callback_move, win);
1599 evas_object_event_callback_add(win->win_obj, EVAS_CALLBACK_RESIZE,
1600 _elm_win_obj_callback_resize, win);
1602 evas_object_intercept_move_callback_add(win->win_obj,
1603 _elm_win_obj_intercept_move, win);
1604 evas_object_intercept_show_callback_add(win->win_obj,
1605 _elm_win_obj_intercept_show, win);
1607 ecore_evas_name_class_set(win->ee, name, _elm_appname);
1608 ecore_evas_callback_delete_request_set(win->ee, _elm_win_delete_request);
1609 ecore_evas_callback_resize_set(win->ee, _elm_win_resize);
1610 ecore_evas_callback_focus_in_set(win->ee, _elm_win_focus_in);
1611 ecore_evas_callback_focus_out_set(win->ee, _elm_win_focus_out);
1612 ecore_evas_callback_move_set(win->ee, _elm_win_move);
1613 evas_image_cache_set(win->evas, (_elm_config->image_cache * 1024));
1614 evas_font_cache_set(win->evas, (_elm_config->font_cache * 1024));
1615 EINA_LIST_FOREACH(_elm_config->font_dirs, l, fontpath)
1616 evas_font_path_append(win->evas, fontpath);
1617 if (!_elm_config->font_hinting)
1618 evas_font_hinting_set(win->evas, EVAS_FONT_HINTING_NONE);
1619 else if (_elm_config->font_hinting == 1)
1620 evas_font_hinting_set(win->evas, EVAS_FONT_HINTING_AUTO);
1621 else if (_elm_config->font_hinting == 2)
1622 evas_font_hinting_set(win->evas, EVAS_FONT_HINTING_BYTECODE);
1624 #ifdef HAVE_ELEMENTARY_X
1625 _elm_win_xwin_update(win);
1628 _elm_win_list = eina_list_append(_elm_win_list, win->win_obj);
1630 if (ENGINE_COMPARE(ELM_SOFTWARE_FB))
1632 ecore_evas_fullscreen_set(win->ee, 1);
1634 #undef ENGINE_COMPARE
1636 if (_elm_config->focus_highlight_enable)
1637 elm_win_focus_highlight_enabled_set(win->win_obj, EINA_TRUE);
1640 Evas_Modifier_Mask mask = evas_key_modifier_mask_get(win->evas, "Control");
1641 evas_object_event_callback_add(win->win_obj, EVAS_CALLBACK_KEY_DOWN,
1642 _debug_key_down, win);
1644 Eina_Bool ret = evas_object_key_grab(win->win_obj, "F12", mask, 0,
1646 printf("Key F12 exclusive for dot tree generation. (%d)\n", ret);
1649 evas_object_smart_callbacks_descriptions_set(win->win_obj, _signals);
1651 return win->win_obj;
1655 * Add @p subobj as a resize object of window @p obj. Note, do not move and
1656 * resize window and sub object at the same time. It will cause problem.
1658 * @param obj The window object
1659 * @param subobj The resize object to add
1664 elm_win_resize_object_add(Evas_Object *obj, Evas_Object *subobj)
1668 ELM_CHECK_WIDTYPE(obj, widtype);
1669 win = elm_widget_data_get(obj);
1671 if (eina_list_data_find(win->subobjs, subobj)) return;
1672 win->subobjs = eina_list_append(win->subobjs, subobj);
1673 elm_widget_sub_object_add(obj, subobj);
1674 evas_object_event_callback_add(subobj, EVAS_CALLBACK_DEL,
1675 _elm_win_subobj_callback_del, obj);
1676 evas_object_event_callback_add(subobj, EVAS_CALLBACK_CHANGED_SIZE_HINTS,
1677 _elm_win_subobj_callback_changed_size_hints,
1679 ecore_evas_geometry_get(win->ee, NULL, NULL, &w, &h);
1680 evas_object_move(subobj, 0, 0);
1681 evas_object_resize(subobj, w, h);
1682 _elm_win_eval_subobjs(obj);
1686 * Delete @p subobj as a resize object of window @p obj.
1688 * @param obj The window object
1689 * @param subobj The resize object to add
1694 elm_win_resize_object_del(Evas_Object *obj, Evas_Object *subobj)
1697 ELM_CHECK_WIDTYPE(obj, widtype);
1698 win = elm_widget_data_get(obj);
1700 evas_object_event_callback_del_full(subobj,
1701 EVAS_CALLBACK_CHANGED_SIZE_HINTS,
1702 _elm_win_subobj_callback_changed_size_hints,
1704 evas_object_event_callback_del_full(subobj, EVAS_CALLBACK_DEL,
1705 _elm_win_subobj_callback_del, obj);
1706 win->subobjs = eina_list_remove(win->subobjs, subobj);
1707 elm_widget_sub_object_del(obj, subobj);
1708 _elm_win_eval_subobjs(obj);
1712 * Set the title of the window
1714 * @param obj The window object
1715 * @param title The title to set
1720 elm_win_title_set(Evas_Object *obj, const char *title)
1723 ELM_CHECK_WIDTYPE(obj, widtype);
1724 win = elm_widget_data_get(obj);
1726 ecore_evas_title_set(win->ee, title);
1730 * Get the title of the window
1732 * @param obj The window object
1738 elm_win_title_get(const Evas_Object *obj)
1741 ELM_CHECK_WIDTYPE(obj, widtype) NULL;
1742 win = elm_widget_data_get(obj);
1743 if (!win) return NULL;
1744 return ecore_evas_title_get(win->ee);
1748 * Set the window's autodel state.
1750 * @param obj The window object
1751 * @param autodel If true, the window will automatically delete itself when closed
1756 elm_win_autodel_set(Evas_Object *obj, Eina_Bool autodel)
1759 ELM_CHECK_WIDTYPE(obj, widtype);
1760 win = elm_widget_data_get(obj);
1762 win->autodel = autodel;
1766 * Get the window's autodel state.
1768 * @param obj The window object
1769 * @return If the window will automatically delete itself when closed
1774 elm_win_autodel_get(const Evas_Object *obj)
1777 ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
1778 win = elm_widget_data_get(obj);
1779 if (!win) return EINA_FALSE;
1780 return win->autodel;
1784 * Activate a window object.
1786 * @param obj The window object
1791 elm_win_activate(Evas_Object *obj)
1794 ELM_CHECK_WIDTYPE(obj, widtype);
1795 win = elm_widget_data_get(obj);
1797 ecore_evas_activate(win->ee);
1801 * Lower a window object.
1803 * @param obj The window object
1808 elm_win_lower(Evas_Object *obj)
1811 ELM_CHECK_WIDTYPE(obj, widtype);
1812 win = elm_widget_data_get(obj);
1814 ecore_evas_lower(win->ee);
1818 * Raise a window object.
1820 * @param obj The window object
1825 elm_win_raise(Evas_Object *obj)
1828 ELM_CHECK_WIDTYPE(obj, widtype);
1829 win = elm_widget_data_get(obj);
1831 ecore_evas_raise(win->ee);
1835 * Set the borderless state of a window.
1837 * @param obj The window object
1838 * @param borderless If true, the window is borderless
1843 elm_win_borderless_set(Evas_Object *obj, Eina_Bool borderless)
1846 ELM_CHECK_WIDTYPE(obj, widtype);
1847 win = elm_widget_data_get(obj);
1849 ecore_evas_borderless_set(win->ee, borderless);
1850 #ifdef HAVE_ELEMENTARY_X
1851 _elm_win_xwin_update(win);
1856 * Get the borderless state of a window.
1858 * @param obj The window object
1859 * @return If true, the window is borderless
1864 elm_win_borderless_get(const Evas_Object *obj)
1867 ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
1868 win = elm_widget_data_get(obj);
1869 if (!win) return EINA_FALSE;
1870 return ecore_evas_borderless_get(win->ee);
1874 * Set the shaped state of a window.
1876 * @param obj The window object
1877 * @param shaped If true, the window is shaped
1882 elm_win_shaped_set(Evas_Object *obj, Eina_Bool shaped)
1885 ELM_CHECK_WIDTYPE(obj, widtype);
1886 win = elm_widget_data_get(obj);
1888 ecore_evas_shaped_set(win->ee, shaped);
1889 #ifdef HAVE_ELEMENTARY_X
1890 _elm_win_xwin_update(win);
1895 * Get the shaped state of a window.
1897 * @param obj The window object
1898 * @return If true, the window is shaped
1903 elm_win_shaped_get(const Evas_Object *obj)
1906 ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
1907 win = elm_widget_data_get(obj);
1908 if (!win) return EINA_FALSE;
1909 return ecore_evas_shaped_get(win->ee);
1913 * Set the alpha channel state of a window.
1915 * @param obj The window object
1916 * @param alpha If true, the window has an alpha channel
1921 elm_win_alpha_set(Evas_Object *obj, Eina_Bool alpha)
1924 ELM_CHECK_WIDTYPE(obj, widtype);
1925 win = elm_widget_data_get(obj);
1930 else if (win->img_obj)
1932 evas_object_image_alpha_set(win->img_obj, alpha);
1936 #ifdef HAVE_ELEMENTARY_X
1941 if (!_elm_config->compositing)
1942 elm_win_shaped_set(obj, alpha);
1944 ecore_evas_alpha_set(win->ee, alpha);
1947 ecore_evas_alpha_set(win->ee, alpha);
1948 _elm_win_xwin_update(win);
1952 ecore_evas_alpha_set(win->ee, alpha);
1957 * Get the alpha channel state of a window.
1959 * @param obj The window object
1960 * @return If true, the window has an alpha channel
1965 elm_win_alpha_get(const Evas_Object *obj)
1968 ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
1969 win = elm_widget_data_get(obj);
1970 if (!win) return EINA_FALSE;
1971 return ecore_evas_alpha_get(win->ee);
1975 * Set the transparency state of a window.
1977 * @param obj The window object
1978 * @param transparent If true, the window is transparent
1983 elm_win_transparent_set(Evas_Object *obj, Eina_Bool transparent)
1986 ELM_CHECK_WIDTYPE(obj, widtype);
1987 win = elm_widget_data_get(obj);
1993 else if (win->img_obj)
1995 evas_object_image_alpha_set(win->img_obj, transparent);
1999 #ifdef HAVE_ELEMENTARY_X
2002 ecore_evas_transparent_set(win->ee, transparent);
2003 _elm_win_xwin_update(win);
2007 ecore_evas_transparent_set(win->ee, transparent);
2012 * Get the transparency state of a window.
2014 * @param obj The window object
2015 * @return If true, the window is transparent
2020 elm_win_transparent_get(const Evas_Object *obj)
2023 ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
2024 win = elm_widget_data_get(obj);
2025 if (!win) return EINA_FALSE;
2027 return ecore_evas_transparent_get(win->ee);
2031 * Set the override state of a window.
2033 * @param obj The window object
2034 * @param override If true, the window is overridden
2039 elm_win_override_set(Evas_Object *obj, Eina_Bool override)
2042 ELM_CHECK_WIDTYPE(obj, widtype);
2043 win = elm_widget_data_get(obj);
2045 ecore_evas_override_set(win->ee, override);
2046 #ifdef HAVE_ELEMENTARY_X
2047 _elm_win_xwin_update(win);
2052 * Get the override state of a window.
2054 * @param obj The window object
2055 * @return If true, the window is overridden
2060 elm_win_override_get(const Evas_Object *obj)
2063 ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
2064 win = elm_widget_data_get(obj);
2065 if (!win) return EINA_FALSE;
2066 return ecore_evas_override_get(win->ee);
2070 * Set the fullscreen state of a window.
2072 * @param obj The window object
2073 * @param fullscreen If true, the window is fullscreen
2078 elm_win_fullscreen_set(Evas_Object *obj, Eina_Bool fullscreen)
2081 ELM_CHECK_WIDTYPE(obj, widtype);
2082 win = elm_widget_data_get(obj);
2085 // YYY: handle if win->img_obj
2086 #define ENGINE_COMPARE(name) (!strcmp(_elm_config->engine, name))
2087 if (ENGINE_COMPARE(ELM_SOFTWARE_FB) ||
2088 ENGINE_COMPARE(ELM_SOFTWARE_16_WINCE))
2090 // these engines... can ONLY be fullscreen
2095 ecore_evas_fullscreen_set(win->ee, fullscreen);
2096 #ifdef HAVE_ELEMENTARY_X
2097 _elm_win_xwin_update(win);
2100 #undef ENGINE_COMPARE
2104 * Get the fullscreen state of a window.
2106 * @param obj The window object
2107 * @return If true, the window is fullscreen
2112 elm_win_fullscreen_get(const Evas_Object *obj)
2115 ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
2116 win = elm_widget_data_get(obj);
2117 if (!win) return EINA_FALSE;
2119 #define ENGINE_COMPARE(name) (!strcmp(_elm_config->engine, name))
2120 if (ENGINE_COMPARE(ELM_SOFTWARE_FB) ||
2121 ENGINE_COMPARE(ELM_SOFTWARE_16_WINCE))
2123 // these engines... can ONLY be fullscreen
2128 return ecore_evas_fullscreen_get(win->ee);
2130 #undef ENGINE_COMPARE
2134 * Set the maximized state of a window.
2136 * @param obj The window object
2137 * @param maximized If true, the window is maximized
2142 elm_win_maximized_set(Evas_Object *obj, Eina_Bool maximized)
2145 ELM_CHECK_WIDTYPE(obj, widtype);
2146 win = elm_widget_data_get(obj);
2148 // YYY: handle if win->img_obj
2149 ecore_evas_maximized_set(win->ee, maximized);
2150 #ifdef HAVE_ELEMENTARY_X
2151 _elm_win_xwin_update(win);
2156 * Get the maximized state of a window.
2158 * @param obj The window object
2159 * @return If true, the window is maximized
2164 elm_win_maximized_get(const Evas_Object *obj)
2167 ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
2168 win = elm_widget_data_get(obj);
2169 if (!win) return EINA_FALSE;
2170 return ecore_evas_maximized_get(win->ee);
2174 * Set the iconified state of a window.
2176 * @param obj The window object
2177 * @param iconified If true, the window is iconified
2182 elm_win_iconified_set(Evas_Object *obj, Eina_Bool iconified)
2185 ELM_CHECK_WIDTYPE(obj, widtype);
2186 win = elm_widget_data_get(obj);
2188 ecore_evas_iconified_set(win->ee, iconified);
2189 #ifdef HAVE_ELEMENTARY_X
2190 _elm_win_xwin_update(win);
2195 * Get the iconified state of a window.
2197 * @param obj The window object
2198 * @return If true, the window is iconified
2203 elm_win_iconified_get(const Evas_Object *obj)
2206 ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
2207 win = elm_widget_data_get(obj);
2208 if (!win) return EINA_FALSE;
2209 return ecore_evas_iconified_get(win->ee);
2213 * Set the layer of the window.
2215 * @param obj The window object
2216 * @param layer The layer of the window
2221 elm_win_layer_set(Evas_Object *obj, int layer)
2224 ELM_CHECK_WIDTYPE(obj, widtype);
2225 win = elm_widget_data_get(obj);
2227 ecore_evas_layer_set(win->ee, layer);
2228 #ifdef HAVE_ELEMENTARY_X
2229 _elm_win_xwin_update(win);
2234 * Get the layer of the window.
2236 * @param obj The window object
2237 * @return The layer of the window
2242 elm_win_layer_get(const Evas_Object *obj)
2245 ELM_CHECK_WIDTYPE(obj, widtype) -1;
2246 win = elm_widget_data_get(obj);
2247 if (!win) return -1;
2248 return ecore_evas_layer_get(win->ee);
2252 * Set the rotation of the window.
2254 * @param obj The window object
2255 * @param rotation The rotation of the window, in degrees (0-360)
2260 elm_win_rotation_set(Evas_Object *obj, int rotation)
2263 ELM_CHECK_WIDTYPE(obj, widtype);
2264 win = elm_widget_data_get(obj);
2266 if (win->rot == rotation) return;
2267 win->rot = rotation;
2268 ecore_evas_rotation_set(win->ee, rotation);
2269 evas_object_size_hint_min_set(obj, -1, -1);
2270 evas_object_size_hint_max_set(obj, -1, -1);
2271 _elm_win_eval_subobjs(obj);
2272 #ifdef HAVE_ELEMENTARY_X
2273 _elm_win_xwin_update(win);
2278 * Rotates the window and resizes it
2280 * @param obj The window object
2281 * @param layer The rotation of the window in degrees (0-360)
2286 elm_win_rotation_with_resize_set(Evas_Object *obj, int rotation)
2289 ELM_CHECK_WIDTYPE(obj, widtype);
2290 win = elm_widget_data_get(obj);
2292 if (win->rot == rotation) return;
2293 win->rot = rotation;
2294 ecore_evas_rotation_with_resize_set(win->ee, rotation);
2295 evas_object_size_hint_min_set(obj, -1, -1);
2296 evas_object_size_hint_max_set(obj, -1, -1);
2297 _elm_win_eval_subobjs(obj);
2298 #ifdef HAVE_ELEMENTARY_X
2299 _elm_win_xwin_update(win);
2304 * Get the rotation of the window.
2306 * @param obj The window object
2307 * @return The rotation of the window in degrees (0-360)
2312 elm_win_rotation_get(const Evas_Object *obj)
2315 ELM_CHECK_WIDTYPE(obj, widtype) -1;
2316 win = elm_widget_data_get(obj);
2317 if (!win) return -1;
2322 * Set the sticky state of the window.
2324 * @param obj The window object
2325 * @param sticky If true, the window's sticky state is enabled
2330 elm_win_sticky_set(Evas_Object *obj, Eina_Bool sticky)
2333 ELM_CHECK_WIDTYPE(obj, widtype);
2334 win = elm_widget_data_get(obj);
2336 ecore_evas_sticky_set(win->ee, sticky);
2337 #ifdef HAVE_ELEMENTARY_X
2338 _elm_win_xwin_update(win);
2343 * Get the sticky state of the window.
2345 * @param obj The window object
2346 * @return If true, the window's sticky state is enabled
2351 elm_win_sticky_get(const Evas_Object *obj)
2354 ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
2355 win = elm_widget_data_get(obj);
2356 if (!win) return EINA_FALSE;
2357 return ecore_evas_sticky_get(win->ee);
2361 * Sets the keyboard mode of the window.
2363 * @param obj The window object
2364 * @param mode The mode to set; one of:
2365 * ELM_WIN_KEYBOARD_UNKNOWN
2366 * ELM_WIN_KEYBOARD_OFF
2367 * ELM_WIN_KEYBOARD_ON
2368 * ELM_WIN_KEYBOARD_ALPHA
2369 * ELM_WIN_KEYBOARD_NUMERIC
2370 * ELM_WIN_KEYBOARD_PIN
2371 * ELM_WIN_KEYBOARD_PHONE_NUMBER
2372 * ELM_WIN_KEYBOARD_HEX
2373 * ELM_WIN_KEYBOARD_TERMINAL
2374 * ELM_WIN_KEYBOARD_PASSWORD
2375 * ELM_WIN_KEYBOARD_IP
2376 * ELM_WIN_KEYBOARD_HOST
2377 * ELM_WIN_KEYBOARD_FILE
2378 * ELM_WIN_KEYBOARD_URL
2379 * ELM_WIN_KEYBOARD_KEYPAD
2380 * ELM_WIN_KEYBOARD_J2ME
2385 elm_win_keyboard_mode_set(Evas_Object *obj, Elm_Win_Keyboard_Mode mode)
2388 ELM_CHECK_WIDTYPE(obj, widtype);
2389 win = elm_widget_data_get(obj);
2391 if (mode == win->kbdmode) return;
2392 #ifdef HAVE_ELEMENTARY_X
2393 _elm_win_xwindow_get(win);
2395 win->kbdmode = mode;
2396 #ifdef HAVE_ELEMENTARY_X
2398 ecore_x_e_virtual_keyboard_state_set
2399 (win->xwin, (Ecore_X_Virtual_Keyboard_State)win->kbdmode);
2404 * Gets the keyboard mode of the window.
2406 * @param obj The window object
2407 * @return The mode; one of:
2408 * ELM_WIN_KEYBOARD_UNKNOWN
2409 * ELM_WIN_KEYBOARD_OFF
2410 * ELM_WIN_KEYBOARD_ON
2411 * ELM_WIN_KEYBOARD_ALPHA
2412 * ELM_WIN_KEYBOARD_NUMERIC
2413 * ELM_WIN_KEYBOARD_PIN
2414 * ELM_WIN_KEYBOARD_PHONE_NUMBER
2415 * ELM_WIN_KEYBOARD_HEX
2416 * ELM_WIN_KEYBOARD_TERMINAL
2417 * ELM_WIN_KEYBOARD_PASSWORD
2418 * ELM_WIN_KEYBOARD_IP
2419 * ELM_WIN_KEYBOARD_HOST
2420 * ELM_WIN_KEYBOARD_FILE
2421 * ELM_WIN_KEYBOARD_URL
2422 * ELM_WIN_KEYBOARD_KEYPAD
2423 * ELM_WIN_KEYBOARD_J2ME
2427 EAPI Elm_Win_Keyboard_Mode
2428 elm_win_keyboard_mode_get(const Evas_Object *obj)
2431 ELM_CHECK_WIDTYPE(obj, widtype) ELM_WIN_KEYBOARD_UNKNOWN;
2432 win = elm_widget_data_get(obj);
2433 if (!win) return ELM_WIN_KEYBOARD_UNKNOWN;
2434 return win->kbdmode;
2438 * Sets whether the window is a keyboard.
2440 * @param obj The window object
2441 * @param is_keyboard If true, the window is a virtual keyboard
2446 elm_win_keyboard_win_set(Evas_Object *obj, Eina_Bool is_keyboard)
2449 ELM_CHECK_WIDTYPE(obj, widtype);
2450 win = elm_widget_data_get(obj);
2452 #ifdef HAVE_ELEMENTARY_X
2453 _elm_win_xwindow_get(win);
2455 ecore_x_e_virtual_keyboard_set(win->xwin, is_keyboard);
2460 * Gets whether the window is a keyboard.
2462 * @param obj The window object
2463 * @return If the window is a virtual keyboard
2468 elm_win_keyboard_win_get(const Evas_Object *obj)
2471 ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
2472 win = elm_widget_data_get(obj);
2473 if (!win) return EINA_FALSE;
2474 #ifdef HAVE_ELEMENTARY_X
2475 _elm_win_xwindow_get(win);
2477 return ecore_x_e_virtual_keyboard_get(win->xwin);
2483 * Get the screen position of a window.
2485 * @param obj The window object
2486 * @param x The int to store the x coordinate to
2487 * @param y The int to store the y coordinate to
2492 elm_win_screen_position_get(const Evas_Object *obj, int *x, int *y)
2495 ELM_CHECK_WIDTYPE(obj, widtype);
2496 win = elm_widget_data_get(obj);
2498 if (x) *x = win->screen.x;
2499 if (y) *y = win->screen.y;
2503 * Set if this window is an illume conformant window
2505 * @param obj The window object
2506 * @param conformant The conformant flag (1 = conformant, 0 = non-conformant)
2511 elm_win_conformant_set(Evas_Object *obj, Eina_Bool conformant)
2514 ELM_CHECK_WIDTYPE(obj, widtype);
2515 win = elm_widget_data_get(obj);
2517 #ifdef HAVE_ELEMENTARY_X
2518 _elm_win_xwindow_get(win);
2520 ecore_x_e_illume_conformant_set(win->xwin, conformant);
2525 * Get if this window is an illume conformant window
2527 * @param obj The window object
2528 * @return A boolean if this window is illume conformant or not
2533 elm_win_conformant_get(const Evas_Object *obj)
2536 ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
2537 win = elm_widget_data_get(obj);
2538 if (!win) return EINA_FALSE;
2539 #ifdef HAVE_ELEMENTARY_X
2540 _elm_win_xwindow_get(win);
2542 return ecore_x_e_illume_conformant_get(win->xwin);
2548 * Set a window to be an illume quickpanel window
2550 * By default window objects are not quickpanel windows.
2552 * @param obj The window object
2553 * @param quickpanel The quickpanel flag (1 = quickpanel, 0 = normal window)
2558 elm_win_quickpanel_set(Evas_Object *obj, Eina_Bool quickpanel)
2561 ELM_CHECK_WIDTYPE(obj, widtype);
2562 win = elm_widget_data_get(obj);
2564 #ifdef HAVE_ELEMENTARY_X
2565 _elm_win_xwindow_get(win);
2568 ecore_x_e_illume_quickpanel_set(win->xwin, quickpanel);
2571 Ecore_X_Window_State states[2];
2573 states[0] = ECORE_X_WINDOW_STATE_SKIP_TASKBAR;
2574 states[1] = ECORE_X_WINDOW_STATE_SKIP_PAGER;
2575 ecore_x_netwm_window_state_set(win->xwin, states, 2);
2576 ecore_x_icccm_hints_set(win->xwin, 0, 0, 0, 0, 0, 0, 0);
2583 * Get if this window is a quickpanel or not
2585 * @param obj The window object
2586 * @return A boolean if this window is a quickpanel or not
2591 elm_win_quickpanel_get(const Evas_Object *obj)
2594 ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
2595 win = elm_widget_data_get(obj);
2596 if (!win) return EINA_FALSE;
2597 #ifdef HAVE_ELEMENTARY_X
2598 _elm_win_xwindow_get(win);
2600 return ecore_x_e_illume_quickpanel_get(win->xwin);
2606 * Set the major priority of a quickpanel window
2608 * @param obj The window object
2609 * @param priority The major priority for this quickpanel
2614 elm_win_quickpanel_priority_major_set(Evas_Object *obj, int priority)
2617 ELM_CHECK_WIDTYPE(obj, widtype);
2618 win = elm_widget_data_get(obj);
2620 #ifdef HAVE_ELEMENTARY_X
2621 _elm_win_xwindow_get(win);
2623 ecore_x_e_illume_quickpanel_priority_major_set(win->xwin, priority);
2628 * Get the major priority of a quickpanel window
2630 * @param obj The window object
2631 * @return The major priority of this quickpanel
2636 elm_win_quickpanel_priority_major_get(const Evas_Object *obj)
2639 ELM_CHECK_WIDTYPE(obj, widtype) -1;
2640 win = elm_widget_data_get(obj);
2641 if (!win) return -1;
2642 #ifdef HAVE_ELEMENTARY_X
2643 _elm_win_xwindow_get(win);
2645 return ecore_x_e_illume_quickpanel_priority_major_get(win->xwin);
2651 * Set the minor priority of a quickpanel window
2653 * @param obj The window object
2654 * @param priority The minor priority for this quickpanel
2659 elm_win_quickpanel_priority_minor_set(Evas_Object *obj, int priority)
2662 ELM_CHECK_WIDTYPE(obj, widtype);
2663 win = elm_widget_data_get(obj);
2665 #ifdef HAVE_ELEMENTARY_X
2666 _elm_win_xwindow_get(win);
2668 ecore_x_e_illume_quickpanel_priority_minor_set(win->xwin, priority);
2673 * Get the minor priority of a quickpanel window
2675 * @param obj The window object
2676 * @return The minor priority of this quickpanel
2681 elm_win_quickpanel_priority_minor_get(const Evas_Object *obj)
2684 ELM_CHECK_WIDTYPE(obj, widtype) -1;
2685 win = elm_widget_data_get(obj);
2686 if (!win) return -1;
2687 #ifdef HAVE_ELEMENTARY_X
2688 _elm_win_xwindow_get(win);
2690 return ecore_x_e_illume_quickpanel_priority_minor_get(win->xwin);
2696 * Set which zone this quickpanel should appear in
2698 * @param obj The window object
2699 * @param zone The requested zone for this quickpanel
2704 elm_win_quickpanel_zone_set(Evas_Object *obj, int zone)
2707 ELM_CHECK_WIDTYPE(obj, widtype);
2708 win = elm_widget_data_get(obj);
2710 #ifdef HAVE_ELEMENTARY_X
2711 _elm_win_xwindow_get(win);
2713 ecore_x_e_illume_quickpanel_zone_set(win->xwin, zone);
2718 * Get which zone this quickpanel should appear in
2720 * @param obj The window object
2721 * @return The requested zone for this quickpanel
2726 elm_win_quickpanel_zone_get(const Evas_Object *obj)
2729 ELM_CHECK_WIDTYPE(obj, widtype) 0;
2730 win = elm_widget_data_get(obj);
2732 #ifdef HAVE_ELEMENTARY_X
2733 _elm_win_xwindow_get(win);
2735 return ecore_x_e_illume_quickpanel_zone_get(win->xwin);
2741 * Set the window to be skipped by keyboard focus
2743 * This sets the window to be skipped by normal keyboard input. This means
2744 * a window manager will be asked to not focus this window as well as omit
2745 * it from things like the taskbar, pager, "alt-tab" list etc. etc.
2747 * Call this and enable it on a window BEFORE you show it for the first time,
2748 * otherwise it may have no effect.
2750 * Use this for windows that have only output information or might only be
2751 * interacted with by the mouse or fingers, and never for typing input.
2752 * Be careful that this may have side-effects like making the window
2753 * non-accessible in some cases unless the window is specially handled. Use
2756 * @param obj The window object
2757 * @param skip The skip flag state (EINA_TRUE if it is to be skipped)
2762 elm_win_prop_focus_skip_set(Evas_Object *obj, Eina_Bool skip)
2765 ELM_CHECK_WIDTYPE(obj, widtype);
2766 win = elm_widget_data_get(obj);
2768 #ifdef HAVE_ELEMENTARY_X
2769 _elm_win_xwindow_get(win);
2774 Ecore_X_Window_State states[2];
2776 ecore_x_icccm_hints_set(win->xwin, 0, 0, 0, 0, 0, 0, 0);
2777 states[0] = ECORE_X_WINDOW_STATE_SKIP_TASKBAR;
2778 states[1] = ECORE_X_WINDOW_STATE_SKIP_PAGER;
2779 ecore_x_netwm_window_state_set(win->xwin, states, 2);
2786 * Send a command to the windowing environment
2788 * This is intended to work in touchscreen or small screen device environments
2789 * where there is a more simplistic window management policy in place. This
2790 * uses the window object indicated to select which part of the environment
2791 * to control (the part that this window lives in), and provides a command
2792 * and an optional parameter structure (use NULL for this if not needed).
2794 * @param obj The window object that lives in the environment to control
2795 * @param command The command to send
2796 * @param params Optional parameters for the command
2801 elm_win_illume_command_send(Evas_Object *obj, Elm_Illume_Command command, void *params __UNUSED__)
2804 ELM_CHECK_WIDTYPE(obj, widtype);
2805 win = elm_widget_data_get(obj);
2807 #ifdef HAVE_ELEMENTARY_X
2808 _elm_win_xwindow_get(win);
2813 case ELM_ILLUME_COMMAND_FOCUS_BACK:
2814 ecore_x_e_illume_focus_back_send(win->xwin);
2816 case ELM_ILLUME_COMMAND_FOCUS_FORWARD:
2817 ecore_x_e_illume_focus_forward_send(win->xwin);
2819 case ELM_ILLUME_COMMAND_FOCUS_HOME:
2820 ecore_x_e_illume_focus_home_send(win->xwin);
2822 case ELM_ILLUME_COMMAND_CLOSE:
2823 ecore_x_e_illume_close_send(win->xwin);
2833 * Get the inlined image object handle
2835 * When you create a window with elm_win_add() of type ELM_WIN_INLINED_IMAGE,
2836 * then the window is in fact an evas image object inlined in the parent
2837 * canvas. You can get this object (be careful to not manipulate it as it
2838 * is under control of elementary), and use it to do things like get pixel
2839 * data, save the image to a file, etc.
2841 * @param obj The window object to get the inlined image from
2842 * @return The inlined image object, or NULL if none exists
2847 elm_win_inlined_image_object_get(Evas_Object *obj)
2850 ELM_CHECK_WIDTYPE(obj, widtype) NULL;
2851 win = elm_widget_data_get(obj);
2852 if (!win) return NULL;
2853 return win->img_obj;
2857 * Set the enabled status for the focus highlight in a window
2859 * This function will enable or disable the focus highlight only for the
2860 * given window, regardless of the global setting for it
2862 * @param obj The window where to enable the highlight
2863 * @param enabled The enabled value for the highlight
2868 elm_win_focus_highlight_enabled_set(Evas_Object *obj, Eina_Bool enabled)
2872 ELM_CHECK_WIDTYPE(obj, widtype);
2874 win = elm_widget_data_get(obj);
2875 enabled = !!enabled;
2876 if (win->focus_highlight.enabled == enabled)
2879 win->focus_highlight.enabled = enabled;
2881 if (win->focus_highlight.enabled)
2882 _elm_win_focus_highlight_init(win);
2884 _elm_win_focus_highlight_shutdown(win);
2888 * Get the enabled value of the focus highlight for this window
2890 * @param obj The window in which to check if the focus highlight is enabled
2892 * @return EINA_TRUE if enabled, EINA_FALSE otherwise
2897 elm_win_focus_highlight_enabled_get(const Evas_Object *obj)
2901 ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
2903 win = elm_widget_data_get(obj);
2904 return win->focus_highlight.enabled;
2908 * Set the style for the focus highlight on this window
2910 * Sets the style to use for theming the highlight of focused objects on
2911 * the given window. If @p style is NULL, the default will be used.
2913 * @param obj The window where to set the style
2914 * @param style The style to set
2919 elm_win_focus_highlight_style_set(Evas_Object *obj, const char *style)
2923 ELM_CHECK_WIDTYPE(obj, widtype);
2925 win = elm_widget_data_get(obj);
2926 eina_stringshare_replace(&win->focus_highlight.style, style);
2927 win->focus_highlight.changed_theme = EINA_TRUE;
2928 _elm_win_focus_highlight_reconfigure_job_start(win);
2932 * Get the style set for the focus highlight object
2934 * Gets the style set for this windows highilght object, or NULL if none
2937 * @param obj The window to retrieve the highlights style from
2939 * @return The style set or NULL if none was. Default is used in that case.
2944 elm_win_focus_highlight_style_get(const Evas_Object *obj)
2948 ELM_CHECK_WIDTYPE(obj, widtype) NULL;
2950 win = elm_widget_data_get(obj);
2951 return win->focus_highlight.style;
2955 elm_win_indicator_state_set(Evas_Object *obj, int show_state)
2958 if (strcmp(elm_widget_type_get(obj), "win")) return;
2959 win = elm_widget_data_get(obj);
2961 #ifdef HAVE_ELEMENTARY_X
2962 _elm_win_xwindow_get(win);
2964 return ecore_x_window_prop_property_set (win->xwin,
2965 ECORE_X_ATOM_E_ILLUME_INDICATOR_STATE, ECORE_X_ATOM_CARDINAL, 32, &show_state, 1);
2971 elm_win_indicator_state_get(Evas_Object *obj)
2974 if (strcmp(elm_widget_type_get(obj), "win")) return -1;
2975 win = elm_widget_data_get(obj);
2976 if (!win) return -1;
2977 #ifdef HAVE_ELEMENTARY_X
2978 _elm_win_xwindow_get(win);
2984 unsigned int *prop_data = NULL;
2986 ret = ecore_x_window_prop_property_get (win->xwin,
2987 ECORE_X_ATOM_E_ILLUME_INDICATOR_STATE, ECORE_X_ATOM_CARDINAL, 32, (void *)&prop_data, &count);
2988 if( ret && prop_data )
2989 memcpy (&show, prop_data, sizeof (int));
2991 if (prop_data) free (prop_data);
3000 typedef struct _Widget_Data Widget_Data;
3005 Evas_Object *content;
3008 static void _del_hook(Evas_Object *obj);
3009 static void _theme_hook(Evas_Object *obj);
3010 static void _sizing_eval(Evas_Object *obj);
3011 static void _changed_size_hints(void *data, Evas *e, Evas_Object *obj, void *event_info);
3012 static void _sub_del(void *data, Evas_Object *obj, void *event_info);
3014 static const char *widtype2 = NULL;
3017 _del_hook(Evas_Object *obj)
3019 Widget_Data *wd = elm_widget_data_get(obj);
3025 _theme_hook(Evas_Object *obj)
3027 Widget_Data *wd = elm_widget_data_get(obj);
3028 _elm_theme_object_set(obj, wd->frm, "win", "inwin", elm_widget_style_get(obj));
3030 edje_object_part_swallow(wd->frm, "elm.swallow.content", wd->content);
3035 _elm_inwin_focus_next_hook(const Evas_Object *obj, Elm_Focus_Direction dir, Evas_Object **next)
3037 Widget_Data *wd = elm_widget_data_get(obj);
3042 /* Try Focus cycle in subitem */
3045 elm_widget_focus_next_get(wd->content, dir, next);
3050 *next = (Evas_Object *)obj;
3055 _sizing_eval(Evas_Object *obj)
3057 Widget_Data *wd = elm_widget_data_get(obj);
3058 Evas_Coord minw = -1, minh = -1;
3060 evas_object_size_hint_min_get(wd->content, &minw, &minh);
3061 edje_object_size_min_calc(wd->frm, &minw, &minh);
3062 evas_object_size_hint_min_set(obj, minw, minh);
3063 evas_object_size_hint_max_set(obj, -1, -1);
3067 _changed_size_hints(void *data, Evas *e __UNUSED__, Evas_Object *obj __UNUSED__, void *event_info __UNUSED__)
3073 _sub_del(void *data __UNUSED__, Evas_Object *obj, void *event_info)
3075 Widget_Data *wd = elm_widget_data_get(obj);
3076 Evas_Object *sub = event_info;
3077 if (sub == wd->content)
3079 evas_object_event_callback_del_full
3080 (sub, EVAS_CALLBACK_CHANGED_SIZE_HINTS, _changed_size_hints, obj);
3087 * @defgroup Inwin Inwin
3089 * An inwin is a window inside a window that is useful for a quick popup. It does not hover.
3092 elm_win_inwin_add(Evas_Object *obj)
3098 ELM_CHECK_WIDTYPE(obj, widtype) NULL;
3099 win = elm_widget_data_get(obj);
3100 if (!win) return NULL;
3101 wd = ELM_NEW(Widget_Data);
3102 obj2 = elm_widget_add(win->evas);
3103 elm_widget_type_set(obj2, "inwin");
3104 ELM_SET_WIDTYPE(widtype2, "inwin");
3105 elm_widget_sub_object_add(obj, obj2);
3106 evas_object_size_hint_weight_set(obj2, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND);
3107 evas_object_size_hint_align_set(obj2, EVAS_HINT_FILL, EVAS_HINT_FILL);
3108 elm_win_resize_object_add(obj, obj2);
3110 elm_widget_data_set(obj2, wd);
3111 elm_widget_del_hook_set(obj2, _del_hook);
3112 elm_widget_theme_hook_set(obj2, _theme_hook);
3113 elm_widget_focus_next_hook_set(obj2, _elm_inwin_focus_next_hook);
3114 elm_widget_can_focus_set(obj2, EINA_TRUE);
3115 elm_widget_highlight_ignore_set(obj2, EINA_TRUE);
3117 wd->frm = edje_object_add(win->evas);
3118 _elm_theme_object_set(obj, wd->frm, "win", "inwin", "default");
3119 elm_widget_resize_object_set(obj2, wd->frm);
3121 evas_object_smart_callback_add(obj2, "sub-object-del", _sub_del, obj2);
3128 * Activates an inwin object
3130 * @param obj The inwin to activate
3135 elm_win_inwin_activate(Evas_Object *obj)
3137 ELM_CHECK_WIDTYPE(obj, widtype2);
3138 Widget_Data *wd = elm_widget_data_get(obj);
3140 evas_object_raise(obj);
3141 evas_object_show(obj);
3142 edje_object_signal_emit(wd->frm, "elm,action,show", "elm");
3143 elm_object_focus(obj);
3147 * Set the content of an inwin object.
3149 * Once the content object is set, a previously set one will be deleted.
3150 * If you want to keep that old content object, use the
3151 * elm_win_inwin_content_unset() function.
3153 * @param obj The inwin object
3154 * @param content The object to set as content
3159 elm_win_inwin_content_set(Evas_Object *obj, Evas_Object *content)
3161 ELM_CHECK_WIDTYPE(obj, widtype2);
3162 Widget_Data *wd = elm_widget_data_get(obj);
3164 if (wd->content == content) return;
3165 if (wd->content) evas_object_del(wd->content);
3166 wd->content = content;
3169 elm_widget_sub_object_add(obj, content);
3170 evas_object_event_callback_add(content, EVAS_CALLBACK_CHANGED_SIZE_HINTS,
3171 _changed_size_hints, obj);
3172 edje_object_part_swallow(wd->frm, "elm.swallow.content", content);
3178 * Get the content of an inwin object.
3180 * Return the content object which is set for this widget.
3182 * @param obj The inwin object
3183 * @return The content that is being used
3188 elm_win_inwin_content_get(const Evas_Object *obj)
3190 ELM_CHECK_WIDTYPE(obj, widtype2) NULL;
3191 Widget_Data *wd = elm_widget_data_get(obj);
3192 if (!wd) return NULL;
3197 * Unset the content of an inwin object.
3199 * Unparent and return the content object which was set for this widget.
3201 * @param obj The inwin object
3202 * @return The content that was being used
3207 elm_win_inwin_content_unset(Evas_Object *obj)
3209 ELM_CHECK_WIDTYPE(obj, widtype2) NULL;
3210 Widget_Data *wd = elm_widget_data_get(obj);
3211 if (!wd) return NULL;
3212 if (!wd->content) return NULL;
3213 Evas_Object *content = wd->content;
3214 elm_widget_sub_object_del(obj, wd->content);
3215 edje_object_part_unswallow(wd->frm, wd->content);
3220 /* windowing spcific calls - shall we do this differently? */
3222 static Ecore_X_Window
3223 _elm_ee_win_get(const Evas_Object *obj)
3226 #ifdef HAVE_ELEMENTARY_X
3227 Ecore_Evas *ee = ecore_evas_ecore_evas_get(evas_object_evas_get(obj));
3228 if (ee) return (Ecore_X_Window)ecore_evas_window_get(ee);
3234 * Get the Ecore_X_Window of an Evas_Object
3236 * @param obj The object
3238 * @return The Ecore_X_Window of @p obj
3243 elm_win_xwindow_get(const Evas_Object *obj)
3245 Ecore_X_Window xwin = 0;
3250 type = elm_widget_type_get(obj);
3251 if (!type) return 0;
3252 if (type != widtype) return _elm_ee_win_get(obj);
3253 #ifdef HAVE_ELEMENTARY_X
3254 win = elm_widget_data_get(obj);
3255 if (!win) return xwin;
3256 if (win->xwin) return win->xwin;
3257 if (win->parent) return elm_win_xwindow_get(win->parent);