Elm (wayland): Set frame clip. Fix maximize/unmaximize in wayland.
[framework/uifw/elementary.git] / src / lib / elm_win.c
1 #include <Elementary.h>
2 #include "elm_priv.h"
3
4 typedef struct _Elm_Win Elm_Win;
5
6 struct _Elm_Win
7 {
8    Ecore_Evas *ee;
9    Evas *evas;
10    Evas_Object *parent, *win_obj, *img_obj, *frame_obj;
11    Eina_List *subobjs;
12 #ifdef HAVE_ELEMENTARY_X
13    Ecore_X_Window xwin;
14    Ecore_Event_Handler *client_message_handler;
15 #endif
16    Ecore_Job *deferred_resize_job;
17    Ecore_Job *deferred_child_eval_job;
18
19    Elm_Win_Type type;
20    Elm_Win_Keyboard_Mode kbdmode;
21    Elm_Win_Indicator_Mode indmode;
22    struct {
23       const char *info;
24       Ecore_Timer *timer;
25       int repeat_count;
26       int shot_counter;
27    } shot;
28    int resize_location;
29    int *autodel_clear, rot;
30    int show_count;
31    struct {
32       int x, y;
33    } screen;
34    struct 
35      {
36         Ecore_Evas *ee;
37         Evas *evas;
38         Evas_Object *obj, *hot_obj;
39         int hot_x, hot_y;
40      } pointer;
41    struct {
42       Evas_Object *top;
43
44       struct {
45          Evas_Object *target;
46          Eina_Bool visible : 1;
47          Eina_Bool handled : 1;
48       } cur, prev;
49
50       const char *style;
51       Ecore_Job *reconf_job;
52
53       Eina_Bool enabled : 1;
54       Eina_Bool changed_theme : 1;
55       Eina_Bool top_animate : 1;
56       Eina_Bool geometry_changed : 1;
57    } focus_highlight;
58
59    double aspect;
60    Eina_Bool urgent : 1;
61    Eina_Bool modal : 1;
62    Eina_Bool demand_attention : 1;
63    Eina_Bool autodel : 1;
64    Eina_Bool constrain : 1;
65    Eina_Bool resizing : 1;
66    Eina_Bool iconified : 1;
67    Eina_Bool withdrawn : 1;
68    Eina_Bool sticky : 1;
69    Eina_Bool fullscreen : 1;
70    Eina_Bool maximized : 1;
71    Eina_Bool skip_focus : 1;
72 };
73
74 static const char *widtype = NULL;
75 static void _elm_win_obj_callback_del(void *data, Evas *e, Evas_Object *obj, void *event_info);
76 static void _elm_win_obj_callback_img_obj_del(void *data, Evas *e, Evas_Object *obj, void *event_info);
77 static void _elm_win_obj_callback_parent_del(void *data, Evas *e, Evas_Object *obj, void *event_info);
78 static void _elm_win_obj_intercept_move(void *data, Evas_Object *obj, Evas_Coord x, Evas_Coord y);
79 static void _elm_win_obj_intercept_show(void *data, Evas_Object *obj);
80 static void _elm_win_move(Ecore_Evas *ee);
81 static void _elm_win_resize(Ecore_Evas *ee);
82 static void _elm_win_delete_request(Ecore_Evas *ee);
83 static void _elm_win_resize_job(void *data);
84 #ifdef HAVE_ELEMENTARY_X
85 static void _elm_win_xwin_update(Elm_Win *win);
86 #endif
87 static void _elm_win_eval_subobjs(Evas_Object *obj);
88 static void _elm_win_subobj_callback_del(void *data, Evas *e, Evas_Object *obj, void *event_info);
89 static void _elm_win_subobj_callback_changed_size_hints(void *data, Evas *e, Evas_Object *obj, void *event_info);
90 static void _elm_win_focus_highlight_init(Elm_Win *win);
91 static void _elm_win_focus_highlight_shutdown(Elm_Win *win);
92 static void _elm_win_focus_highlight_visible_set(Elm_Win *win, Eina_Bool visible);
93 static void _elm_win_focus_highlight_reconfigure_job_start(Elm_Win *win);
94 static void _elm_win_focus_highlight_reconfigure_job_stop(Elm_Win *win);
95 static void _elm_win_focus_highlight_anim_end(void *data, Evas_Object *obj, const char *emission, const char *source);
96 static void _elm_win_focus_highlight_reconfigure(Elm_Win *win);
97
98 static void _elm_win_frame_add(Elm_Win *win, const char *style);
99 static void _elm_win_frame_cb_move_start(void *data, Evas_Object *obj __UNUSED__, const char *sig __UNUSED__, const char *source __UNUSED__);
100 static void _elm_win_frame_cb_resize_start(void *data, Evas_Object *obj __UNUSED__, const char *sig __UNUSED__, const char *source);
101 static void _elm_win_frame_cb_minimize(void *data, Evas_Object *obj __UNUSED__, const char *sig __UNUSED__, const char *source __UNUSED__);
102 static void _elm_win_frame_cb_maximize(void *data, Evas_Object *obj __UNUSED__, const char *sig __UNUSED__, const char *source __UNUSED__);
103 static void _elm_win_frame_cb_close(void *data, Evas_Object *obj __UNUSED__, const char *sig __UNUSED__, const char *source __UNUSED__);
104
105 static void _elm_win_pointer_add(Elm_Win *win, const char *style);
106
107 static const char SIG_DELETE_REQUEST[] = "delete,request";
108 static const char SIG_FOCUS_OUT[] = "focus,out";
109 static const char SIG_FOCUS_IN[] = "focus,in";
110 static const char SIG_MOVED[] = "moved";
111 static const char SIG_THEME_CHANGED[] = "theme,changed";
112 static const char SIG_WITHDRAWN[] = "withdrawn";
113 static const char SIG_ICONIFIED[] = "iconified";
114 static const char SIG_NORMAL[] = "normal";
115 static const char SIG_STICK[] = "stick";
116 static const char SIG_UNSTICK[] = "unstick";
117 static const char SIG_FULLSCREEN[] = "fullscreen";
118 static const char SIG_UNFULLSCREEN[] = "unfullscreen";
119 static const char SIG_MAXIMIZED[] = "maximized";
120 static const char SIG_UNMAXIMIZED[] = "unmaximized";
121
122 static const Evas_Smart_Cb_Description _signals[] = {
123    {SIG_DELETE_REQUEST, ""},
124    {SIG_FOCUS_OUT, ""},
125    {SIG_FOCUS_IN, ""},
126    {SIG_MOVED, ""},
127    {SIG_WITHDRAWN, ""},
128    {SIG_ICONIFIED, ""},
129    {SIG_NORMAL, ""},
130    {SIG_STICK, ""},
131    {SIG_UNSTICK, ""},
132    {SIG_FULLSCREEN, ""},
133    {SIG_UNFULLSCREEN, ""},
134    {SIG_MAXIMIZED, ""},
135    {SIG_UNMAXIMIZED, ""},
136    {NULL, NULL}
137 };
138
139
140
141 Eina_List *_elm_win_list = NULL;
142 int _elm_win_deferred_free = 0;
143
144 // exmaple shot spec (wait 0.1 sec then save as my-window.png):
145 // ELM_ENGINE="shot:delay=0.1:file=my-window.png"
146
147 static double
148 _shot_delay_get(Elm_Win *win)
149 {
150    char *p, *pd;
151    char *d = strdup(win->shot.info);
152
153    if (!d) return 0.5;
154    for (p = (char *)win->shot.info; *p; p++)
155      {
156         if (!strncmp(p, "delay=", 6))
157           {
158              double v;
159
160              for (pd = d, p += 6; (*p) && (*p != ':'); p++, pd++)
161                {
162                   *pd = *p;
163                }
164              *pd = 0;
165              v = atof(d);
166              free(d);
167              return v;
168           }
169      }
170    free(d);
171    return 0.5;
172 }
173
174 static char *
175 _shot_file_get(Elm_Win *win)
176 {
177    char *p;
178    char *tmp = strdup(win->shot.info);
179    char *repname = NULL;
180
181    if (!tmp) return NULL;
182
183    for (p = (char *)win->shot.info; *p; p++)
184      {
185         if (!strncmp(p, "file=", 5))
186           {
187              strcpy(tmp, p + 5);
188              if (!win->shot.repeat_count) return tmp;
189              else
190                {
191                   char *dotptr = strrchr(tmp, '.');
192                   if (dotptr)
193                     {
194                        size_t size = sizeof(char)*(strlen(tmp) + 16);
195                        repname = malloc(size);
196                        strncpy(repname, tmp, dotptr - tmp);
197                        snprintf(repname + (dotptr - tmp), size - (dotptr - tmp), "%03i",
198                                win->shot.shot_counter + 1);
199                        strcat(repname, dotptr);
200                        free(tmp);
201                        return repname;
202                     }
203                }
204           }
205      }
206    free(tmp);
207    if (!win->shot.repeat_count) return strdup("out.png");
208
209    repname = malloc(sizeof(char) * 24);
210    snprintf(repname, sizeof(char) * 24, "out%03i.png", win->shot.shot_counter + 1);
211    return repname;
212 }
213
214 static int
215 _shot_repeat_count_get(Elm_Win *win)
216 {
217    char *p, *pd;
218    char *d = strdup(win->shot.info);
219
220    if (!d) return 0;
221    for (p = (char *)win->shot.info; *p; p++)
222      {
223         if (!strncmp(p, "repeat=", 7))
224           {
225              int v;
226
227              for (pd = d, p += 7; (*p) && (*p != ':'); p++, pd++)
228                {
229                   *pd = *p;
230                }
231              *pd = 0;
232              v = atoi(d);
233              if (v < 0) v = 0;
234              if (v > 1000) v = 999;
235              free(d);
236              return v;
237           }
238      }
239    free(d);
240    return 0;
241 }
242
243 static char *
244 _shot_key_get(Elm_Win *win __UNUSED__)
245 {
246    return NULL;
247 }
248
249 static char *
250 _shot_flags_get(Elm_Win *win __UNUSED__)
251 {
252    return NULL;
253 }
254
255 static void
256 _shot_do(Elm_Win *win)
257 {
258    Ecore_Evas *ee;
259    Evas_Object *o;
260    unsigned int *pixels;
261    int w, h;
262    char *file, *key, *flags;
263
264    ecore_evas_manual_render(win->ee);
265    pixels = (void *)ecore_evas_buffer_pixels_get(win->ee);
266    if (!pixels) return;
267    ecore_evas_geometry_get(win->ee, NULL, NULL, &w, &h);
268    if ((w < 1) || (h < 1)) return;
269    file = _shot_file_get(win);
270    if (!file) return;
271    key = _shot_key_get(win);
272    flags = _shot_flags_get(win);
273    ee = ecore_evas_buffer_new(1, 1);
274    o = evas_object_image_add(ecore_evas_get(ee));
275    evas_object_image_alpha_set(o, ecore_evas_alpha_get(win->ee));
276    evas_object_image_size_set(o, w, h);
277    evas_object_image_data_set(o, pixels);
278    if (!evas_object_image_save(o, file, key, flags))
279      {
280         ERR("Cannot save window to '%s' (key '%s', flags '%s')",
281             file, key, flags);
282      }
283    free(file);
284    if (key) free(key);
285    if (flags) free(flags);
286    ecore_evas_free(ee);
287    if (win->shot.repeat_count) win->shot.shot_counter++;
288 }
289
290 static Eina_Bool
291 _shot_delay(void *data)
292 {
293    Elm_Win *win = data;
294    _shot_do(win);
295    if (win->shot.repeat_count)
296      {
297         int remainshot = (win->shot.repeat_count - win->shot.shot_counter);
298         if (remainshot > 0) return EINA_TRUE;
299      }
300    win->shot.timer = NULL;
301    elm_exit();
302    return EINA_FALSE;
303 }
304
305 static void
306 _shot_init(Elm_Win *win)
307 {
308    if (!win->shot.info) return;
309    win->shot.repeat_count = _shot_repeat_count_get(win);
310    win->shot.shot_counter = 0;
311 }
312
313 static void
314 _shot_handle(Elm_Win *win)
315 {
316    if (!win->shot.info) return;
317    win->shot.timer = ecore_timer_add(_shot_delay_get(win), _shot_delay, win);
318 }
319
320 static void
321 _elm_win_move(Ecore_Evas *ee)
322 {
323    Evas_Object *obj = ecore_evas_object_associate_get(ee);
324    Elm_Win *win;
325    int x, y;
326
327    if (!obj) return;
328    win = elm_widget_data_get(obj);
329    if (!win) return;
330    ecore_evas_geometry_get(ee, &x, &y, NULL, NULL);
331    win->screen.x = x;
332    win->screen.y = y;
333    evas_object_smart_callback_call(win->win_obj, SIG_MOVED, NULL);
334 }
335
336 static void
337 _elm_win_resize(Ecore_Evas *ee)
338 {
339    Evas_Object *obj = ecore_evas_object_associate_get(ee);
340    Elm_Win *win;
341
342    if (!obj) return;
343    win = elm_widget_data_get(obj);
344    if (!win) return;
345    if (win->deferred_resize_job) ecore_job_del(win->deferred_resize_job);
346    win->deferred_resize_job = ecore_job_add(_elm_win_resize_job, win);
347 }
348
349 static void 
350 _elm_win_mouse_in(Ecore_Evas *ee)
351 {
352    Evas_Object *obj;
353    Elm_Win *win;
354
355    if (!(obj = ecore_evas_object_associate_get(ee))) return;
356    if (!(win = elm_widget_data_get(obj))) return;
357    if (win->resizing) win->resizing = EINA_FALSE;
358 }
359
360 static void
361 _elm_win_focus_in(Ecore_Evas *ee)
362 {
363    Evas_Object *obj = ecore_evas_object_associate_get(ee);
364    Elm_Win *win;
365
366    if (!obj) return;
367    win = elm_widget_data_get(obj);
368    if (!win) return;
369    _elm_widget_top_win_focused_set(win->win_obj, EINA_TRUE);
370    if (!elm_widget_focus_order_get(obj))
371      {
372         elm_widget_focus_steal(win->win_obj);
373         win->show_count++;
374      }
375    else
376      elm_widget_focus_restore(win->win_obj);
377    evas_object_smart_callback_call(win->win_obj, SIG_FOCUS_IN, NULL);
378    win->focus_highlight.cur.visible = EINA_TRUE;
379    _elm_win_focus_highlight_reconfigure_job_start(win);
380    if (win->frame_obj)
381      {
382         edje_object_signal_emit(win->frame_obj, "elm,action,focus", "elm");
383      }
384    else if (win->img_obj)
385      {
386         /* do nothing */
387      }
388 }
389
390 static void
391 _elm_win_focus_out(Ecore_Evas *ee)
392 {
393    Evas_Object *obj = ecore_evas_object_associate_get(ee);
394    Elm_Win *win;
395
396    if (!obj) return;
397    win = elm_widget_data_get(obj);
398    if (!win) return;
399    elm_object_focus_set(win->win_obj, EINA_FALSE);
400    _elm_widget_top_win_focused_set(win->win_obj, EINA_FALSE);
401    evas_object_smart_callback_call(win->win_obj, SIG_FOCUS_OUT, NULL);
402    win->focus_highlight.cur.visible = EINA_FALSE;
403    _elm_win_focus_highlight_reconfigure_job_start(win);
404    if (win->frame_obj)
405      {
406         edje_object_signal_emit(win->frame_obj, "elm,action,unfocus", "elm");
407      }
408    else if (win->img_obj)
409      {
410         /* do nothing */
411      }
412 }
413
414 static void 
415 _elm_win_state_change(Ecore_Evas *ee)
416 {
417    Evas_Object *obj;
418    Elm_Win *win;
419    Eina_Bool ch_withdrawn = EINA_FALSE;
420    Eina_Bool ch_sticky = EINA_FALSE;
421    Eina_Bool ch_iconified = EINA_FALSE;
422    Eina_Bool ch_fullscreen = EINA_FALSE;
423    Eina_Bool ch_maximized = EINA_FALSE;
424
425    if (!(obj = ecore_evas_object_associate_get(ee))) return;
426    
427    if (!(win = elm_widget_data_get(obj))) return;
428
429    if (win->withdrawn != ecore_evas_withdrawn_get(win->ee))
430      {
431         win->withdrawn = ecore_evas_withdrawn_get(win->ee);
432         ch_withdrawn = EINA_TRUE;
433      }
434    if (win->sticky != ecore_evas_sticky_get(win->ee))
435      {
436         win->sticky = ecore_evas_sticky_get(win->ee);
437         ch_sticky = EINA_TRUE;
438      }
439    if (win->iconified != ecore_evas_iconified_get(win->ee))
440      {
441         win->iconified = ecore_evas_iconified_get(win->ee);
442         ch_iconified = EINA_TRUE;
443      }
444    if (win->fullscreen != ecore_evas_fullscreen_get(win->ee))
445      {
446         win->fullscreen = ecore_evas_fullscreen_get(win->ee);
447         ch_fullscreen = EINA_TRUE;
448      }
449    if (win->maximized != ecore_evas_maximized_get(win->ee))
450      {
451         win->maximized = ecore_evas_maximized_get(win->ee);
452         ch_maximized = EINA_TRUE;
453      }
454    if ((ch_withdrawn) || (ch_iconified))
455      {
456         if (win->withdrawn)
457           evas_object_smart_callback_call(win->win_obj, SIG_WITHDRAWN, NULL);
458         else if (win->iconified)
459           evas_object_smart_callback_call(win->win_obj, SIG_ICONIFIED, NULL);
460         else
461           evas_object_smart_callback_call(win->win_obj, SIG_NORMAL, NULL);
462      }
463    if (ch_sticky)
464      {
465         if (win->sticky)
466           evas_object_smart_callback_call(win->win_obj, SIG_STICK, NULL);
467         else
468           evas_object_smart_callback_call(win->win_obj, SIG_UNSTICK, NULL);
469      }
470    if (ch_fullscreen)
471      {
472         if (win->fullscreen)
473           evas_object_smart_callback_call(win->win_obj, SIG_FULLSCREEN, NULL);
474         else
475           evas_object_smart_callback_call(win->win_obj, SIG_UNFULLSCREEN, NULL);
476      }
477    if (ch_maximized)
478      {
479         if (win->maximized)
480           evas_object_smart_callback_call(win->win_obj, SIG_MAXIMIZED, NULL);
481         else
482           evas_object_smart_callback_call(win->win_obj, SIG_UNMAXIMIZED, NULL);
483      }
484 }
485
486 static Eina_Bool
487 _elm_win_focus_next_hook(const Evas_Object *obj, Elm_Focus_Direction dir, Evas_Object **next)
488 {
489    Elm_Win *wd = elm_widget_data_get(obj);
490    const Eina_List *items;
491    void *(*list_data_get) (const Eina_List *list);
492
493    if (!wd)
494      return EINA_FALSE;
495
496    /* Focus chain */
497    if (wd->subobjs)
498      {
499         if (!(items = elm_widget_focus_custom_chain_get(obj)))
500           {
501              items = wd->subobjs;
502              if (!items)
503                return EINA_FALSE;
504           }
505         list_data_get = eina_list_data_get;
506
507         elm_widget_focus_list_next_get(obj, items, list_data_get, dir, next);
508
509         if (*next)
510           return EINA_TRUE;
511      }
512
513    *next = (Evas_Object *)obj;
514    return EINA_FALSE;
515 }
516
517 static void
518 _elm_win_on_focus_hook(void *data __UNUSED__, Evas_Object *obj)
519 {
520    Elm_Win *win = elm_widget_data_get(obj);
521    if (!win) return;
522
523    if (win->img_obj)
524       evas_object_focus_set(win->img_obj, elm_widget_focus_get(obj));
525    else
526       evas_object_focus_set(obj, elm_widget_focus_get(obj));
527 }
528
529 static Eina_Bool
530 _elm_win_event_cb(Evas_Object *obj, Evas_Object *src __UNUSED__, Evas_Callback_Type type, void *event_info)
531 {
532    if (type == EVAS_CALLBACK_KEY_DOWN)
533      {
534         Evas_Event_Key_Down *ev = event_info;
535         if (!strcmp(ev->keyname, "Tab"))
536           {
537              if (evas_key_modifier_is_set(ev->modifiers, "Shift"))
538                elm_widget_focus_cycle(obj, ELM_FOCUS_PREVIOUS);
539              else
540                elm_widget_focus_cycle(obj, ELM_FOCUS_NEXT);
541              ev->event_flags |= EVAS_EVENT_FLAG_ON_HOLD;
542              return EINA_TRUE;
543           }
544         else if ((!strcmp(ev->keyname, "Left")) ||
545                  (!strcmp(ev->keyname, "KP_Left")))
546           {
547              //TODO : woohyun jung
548           }
549         else if ((!strcmp(ev->keyname, "Right")) ||
550                  (!strcmp(ev->keyname, "KP_Right")))
551           {
552              //TODO : woohyun jung
553           }
554         else if ((!strcmp(ev->keyname, "Up")) ||
555                  (!strcmp(ev->keyname, "KP_Up")))
556           {
557              //TODO : woohyun jung
558           }
559         else if ((!strcmp(ev->keyname, "Down")) ||
560                  (!strcmp(ev->keyname, "KP_Down")))
561           {
562              //TODO : woohyun jung
563           }
564      }
565
566    return EINA_FALSE;
567 }
568
569 static void
570 _deferred_ecore_evas_free(void *data)
571 {
572    ecore_evas_free(data);
573    _elm_win_deferred_free--;
574 }
575
576 static void
577 _elm_win_obj_callback_show(void *data, Evas *e __UNUSED__, Evas_Object *obj __UNUSED__, void *event_info __UNUSED__)
578 {
579    Elm_Win *win = data;
580
581    if (!win->show_count) win->show_count++;
582    if (win->shot.info) _shot_handle(win);
583 }
584
585 static void
586 _elm_win_obj_callback_hide(void *data, Evas *e __UNUSED__, Evas_Object *obj __UNUSED__, void *event_info __UNUSED__)
587 {
588    Elm_Win *win = data;
589
590    if (win->frame_obj)
591      {
592         evas_object_hide(win->frame_obj);
593      }
594    else if (win->img_obj)
595      {
596         evas_object_hide(win->img_obj);
597      }
598    if (win->pointer.obj)
599      {
600         evas_object_hide(win->pointer.obj);
601         ecore_evas_hide(win->pointer.ee);
602      }
603 }
604
605 static void
606 _elm_win_obj_callback_del(void *data, Evas *e, Evas_Object *obj, void *event_info __UNUSED__)
607 {
608    Elm_Win *win = data;
609    Evas_Object *child;
610
611    if (win->parent)
612      {
613         evas_object_event_callback_del_full(win->parent, EVAS_CALLBACK_DEL,
614                                             _elm_win_obj_callback_parent_del, win);
615         win->parent = NULL;
616      }
617    if (win->autodel_clear) *(win->autodel_clear) = -1;
618    _elm_win_list = eina_list_remove(_elm_win_list, win->win_obj);
619    while (win->subobjs) elm_win_resize_object_del(obj, win->subobjs->data);
620    if (win->ee)
621      {
622         ecore_evas_callback_delete_request_set(win->ee, NULL);
623         ecore_evas_callback_resize_set(win->ee, NULL);
624      }
625    if (win->deferred_resize_job) ecore_job_del(win->deferred_resize_job);
626    if (win->deferred_child_eval_job) ecore_job_del(win->deferred_child_eval_job);
627    if (win->shot.info) eina_stringshare_del(win->shot.info);
628    if (win->shot.timer) ecore_timer_del(win->shot.timer);
629    evas_object_event_callback_del_full(win->win_obj, EVAS_CALLBACK_DEL,
630                                        _elm_win_obj_callback_del, win);
631    while (((child = evas_object_bottom_get(win->evas))) &&
632           (child != obj))
633      {
634         evas_object_del(child);
635      }
636    while (((child = evas_object_top_get(win->evas))) &&
637           (child != obj))
638      {
639         evas_object_del(child);
640      }
641 #ifdef HAVE_ELEMENTARY_X
642    if (win->client_message_handler)
643      ecore_event_handler_del(win->client_message_handler);
644 #endif
645    // FIXME: Why are we flushing edje on every window destroy ??
646    //   edje_file_cache_flush();
647    //   edje_collection_cache_flush();
648    //   evas_image_cache_flush(win->evas);
649    //   evas_font_cache_flush(win->evas);
650    // FIXME: we are in the del handler for the object and delete the canvas
651    // that lives under it from the handler... nasty. deferring doesn't help either
652
653    if (win->img_obj)
654      {
655         win->img_obj = NULL;
656      }
657    else
658      {
659         if (win->ee)
660           {
661              ecore_job_add(_deferred_ecore_evas_free, win->ee);
662              _elm_win_deferred_free++;
663           }
664      }
665
666    _elm_win_focus_highlight_shutdown(win);
667    eina_stringshare_del(win->focus_highlight.style);
668
669    free(win);
670
671    if ((!_elm_win_list) &&
672        (elm_policy_get(ELM_POLICY_QUIT) == ELM_POLICY_QUIT_LAST_WINDOW_CLOSED))
673      {
674         edje_file_cache_flush();
675         edje_collection_cache_flush();
676         evas_image_cache_flush(e);
677         evas_font_cache_flush(e);
678         elm_exit();
679      }
680 }
681
682 static void
683 _elm_win_obj_callback_img_obj_del(void *data, Evas *e __UNUSED__, Evas_Object *obj __UNUSED__, void *event_info __UNUSED__)
684 {
685    Elm_Win *win = data;
686    if (!win->img_obj) return;
687    evas_object_event_callback_del_full
688       (win->img_obj, EVAS_CALLBACK_DEL, _elm_win_obj_callback_img_obj_del, win);
689    evas_object_del(win->img_obj);
690 }
691
692 static void
693 _elm_win_obj_callback_parent_del(void *data, Evas *e __UNUSED__, Evas_Object *obj, void *event_info __UNUSED__)
694 {
695    Elm_Win *win = data;
696    if (obj == win->parent) win->parent = NULL;
697 }
698
699 static void
700 _elm_win_obj_intercept_move(void *data, Evas_Object *obj, Evas_Coord x, Evas_Coord y)
701 {
702    Elm_Win *win = data;
703
704    if (win->img_obj)
705      {
706         if ((x != win->screen.x) || (y != win->screen.y))
707           {
708              win->screen.x = x;
709              win->screen.y = y;
710              evas_object_smart_callback_call(win->win_obj, SIG_MOVED, NULL);
711           }
712      }
713    else
714      {
715         evas_object_move(obj, x, y);
716      }
717 }
718
719 static void
720 _elm_win_obj_intercept_show(void *data, Evas_Object *obj)
721 {
722    Elm_Win *win = data;
723    // this is called to make sure all smart containers have calculated their
724    // sizes BEFORE we show the window to make sure it initially appears at
725    // our desired size (ie min size is known first)
726    evas_smart_objects_calculate(evas_object_evas_get(obj));
727    if (win->frame_obj)
728      {
729         evas_object_show(win->frame_obj);
730      }
731    else if (win->img_obj)
732      {
733         evas_object_show(win->img_obj);
734      }
735    if (win->pointer.obj)
736      {
737         ecore_evas_show(win->pointer.ee);
738         evas_object_show(win->pointer.obj);
739         /* ecore_evas_wayland_pointer_set(win->pointer.ee, 10, 10); */
740      }
741    evas_object_show(obj);
742 }
743
744 static void
745 _elm_win_obj_callback_move(void *data, Evas *e __UNUSED__, Evas_Object *obj, void *event_info __UNUSED__)
746 {
747    Elm_Win *win = data;
748
749    if (ecore_evas_override_get(win->ee))
750      {
751         Evas_Coord x, y;
752
753         evas_object_geometry_get(obj, &x, &y, NULL, NULL);
754         win->screen.x = x;
755         win->screen.y = y;
756         evas_object_smart_callback_call(win->win_obj, SIG_MOVED, NULL);
757      }
758    if (win->frame_obj)
759      {
760         Evas_Coord x, y;
761
762         evas_object_geometry_get(obj, &x, &y, NULL, NULL);
763         win->screen.x = x;
764         win->screen.y = y;
765      }
766    else if (win->img_obj)
767      {
768         Evas_Coord x, y;
769
770         evas_object_geometry_get(obj, &x, &y, NULL, NULL);
771         win->screen.x = x;
772         win->screen.y = y;
773 //        evas_object_move(win->img_obj, x, y);
774      }
775 }
776
777 static void
778 _elm_win_obj_callback_resize(void *data, Evas *e __UNUSED__, Evas_Object *obj, void *event_info __UNUSED__)
779 {
780    Elm_Win *win = data;
781
782    if (win->frame_obj)
783      {
784      }
785    else if (win->img_obj)
786      {
787         Evas_Coord w = 1, h = 1;
788
789         evas_object_geometry_get(obj, NULL, NULL, &w, &h);
790         if (win->constrain)
791           {
792              int sw, sh;
793              ecore_evas_screen_geometry_get(win->ee, NULL, NULL, &sw, &sh);
794              w = MIN(w, sw);
795              h = MIN(h, sh);
796           }
797         if (w < 1) w = 1;
798         if (h < 1) h = 1;
799         evas_object_image_size_set(win->img_obj, w, h);
800      }
801 }
802
803 static void
804 _elm_win_delete_request(Ecore_Evas *ee)
805 {
806    Evas_Object *obj = ecore_evas_object_associate_get(ee);
807    Elm_Win *win;
808    if (strcmp(elm_widget_type_get(obj), "win")) return;
809
810    win = elm_widget_data_get(obj);
811    if (!win) return;
812    int autodel = win->autodel;
813    win->autodel_clear = &autodel;
814    evas_object_ref(win->win_obj);
815    evas_object_smart_callback_call(win->win_obj, SIG_DELETE_REQUEST, NULL);
816    // FIXME: if above callback deletes - then the below will be invalid
817    if (autodel) evas_object_del(win->win_obj);
818    else win->autodel_clear = NULL;
819    evas_object_unref(win->win_obj);
820 }
821
822 static void
823 _elm_win_resize_job(void *data)
824 {
825    Elm_Win *win = data;
826    const Eina_List *l;
827    Evas_Object *obj;
828    int w, h;
829
830    win->deferred_resize_job = NULL;
831    ecore_evas_request_geometry_get(win->ee, NULL, NULL, &w, &h);
832    if (win->constrain)
833      {
834         int sw, sh;
835         ecore_evas_screen_geometry_get(win->ee, NULL, NULL, &sw, &sh);
836         w = MIN(w, sw);
837         h = MIN(h, sh);
838      }
839    if (win->frame_obj)
840      {
841         evas_object_resize(win->frame_obj, w, h);
842      }
843    else if (win->img_obj)
844      {
845      }
846    evas_object_resize(win->win_obj, w, h);
847    EINA_LIST_FOREACH(win->subobjs, l, obj)
848      {
849         evas_object_move(obj, 0, 0);
850         evas_object_resize(obj, w, h);
851      }
852 }
853
854 #ifdef HAVE_ELEMENTARY_X
855 static void
856 _elm_win_xwindow_get(Elm_Win *win)
857 {
858    win->xwin = 0;
859
860 #define ENGINE_COMPARE(name) (!strcmp(_elm_config->engine, name))
861    if (ENGINE_COMPARE(ELM_SOFTWARE_X11))
862      {
863        if (win->ee) win->xwin = ecore_evas_software_x11_window_get(win->ee);
864      }
865    else if (ENGINE_COMPARE(ELM_SOFTWARE_X11) ||
866             ENGINE_COMPARE(ELM_SOFTWARE_FB) ||
867             ENGINE_COMPARE(ELM_SOFTWARE_16_WINCE) ||
868             ENGINE_COMPARE(ELM_SOFTWARE_SDL) ||
869             ENGINE_COMPARE(ELM_SOFTWARE_16_SDL) ||
870             ENGINE_COMPARE(ELM_OPENGL_SDL) ||
871             ENGINE_COMPARE(ELM_OPENGL_COCOA))
872      {
873      }
874    else if (ENGINE_COMPARE(ELM_SOFTWARE_16_X11))
875      {
876         if (win->ee) win->xwin = ecore_evas_software_x11_16_window_get(win->ee);
877      }
878    else if (ENGINE_COMPARE(ELM_SOFTWARE_8_X11))
879      {
880         if (win->ee) win->xwin = ecore_evas_software_x11_8_window_get(win->ee);
881      }
882 /* killed
883    else if (ENGINE_COMPARE(ELM_XRENDER_X11))
884      {
885         if (win->ee) win->xwin = ecore_evas_xrender_x11_window_get(win->ee);
886      }
887  */
888    else if (ENGINE_COMPARE(ELM_OPENGL_X11))
889      {
890         if (win->ee) win->xwin = ecore_evas_gl_x11_window_get(win->ee);
891      }
892    else if (ENGINE_COMPARE(ELM_SOFTWARE_WIN32))
893      {
894         if (win->ee) win->xwin = (long)ecore_evas_win32_window_get(win->ee);
895      }
896 #undef ENGINE_COMPARE
897 }
898 #endif
899
900 #ifdef HAVE_ELEMENTARY_X
901 static void
902 _elm_win_xwin_update(Elm_Win *win)
903 {
904    // ecore_x_icccm_icon_name_set
905    // ecore_x_icccm_window_role_set
906    // ecore_x_netwm_visible_name_set
907    // ecore_x_netwm_icon_name_set
908    // ecore_x_netwm_visible_icon_name_set
909    // ecore_x_netwm_icons_set
910    _elm_win_xwindow_get(win);
911    if (win->parent)
912      {
913         Elm_Win *win2;
914
915         win2 = elm_widget_data_get(win->parent);
916         if (win2)
917           {
918              if (win->xwin)
919                ecore_x_icccm_transient_for_set(win->xwin, win2->xwin);
920           }
921      }
922
923    if (!win->xwin) return; /* nothing more to do */
924
925    switch (win->type)
926      {
927       case ELM_WIN_BASIC:
928          ecore_x_netwm_window_type_set(win->xwin, ECORE_X_WINDOW_TYPE_NORMAL);
929          break;
930       case ELM_WIN_DIALOG_BASIC:
931          ecore_x_netwm_window_type_set(win->xwin, ECORE_X_WINDOW_TYPE_DIALOG);
932          break;
933       case ELM_WIN_DESKTOP:
934          ecore_x_netwm_window_type_set(win->xwin, ECORE_X_WINDOW_TYPE_DESKTOP);
935          break;
936       case ELM_WIN_DOCK:
937          ecore_x_netwm_window_type_set(win->xwin, ECORE_X_WINDOW_TYPE_DOCK);
938          break;
939       case ELM_WIN_TOOLBAR:
940          ecore_x_netwm_window_type_set(win->xwin, ECORE_X_WINDOW_TYPE_TOOLBAR);
941          break;
942       case ELM_WIN_MENU:
943          ecore_x_netwm_window_type_set(win->xwin, ECORE_X_WINDOW_TYPE_MENU);
944          break;
945       case ELM_WIN_UTILITY:
946          ecore_x_netwm_window_type_set(win->xwin, ECORE_X_WINDOW_TYPE_UTILITY);
947          break;
948       case ELM_WIN_SPLASH:
949          ecore_x_netwm_window_type_set(win->xwin, ECORE_X_WINDOW_TYPE_SPLASH);
950          break;
951       case ELM_WIN_DROPDOWN_MENU:
952          ecore_x_netwm_window_type_set(win->xwin, ECORE_X_WINDOW_TYPE_DROPDOWN_MENU);
953          break;
954       case ELM_WIN_POPUP_MENU:
955          ecore_x_netwm_window_type_set(win->xwin, ECORE_X_WINDOW_TYPE_POPUP_MENU);
956          break;
957       case ELM_WIN_TOOLTIP:
958          ecore_x_netwm_window_type_set(win->xwin, ECORE_X_WINDOW_TYPE_TOOLTIP);
959          break;
960       case ELM_WIN_NOTIFICATION:
961          ecore_x_netwm_window_type_set(win->xwin, ECORE_X_WINDOW_TYPE_NOTIFICATION);
962          break;
963       case ELM_WIN_COMBO:
964          ecore_x_netwm_window_type_set(win->xwin, ECORE_X_WINDOW_TYPE_COMBO);
965          break;
966       case ELM_WIN_DND:
967          ecore_x_netwm_window_type_set(win->xwin, ECORE_X_WINDOW_TYPE_DND);
968          break;
969       default:
970          break;
971      }
972    ecore_x_e_virtual_keyboard_state_set
973       (win->xwin, (Ecore_X_Virtual_Keyboard_State)win->kbdmode);
974    if (win->indmode == ELM_WIN_INDICATOR_SHOW)
975      ecore_x_e_illume_indicator_state_set
976      (win->xwin, ECORE_X_ILLUME_INDICATOR_STATE_ON);
977    else if (win->indmode == ELM_WIN_INDICATOR_HIDE)
978      ecore_x_e_illume_indicator_state_set
979      (win->xwin, ECORE_X_ILLUME_INDICATOR_STATE_OFF);
980 }
981 #endif
982
983 static void
984 _elm_win_eval_subobjs(Evas_Object *obj)
985 {
986    const Eina_List *l;
987    const Evas_Object *child;
988
989    Elm_Win *win = elm_widget_data_get(obj);
990    Evas_Coord w, h, minw = -1, minh = -1, maxw = -1, maxh = -1;
991    int xx = 1, xy = 1;
992    double wx, wy;
993
994    EINA_LIST_FOREACH(win->subobjs, l, child)
995      {
996         evas_object_size_hint_weight_get(child, &wx, &wy);
997         if (wx == 0.0) xx = 0;
998         if (wy == 0.0) xy = 0;
999
1000         evas_object_size_hint_min_get(child, &w, &h);
1001         if (w < 1) w = 1;
1002         if (h < 1) h = 1;
1003         if (w > minw) minw = w;
1004         if (h > minh) minh = h;
1005
1006         evas_object_size_hint_max_get(child, &w, &h);
1007         if (w < 1) w = -1;
1008         if (h < 1) h = -1;
1009         if (maxw == -1) maxw = w;
1010         else if ((w > 0) && (w < maxw)) maxw = w;
1011         if (maxh == -1) maxh = h;
1012         else if ((h > 0) && (h < maxh)) maxh = h;
1013      }
1014    if (!xx) maxw = minw;
1015    else maxw = 32767;
1016    if (!xy) maxh = minh;
1017    else maxh = 32767;
1018    evas_object_size_hint_min_set(obj, minw, minh);
1019    evas_object_size_hint_max_set(obj, maxw, maxh);
1020    evas_object_geometry_get(obj, NULL, NULL, &w, &h);
1021    if (w < minw) w = minw;
1022    if (h < minh) h = minh;
1023    if ((maxw >= 0) && (w > maxw)) w = maxw;
1024    if ((maxh >= 0) && (h > maxh)) h = maxh;
1025    evas_object_resize(obj, w, h);
1026 }
1027
1028 static void
1029 _elm_win_subobj_callback_del(void *data, Evas *e __UNUSED__, Evas_Object *obj, void *event_info __UNUSED__)
1030 {
1031    Elm_Win *win = elm_widget_data_get(data);
1032    win->subobjs = eina_list_remove(win->subobjs, obj);
1033    _elm_win_eval_subobjs(win->win_obj);
1034 }
1035
1036 static void
1037 _elm_win_subobj_callback_changed_size_hints(void *data, Evas *e __UNUSED__, Evas_Object *obj __UNUSED__, void *event_info __UNUSED__)
1038 {
1039    _elm_win_eval_subobjs(data);
1040 }
1041
1042 void
1043 _elm_win_shutdown(void)
1044 {
1045    while (_elm_win_list)
1046      evas_object_del(_elm_win_list->data);
1047 }
1048
1049 void
1050 _elm_win_rescale(Elm_Theme *th, Eina_Bool use_theme)
1051 {
1052    const Eina_List *l;
1053    Evas_Object *obj;
1054
1055    if (!use_theme)
1056      {
1057         EINA_LIST_FOREACH(_elm_win_list, l, obj)
1058           elm_widget_theme(obj);
1059      }
1060    else
1061      {
1062         EINA_LIST_FOREACH(_elm_win_list, l, obj)
1063           elm_widget_theme_specific(obj, th, EINA_FALSE);
1064      }
1065 }
1066
1067 void
1068 _elm_win_translate(void)
1069 {
1070    const Eina_List *l;
1071    Evas_Object *obj;
1072
1073    EINA_LIST_FOREACH(_elm_win_list, l, obj)
1074       elm_widget_translate(obj);
1075 }
1076
1077 #ifdef HAVE_ELEMENTARY_X
1078 static Eina_Bool
1079 _elm_win_client_message(void *data, int type __UNUSED__, void *event)
1080 {
1081    Elm_Win *win = data;
1082    Ecore_X_Event_Client_Message *e = event;
1083
1084    if (e->format != 32) return ECORE_CALLBACK_PASS_ON;
1085    if (e->message_type == ECORE_X_ATOM_E_COMP_FLUSH)
1086      {
1087         if ((unsigned)e->data.l[0] == win->xwin)
1088           {
1089              Evas *evas = evas_object_evas_get(win->win_obj);
1090              if (evas)
1091                {
1092                   edje_file_cache_flush();
1093                   edje_collection_cache_flush();
1094                   evas_image_cache_flush(evas);
1095                   evas_font_cache_flush(evas);
1096                }
1097           }
1098      }
1099    else if (e->message_type == ECORE_X_ATOM_E_COMP_DUMP)
1100      {
1101         if ((unsigned)e->data.l[0] == win->xwin)
1102           {
1103              Evas *evas = evas_object_evas_get(win->win_obj);
1104              if (evas)
1105                {
1106                   edje_file_cache_flush();
1107                   edje_collection_cache_flush();
1108                   evas_image_cache_flush(evas);
1109                   evas_font_cache_flush(evas);
1110                   evas_render_dump(evas);
1111                }
1112           }
1113      }
1114    return ECORE_CALLBACK_PASS_ON;
1115 }
1116 #endif
1117
1118 static void
1119 _elm_win_focus_target_move(void *data, Evas *e __UNUSED__, Evas_Object *obj __UNUSED__, void *event_info __UNUSED__)
1120 {
1121    Elm_Win *win = data;
1122
1123    win->focus_highlight.geometry_changed = EINA_TRUE;
1124    _elm_win_focus_highlight_reconfigure_job_start(win);
1125 }
1126
1127 static void
1128 _elm_win_focus_target_resize(void *data, Evas *e __UNUSED__, Evas_Object *obj __UNUSED__, void *event_info __UNUSED__)
1129 {
1130    Elm_Win *win = data;
1131
1132    win->focus_highlight.geometry_changed = EINA_TRUE;
1133    _elm_win_focus_highlight_reconfigure_job_start(win);
1134 }
1135
1136 static void
1137 _elm_win_focus_target_del(void *data, Evas *e __UNUSED__, Evas_Object *obj __UNUSED__, void *event_info __UNUSED__)
1138 {
1139    Elm_Win *win = data;
1140
1141    win->focus_highlight.cur.target = NULL;
1142
1143    _elm_win_focus_highlight_reconfigure_job_start(win);
1144 }
1145
1146 static void
1147 _elm_win_focus_target_callbacks_add(Elm_Win *win)
1148 {
1149    Evas_Object *obj = win->focus_highlight.cur.target;
1150
1151    evas_object_event_callback_add(obj, EVAS_CALLBACK_MOVE,
1152                                   _elm_win_focus_target_move, win);
1153    evas_object_event_callback_add(obj, EVAS_CALLBACK_RESIZE,
1154                                   _elm_win_focus_target_resize, win);
1155    evas_object_event_callback_add(obj, EVAS_CALLBACK_DEL,
1156                                   _elm_win_focus_target_del, win);
1157 }
1158
1159 static void
1160 _elm_win_focus_target_callbacks_del(Elm_Win *win)
1161 {
1162    Evas_Object *obj = win->focus_highlight.cur.target;
1163
1164    evas_object_event_callback_del_full(obj, EVAS_CALLBACK_MOVE,
1165                                        _elm_win_focus_target_move, win);
1166    evas_object_event_callback_del_full(obj, EVAS_CALLBACK_RESIZE,
1167                                        _elm_win_focus_target_resize, win);
1168    evas_object_event_callback_del_full(obj, EVAS_CALLBACK_DEL,
1169                                        _elm_win_focus_target_del, win);
1170 }
1171
1172 static Evas_Object *
1173 _elm_win_focus_target_get(Evas_Object *obj)
1174 {
1175    Evas_Object *o = obj;
1176
1177    do
1178      {
1179         if (elm_widget_is(o))
1180           {
1181              if (!elm_widget_highlight_ignore_get(o))
1182                break;
1183              o = elm_widget_parent_get(o);
1184              if (!o)
1185                o = evas_object_smart_parent_get(o);
1186           }
1187         else
1188           {
1189              o = elm_widget_parent_widget_get(o);
1190              if (!o)
1191                o = evas_object_smart_parent_get(o);
1192           }
1193      }
1194    while (o);
1195
1196    return o;
1197 }
1198
1199 static void
1200 _elm_win_object_focus_in(void *data, Evas *e __UNUSED__, void *event_info)
1201 {
1202    Evas_Object *obj = event_info, *target;
1203    Elm_Win *win = data;
1204
1205    if (win->focus_highlight.cur.target == obj)
1206      return;
1207
1208    target = _elm_win_focus_target_get(obj);
1209    win->focus_highlight.cur.target = target;
1210    if (elm_widget_highlight_in_theme_get(target))
1211      win->focus_highlight.cur.handled = EINA_TRUE;
1212    else
1213      _elm_win_focus_target_callbacks_add(win);
1214
1215    _elm_win_focus_highlight_reconfigure_job_start(win);
1216 }
1217
1218 static void
1219 _elm_win_object_focus_out(void *data, Evas *e __UNUSED__, void *event_info __UNUSED__)
1220 {
1221    Elm_Win *win = data;
1222
1223    if (!win->focus_highlight.cur.target)
1224      return;
1225
1226    if (!win->focus_highlight.cur.handled)
1227      _elm_win_focus_target_callbacks_del(win);
1228    win->focus_highlight.cur.target = NULL;
1229    win->focus_highlight.cur.handled = EINA_FALSE;
1230
1231    _elm_win_focus_highlight_reconfigure_job_start(win);
1232 }
1233
1234 static void
1235 _elm_win_focus_highlight_hide(void *data __UNUSED__, Evas_Object *obj, const char *emission __UNUSED__, const char *source __UNUSED__)
1236 {
1237    evas_object_hide(obj);
1238 }
1239
1240 static void
1241 _elm_win_focus_highlight_init(Elm_Win *win)
1242 {
1243    evas_event_callback_add(win->evas, EVAS_CALLBACK_CANVAS_OBJECT_FOCUS_IN,
1244                            _elm_win_object_focus_in, win);
1245    evas_event_callback_add(win->evas,
1246                            EVAS_CALLBACK_CANVAS_OBJECT_FOCUS_OUT,
1247                            _elm_win_object_focus_out, win);
1248
1249    win->focus_highlight.cur.target = evas_focus_get(win->evas);
1250
1251    win->focus_highlight.top = edje_object_add(win->evas);
1252    win->focus_highlight.changed_theme = EINA_TRUE;
1253    edje_object_signal_callback_add(win->focus_highlight.top,
1254                                    "elm,action,focus,hide,end", "",
1255                                    _elm_win_focus_highlight_hide, NULL);
1256    edje_object_signal_callback_add(win->focus_highlight.top,
1257                                    "elm,action,focus,anim,end", "",
1258                                    _elm_win_focus_highlight_anim_end, win);
1259    _elm_win_focus_highlight_reconfigure_job_start(win);
1260 }
1261
1262 static void
1263 _elm_win_focus_highlight_shutdown(Elm_Win *win)
1264 {
1265    _elm_win_focus_highlight_reconfigure_job_stop(win);
1266    if (win->focus_highlight.cur.target)
1267      {
1268         _elm_win_focus_target_callbacks_del(win);
1269         win->focus_highlight.cur.target = NULL;
1270      }
1271    if (win->focus_highlight.top)
1272      {
1273         evas_object_del(win->focus_highlight.top);
1274         win->focus_highlight.top = NULL;
1275      }
1276
1277    evas_event_callback_del_full(win->evas,
1278                                 EVAS_CALLBACK_CANVAS_OBJECT_FOCUS_IN,
1279                                 _elm_win_object_focus_in, win);
1280    evas_event_callback_del_full(win->evas,
1281                                 EVAS_CALLBACK_CANVAS_OBJECT_FOCUS_OUT,
1282                                 _elm_win_object_focus_out, win);
1283 }
1284
1285 static void
1286 _elm_win_focus_highlight_visible_set(Elm_Win *win, Eina_Bool visible)
1287 {
1288    Evas_Object *top;
1289
1290    top = win->focus_highlight.top;
1291    if (visible)
1292      {
1293         if (top)
1294           {
1295              evas_object_show(top);
1296              edje_object_signal_emit(top, "elm,action,focus,show", "elm");
1297           }
1298      }
1299    else
1300      {
1301         if (top)
1302           edje_object_signal_emit(top, "elm,action,focus,hide", "elm");
1303      }
1304 }
1305
1306 static void
1307 _elm_win_focus_highlight_reconfigure_job(void *data)
1308 {
1309    _elm_win_focus_highlight_reconfigure((Elm_Win *)data);
1310 }
1311
1312 static void
1313 _elm_win_focus_highlight_reconfigure_job_start(Elm_Win *win)
1314 {
1315    if (win->focus_highlight.reconf_job)
1316      ecore_job_del(win->focus_highlight.reconf_job);
1317    win->focus_highlight.reconf_job = ecore_job_add(
1318       _elm_win_focus_highlight_reconfigure_job, win);
1319 }
1320
1321 static void
1322 _elm_win_focus_highlight_reconfigure_job_stop(Elm_Win *win)
1323 {
1324    if (win->focus_highlight.reconf_job)
1325      ecore_job_del(win->focus_highlight.reconf_job);
1326    win->focus_highlight.reconf_job = NULL;
1327 }
1328
1329 static void
1330 _elm_win_focus_highlight_simple_setup(Elm_Win *win, Evas_Object *obj)
1331 {
1332    Evas_Object *clip, *target = win->focus_highlight.cur.target;
1333    Evas_Coord x, y, w, h;
1334
1335    clip = evas_object_clip_get(target);
1336    evas_object_geometry_get(target, &x, &y, &w, &h);
1337
1338    evas_object_move(obj, x, y);
1339    evas_object_resize(obj, w, h);
1340    evas_object_clip_set(obj, clip);
1341 }
1342
1343 static void
1344 _elm_win_focus_highlight_anim_setup(Elm_Win *win, Evas_Object *obj)
1345 {
1346    Evas_Coord tx, ty, tw, th;
1347    Evas_Coord w, h, px, py, pw, ph;
1348    Edje_Message_Int_Set *m;
1349    Evas_Object *previous = win->focus_highlight.prev.target;
1350    Evas_Object *target = win->focus_highlight.cur.target;
1351
1352    evas_object_geometry_get(win->win_obj, NULL, NULL, &w, &h);
1353    evas_object_geometry_get(target, &tx, &ty, &tw, &th);
1354    evas_object_geometry_get(previous, &px, &py, &pw, &ph);
1355    evas_object_move(obj, 0, 0);
1356    evas_object_resize(obj, tw, th);
1357    evas_object_clip_unset(obj);
1358
1359    m = alloca(sizeof(*m) + (sizeof(int) * 8));
1360    m->count = 8;
1361    m->val[0] = px;
1362    m->val[1] = py;
1363    m->val[2] = pw;
1364    m->val[3] = ph;
1365    m->val[4] = tx;
1366    m->val[5] = ty;
1367    m->val[6] = tw;
1368    m->val[7] = th;
1369    edje_object_message_send(obj, EDJE_MESSAGE_INT_SET, 1, m);
1370 }
1371
1372 static void
1373 _elm_win_focus_highlight_anim_end(void *data, Evas_Object *obj, const char *emission __UNUSED__, const char *source __UNUSED__)
1374 {
1375    Elm_Win *win = data;
1376    _elm_win_focus_highlight_simple_setup(win, obj);
1377 }
1378
1379 static void
1380 _elm_win_focus_highlight_reconfigure(Elm_Win *win)
1381 {
1382    Evas_Object *target = win->focus_highlight.cur.target;
1383    Evas_Object *previous = win->focus_highlight.prev.target;
1384    Evas_Object *top = win->focus_highlight.top;
1385    Eina_Bool visible_changed;
1386    Eina_Bool common_visible;
1387    const char *sig = NULL;
1388
1389    _elm_win_focus_highlight_reconfigure_job_stop(win);
1390
1391    visible_changed = (win->focus_highlight.cur.visible !=
1392                       win->focus_highlight.prev.visible);
1393
1394    if ((target == previous) && (!visible_changed) &&
1395        (!win->focus_highlight.geometry_changed))
1396      return;
1397
1398    if ((previous) && (win->focus_highlight.prev.handled))
1399      elm_widget_signal_emit(previous, "elm,action,focus_highlight,hide", "elm");
1400
1401    if (!target)
1402      common_visible = EINA_FALSE;
1403    else if (win->focus_highlight.cur.handled)
1404      {
1405         common_visible = EINA_FALSE;
1406         if (win->focus_highlight.cur.visible)
1407           sig = "elm,action,focus_highlight,show";
1408         else
1409           sig = "elm,action,focus_highlight,hide";
1410      }
1411    else
1412      common_visible = win->focus_highlight.cur.visible;
1413
1414    _elm_win_focus_highlight_visible_set(win, common_visible);
1415    if (sig)
1416      elm_widget_signal_emit(target, sig, "elm");
1417
1418    if ((!target) || (!common_visible) || (win->focus_highlight.cur.handled))
1419      goto the_end;
1420
1421    if (win->focus_highlight.changed_theme)
1422      {
1423         const char *str;
1424         if (win->focus_highlight.style)
1425           str = win->focus_highlight.style;
1426         else
1427           str = "default";
1428         _elm_theme_object_set(win->win_obj, top, "focus_highlight", "top",
1429                               str);
1430         win->focus_highlight.changed_theme = EINA_FALSE;
1431
1432         if (_elm_config->focus_highlight_animate)
1433           {
1434              str = edje_object_data_get(win->focus_highlight.top, "animate");
1435              win->focus_highlight.top_animate = ((str) && (!strcmp(str, "on")));
1436           }
1437      }
1438
1439    if ((win->focus_highlight.top_animate) && (previous) &&
1440        (!win->focus_highlight.prev.handled))
1441      _elm_win_focus_highlight_anim_setup(win, top);
1442    else
1443      _elm_win_focus_highlight_simple_setup(win, top);
1444    evas_object_raise(top);
1445
1446 the_end:
1447    win->focus_highlight.geometry_changed = EINA_FALSE;
1448    win->focus_highlight.prev = win->focus_highlight.cur;
1449 }
1450
1451 static void 
1452 _elm_win_frame_add(Elm_Win *win, const char *style)
1453 {
1454    evas_output_framespace_set(win->evas, 0, 22, 0, 26);
1455
1456    win->frame_obj = edje_object_add(win->evas);
1457    _elm_theme_set(NULL, win->frame_obj, "border", "base", style);
1458    evas_object_is_frame_object_set(win->frame_obj, EINA_TRUE);
1459    evas_object_move(win->frame_obj, 0, 0);
1460    evas_object_resize(win->frame_obj, 1, 1);
1461
1462    edje_object_signal_callback_add(win->frame_obj, "elm,action,move,start", 
1463                                    "elm", _elm_win_frame_cb_move_start, win);
1464    edje_object_signal_callback_add(win->frame_obj, "elm,action,resize,start", 
1465                                    "*", _elm_win_frame_cb_resize_start, win);
1466    edje_object_signal_callback_add(win->frame_obj, "elm,action,minimize", 
1467                                    "elm", _elm_win_frame_cb_minimize, win);
1468    edje_object_signal_callback_add(win->frame_obj, "elm,action,maximize", 
1469                                    "elm", _elm_win_frame_cb_maximize, win);
1470    edje_object_signal_callback_add(win->frame_obj, "elm,action,close", 
1471                                    "elm", _elm_win_frame_cb_close, win);
1472 }
1473
1474 static void 
1475 _elm_win_frame_cb_move_start(void *data, Evas_Object *obj __UNUSED__, const char *sig __UNUSED__, const char *source __UNUSED__)
1476 {
1477    Elm_Win *win;
1478
1479    if (!(win = data)) return;
1480    /* FIXME: Change mouse pointer */
1481
1482    /* NB: 0,0 are dummy values. Wayland handles the move by itself */
1483    ecore_evas_move(win->ee, 0, 0);
1484 }
1485
1486 static void 
1487 _elm_win_frame_cb_resize_start(void *data, Evas_Object *obj __UNUSED__, const char *sig __UNUSED__, const char *source)
1488 {
1489    Elm_Win *win;
1490
1491    if (!(win = data)) return;
1492    if (win->resizing) return;
1493    win->resizing = EINA_TRUE;
1494
1495    /* FIXME: Change mouse pointer */
1496
1497    if (!strcmp(source, "elm.event.resize.t"))
1498      win->resize_location = 1;
1499    else if (!strcmp(source, "elm.event.resize.b"))
1500      win->resize_location = 2;
1501    else if (!strcmp(source, "elm.event.resize.l"))
1502      win->resize_location = 4;
1503    else if (!strcmp(source, "elm.event.resize.r"))
1504      win->resize_location = 8;
1505    else if (!strcmp(source, "elm.event.resize.tl"))
1506      win->resize_location = 5;
1507    else if (!strcmp(source, "elm.event.resize.tr"))
1508      win->resize_location = 9;
1509    else if (!strcmp(source, "elm.event.resize.bl"))
1510      win->resize_location = 6;
1511    else if (!strcmp(source, "elm.event.resize.br"))
1512      win->resize_location = 10;
1513    else
1514      win->resize_location = 0;
1515
1516    if (win->resize_location > 0)
1517      ecore_evas_wayland_resize(win->ee, win->resize_location);
1518 }
1519
1520 static void 
1521 _elm_win_frame_cb_minimize(void *data, Evas_Object *obj __UNUSED__, const char *sig __UNUSED__, const char *source __UNUSED__)
1522 {
1523    Elm_Win *win;
1524
1525    if (!(win = data)) return;
1526    win->iconified = EINA_TRUE;
1527    ecore_evas_iconified_set(win->ee, EINA_TRUE);
1528 }
1529
1530 static void 
1531 _elm_win_frame_cb_maximize(void *data, Evas_Object *obj __UNUSED__, const char *sig __UNUSED__, const char *source __UNUSED__)
1532 {
1533    Elm_Win *win;
1534
1535    if (!(win = data)) return;
1536    if (win->maximized) win->maximized = EINA_FALSE;
1537    else win->maximized = EINA_TRUE;
1538    ecore_evas_maximized_set(win->ee, win->maximized);
1539 }
1540
1541 static void 
1542 _elm_win_frame_cb_close(void *data, Evas_Object *obj __UNUSED__, const char *sig __UNUSED__, const char *source __UNUSED__)
1543 {
1544    Elm_Win *win;
1545
1546    if (!(win = data)) return;
1547    evas_object_del(win->win_obj);
1548 }
1549
1550 static void 
1551 _elm_win_pointer_add(Elm_Win *win, const char *style)
1552 {
1553    int mw, mh;
1554
1555    return;
1556
1557    win->pointer.ee = ecore_evas_wayland_shm_new(NULL, 0, 0, 0, 32, 32, 0);
1558    ecore_evas_resize(win->pointer.ee, 32, 32);
1559
1560    win->pointer.evas = ecore_evas_get(win->ee);
1561
1562    win->pointer.obj = edje_object_add(win->pointer.evas);
1563    _elm_theme_set(NULL, win->pointer.obj, "pointer", "base", style);
1564    edje_object_size_min_calc(win->pointer.obj, &mw, &mh);
1565    evas_object_move(win->pointer.obj, 0, 0);
1566    evas_object_resize(win->pointer.obj, 32, 32);
1567    evas_object_show(win->pointer.obj);
1568 }
1569
1570 #ifdef ELM_DEBUG
1571 static void
1572 _debug_key_down(void *data __UNUSED__, Evas *e __UNUSED__, Evas_Object *obj, void *event_info)
1573 {
1574    Evas_Event_Key_Down *ev = event_info;
1575
1576    if (ev->event_flags & EVAS_EVENT_FLAG_ON_HOLD)
1577      return;
1578
1579    if ((strcmp(ev->keyname, "F12")) ||
1580        (!evas_key_modifier_is_set(ev->modifiers, "Control")))
1581      return;
1582
1583    printf("Tree graph generated.\n");
1584    elm_object_tree_dot_dump(obj, "./dump.dot");
1585 }
1586 #endif
1587
1588 static void
1589 _win_img_hide(void        *data,
1590               Evas        *e __UNUSED__,
1591               Evas_Object *obj __UNUSED__,
1592               void        *event_info __UNUSED__)
1593 {
1594    Elm_Win *win = data;
1595
1596    elm_widget_focus_hide_handle(win->win_obj);
1597 }
1598
1599 static void
1600 _win_img_mouse_up(void        *data,
1601                   Evas        *e __UNUSED__,
1602                   Evas_Object *obj __UNUSED__,
1603                   void        *event_info)
1604 {
1605    Elm_Win *win = data;
1606    Evas_Event_Mouse_Up *ev = event_info;
1607    if (!(ev->event_flags & EVAS_EVENT_FLAG_ON_HOLD))
1608       elm_widget_focus_mouse_up_handle(win->win_obj);
1609 }
1610
1611 static void
1612 _win_img_focus_in(void        *data,
1613                   Evas        *e __UNUSED__,
1614                   Evas_Object *obj __UNUSED__,
1615                   void        *event_info __UNUSED__)
1616 {
1617    Elm_Win *win = data;
1618    elm_widget_focus_steal(win->win_obj);
1619 }
1620
1621 static void
1622 _win_img_focus_out(void        *data,
1623                    Evas        *e __UNUSED__,
1624                    Evas_Object *obj __UNUSED__,
1625                    void        *event_info __UNUSED__)
1626 {
1627    Elm_Win *win = data;
1628    elm_widget_focused_object_clear(win->win_obj);
1629 }
1630
1631 static void
1632 _win_inlined_image_set(Elm_Win *win)
1633 {
1634    evas_object_image_alpha_set(win->img_obj, EINA_FALSE);
1635    evas_object_image_filled_set(win->img_obj, EINA_TRUE);
1636    evas_object_event_callback_add(win->img_obj, EVAS_CALLBACK_DEL,
1637                                   _elm_win_obj_callback_img_obj_del, win);
1638
1639    evas_object_event_callback_add(win->img_obj, EVAS_CALLBACK_HIDE,
1640                                   _win_img_hide, win);
1641    evas_object_event_callback_add(win->img_obj, EVAS_CALLBACK_MOUSE_UP,
1642                                   _win_img_mouse_up, win);
1643    evas_object_event_callback_add(win->img_obj, EVAS_CALLBACK_FOCUS_IN,
1644                                   _win_img_focus_in, win);
1645    evas_object_event_callback_add(win->img_obj, EVAS_CALLBACK_FOCUS_OUT,
1646                                   _win_img_focus_out, win);
1647 }
1648
1649 static void
1650 _subobj_del(Elm_Win *win, Evas_Object *obj, Evas_Object *subobj)
1651 {
1652    evas_object_event_callback_del_full(subobj,
1653                                        EVAS_CALLBACK_CHANGED_SIZE_HINTS,
1654                                        _elm_win_subobj_callback_changed_size_hints,
1655                                        obj);
1656    evas_object_event_callback_del_full(subobj, EVAS_CALLBACK_DEL,
1657                                        _elm_win_subobj_callback_del, obj);
1658    win->subobjs = eina_list_remove(win->subobjs, subobj);
1659    _elm_win_eval_subobjs(obj);
1660 }
1661
1662 EAPI Evas_Object *
1663 elm_win_add(Evas_Object *parent, const char *name, Elm_Win_Type type)
1664 {
1665    Elm_Win *win;
1666    const Eina_List *l;
1667    const char *fontpath;
1668
1669    win = ELM_NEW(Elm_Win);
1670
1671 #define FALLBACK_TRY(engine)                                            \
1672    if (!win->ee)                                                        \
1673       do {                                                              \
1674          CRITICAL(engine " engine creation failed. Trying default.");   \
1675          win->ee = ecore_evas_new(NULL, 0, 0, 1, 1, NULL);              \
1676          if (win->ee)                                                   \
1677             elm_engine_set(ecore_evas_engine_name_get(win->ee));        \
1678    } while (0)
1679 #define ENGINE_COMPARE(name) (_elm_config->engine && !strcmp(_elm_config->engine, name))
1680
1681    win->kbdmode = ELM_WIN_KEYBOARD_UNKNOWN;
1682    win->indmode = ELM_WIN_INDICATOR_UNKNOWN;
1683    
1684    switch (type)
1685      {
1686       case ELM_WIN_INLINED_IMAGE:
1687         if (!parent) break;
1688         {
1689            Evas *e = evas_object_evas_get(parent);
1690            Ecore_Evas *ee;
1691            if (!e) break;
1692            ee = ecore_evas_ecore_evas_get(e);
1693            if (!ee) break;
1694            win->img_obj = ecore_evas_object_image_new(ee);
1695            if (!win->img_obj) break;
1696            win->ee = ecore_evas_object_ecore_evas_get(win->img_obj);
1697            if (win->ee)
1698              {
1699                 _win_inlined_image_set(win);
1700                 break;
1701              }
1702            evas_object_del(win->img_obj);
1703            win->img_obj = NULL;
1704         }
1705         break;
1706
1707       case ELM_WIN_SOCKET_IMAGE:
1708         win->ee = ecore_evas_extn_socket_new(1, 1);
1709         break;
1710
1711       default:
1712         if (ENGINE_COMPARE(ELM_SOFTWARE_X11))
1713           {
1714              win->ee = ecore_evas_software_x11_new(NULL, 0, 0, 0, 1, 1);
1715 #ifdef HAVE_ELEMENTARY_X
1716              win->client_message_handler = ecore_event_handler_add
1717                 (ECORE_X_EVENT_CLIENT_MESSAGE, _elm_win_client_message, win);
1718 #endif
1719              FALLBACK_TRY("Sofware X11");
1720           }
1721         else if (ENGINE_COMPARE(ELM_SOFTWARE_FB))
1722           {
1723              win->ee = ecore_evas_fb_new(NULL, 0, 1, 1);
1724              FALLBACK_TRY("Sofware FB");
1725           }
1726         else if (ENGINE_COMPARE(ELM_SOFTWARE_DIRECTFB))
1727           {
1728              win->ee = ecore_evas_directfb_new(NULL, 1, 0, 0, 1, 1);
1729              FALLBACK_TRY("Sofware DirectFB");
1730           }
1731         else if (ENGINE_COMPARE(ELM_SOFTWARE_16_X11))
1732           {
1733              win->ee = ecore_evas_software_x11_16_new(NULL, 0, 0, 0, 1, 1);
1734              FALLBACK_TRY("Sofware-16");
1735 #ifdef HAVE_ELEMENTARY_X
1736              win->client_message_handler = ecore_event_handler_add
1737                 (ECORE_X_EVENT_CLIENT_MESSAGE, _elm_win_client_message, win);
1738 #endif
1739      }
1740         else if (ENGINE_COMPARE(ELM_SOFTWARE_8_X11))
1741           {
1742              win->ee = ecore_evas_software_x11_8_new(NULL, 0, 0, 0, 1, 1);
1743              FALLBACK_TRY("Sofware-8");
1744 #ifdef HAVE_ELEMENTARY_X
1745              win->client_message_handler = ecore_event_handler_add
1746                 (ECORE_X_EVENT_CLIENT_MESSAGE, _elm_win_client_message, win);
1747 #endif
1748           }
1749 /* killed
1750         else if (ENGINE_COMPARE(ELM_XRENDER_X11))
1751           {
1752              win->ee = ecore_evas_xrender_x11_new(NULL, 0, 0, 0, 1, 1);
1753              FALLBACK_TRY("XRender");
1754 #ifdef HAVE_ELEMENTARY_X
1755              win->client_message_handler = ecore_event_handler_add
1756                 (ECORE_X_EVENT_CLIENT_MESSAGE, _elm_win_client_message, win);
1757 #endif
1758           }
1759  */
1760         else if (ENGINE_COMPARE(ELM_OPENGL_X11))
1761           {
1762              int opt[10];
1763              int opt_i = 0;
1764
1765              if (_elm_config->vsync)
1766                {
1767                   opt[opt_i] = ECORE_EVAS_GL_X11_OPT_VSYNC;
1768                   opt_i++;
1769                   opt[opt_i] = 1;
1770                   opt_i++;
1771                }
1772              if (opt_i > 0)
1773                 win->ee = ecore_evas_gl_x11_options_new(NULL, 0, 0, 0, 1, 1, opt);
1774              else
1775                 win->ee = ecore_evas_gl_x11_new(NULL, 0, 0, 0, 1, 1);
1776              FALLBACK_TRY("OpenGL");
1777 #ifdef HAVE_ELEMENTARY_X
1778              win->client_message_handler = ecore_event_handler_add
1779                 (ECORE_X_EVENT_CLIENT_MESSAGE, _elm_win_client_message, win);
1780 #endif
1781           }
1782         else if (ENGINE_COMPARE(ELM_SOFTWARE_WIN32))
1783           {
1784              win->ee = ecore_evas_software_gdi_new(NULL, 0, 0, 1, 1);
1785              FALLBACK_TRY("Sofware Win32");
1786           }
1787         else if (ENGINE_COMPARE(ELM_SOFTWARE_16_WINCE))
1788           {
1789              win->ee = ecore_evas_software_wince_gdi_new(NULL, 0, 0, 1, 1);
1790              FALLBACK_TRY("Sofware-16-WinCE");
1791           }
1792         else if (ENGINE_COMPARE(ELM_SOFTWARE_PSL1GHT))
1793           {
1794              win->ee = ecore_evas_psl1ght_new(NULL, 1, 1);
1795              FALLBACK_TRY("PSL1GHT");
1796           }
1797         else if (ENGINE_COMPARE(ELM_SOFTWARE_SDL))
1798           {
1799              win->ee = ecore_evas_sdl_new(NULL, 0, 0, 0, 0, 0, 1);
1800              FALLBACK_TRY("Sofware SDL");
1801           }
1802         else if (ENGINE_COMPARE(ELM_SOFTWARE_16_SDL))
1803           {
1804              win->ee = ecore_evas_sdl16_new(NULL, 0, 0, 0, 0, 0, 1);
1805              FALLBACK_TRY("Sofware-16-SDL");
1806           }
1807         else if (ENGINE_COMPARE(ELM_OPENGL_SDL))
1808           {
1809              win->ee = ecore_evas_gl_sdl_new(NULL, 1, 1, 0, 0);
1810              FALLBACK_TRY("OpenGL SDL");
1811           }
1812         else if (ENGINE_COMPARE(ELM_OPENGL_COCOA))
1813           {
1814              win->ee = ecore_evas_cocoa_new(NULL, 1, 1, 0, 0);
1815              FALLBACK_TRY("OpenGL Cocoa");
1816           }
1817         else if (ENGINE_COMPARE(ELM_BUFFER))
1818           {
1819              win->ee = ecore_evas_buffer_new(1, 1);
1820           }
1821         else if (ENGINE_COMPARE(ELM_EWS))
1822           {
1823              win->ee = ecore_evas_ews_new(0, 0, 1, 1);
1824           }
1825         else if (ENGINE_COMPARE(ELM_WAYLAND_SHM)) 
1826           {
1827              win->ee = ecore_evas_wayland_shm_new(NULL, 0, 0, 0, 1, 1, 0);
1828              win->evas = ecore_evas_get(win->ee);
1829
1830              _elm_win_frame_add(win, "default");
1831 //             _elm_win_pointer_add(win, "default");
1832           }
1833         else if (ENGINE_COMPARE(ELM_WAYLAND_EGL)) 
1834           {
1835              win->ee = ecore_evas_wayland_egl_new(NULL, 0, 0, 0, 1, 1, 0);
1836              win->evas = ecore_evas_get(win->ee);
1837
1838              _elm_win_frame_add(win, "default");
1839 //             _elm_win_pointer_add(win, "default");
1840           }
1841         else if (!strncmp(_elm_config->engine, "shot:", 5))
1842           {
1843              win->ee = ecore_evas_buffer_new(1, 1);
1844              ecore_evas_manual_render_set(win->ee, EINA_TRUE);
1845              win->shot.info = eina_stringshare_add(_elm_config->engine + 5);
1846              _shot_init(win);
1847           }
1848 #undef FALLBACK_TRY
1849         break;
1850      }
1851
1852    if (!win->ee)
1853      {
1854         ERR("Cannot create window.");
1855         free(win);
1856         return NULL;
1857      }
1858 #ifdef HAVE_ELEMENTARY_X
1859    _elm_win_xwindow_get(win);
1860 #endif
1861    if ((_elm_config->bgpixmap) && (!_elm_config->compositing))
1862      ecore_evas_avoid_damage_set(win->ee, ECORE_EVAS_AVOID_DAMAGE_EXPOSE);
1863    // bg pixmap done by x - has other issues like can be redrawn by x before it
1864    // is filled/ready by app
1865    //     ecore_evas_avoid_damage_set(win->ee, ECORE_EVAS_AVOID_DAMAGE_BUILT_IN);
1866
1867    win->type = type;
1868    win->parent = parent;
1869    if (win->parent)
1870      evas_object_event_callback_add(win->parent, EVAS_CALLBACK_DEL,
1871                                     _elm_win_obj_callback_parent_del, win);
1872
1873    win->evas = ecore_evas_get(win->ee);
1874    win->win_obj = elm_widget_add(win->evas);
1875    elm_widget_type_set(win->win_obj, "win");
1876    ELM_SET_WIDTYPE(widtype, "win");
1877    elm_widget_data_set(win->win_obj, win);
1878    elm_widget_event_hook_set(win->win_obj, _elm_win_event_cb);
1879    elm_widget_on_focus_hook_set(win->win_obj, _elm_win_on_focus_hook, NULL);
1880    elm_widget_can_focus_set(win->win_obj, EINA_TRUE);
1881    elm_widget_highlight_ignore_set(win->win_obj, EINA_TRUE);
1882    elm_widget_focus_next_hook_set(win->win_obj, _elm_win_focus_next_hook);
1883    evas_object_color_set(win->win_obj, 0, 0, 0, 0);
1884    evas_object_move(win->win_obj, 0, 0);
1885    evas_object_resize(win->win_obj, 1, 1);
1886    evas_object_layer_set(win->win_obj, 50);
1887    evas_object_pass_events_set(win->win_obj, EINA_TRUE);
1888
1889    if (win->frame_obj) 
1890      {
1891         evas_object_clip_set(win->win_obj, win->frame_obj);
1892         evas_object_stack_below(win->frame_obj, win->win_obj);
1893      }
1894
1895    if (type == ELM_WIN_INLINED_IMAGE)
1896      elm_widget_parent2_set(win->win_obj, parent);
1897    ecore_evas_object_associate(win->ee, win->win_obj,
1898                                ECORE_EVAS_OBJECT_ASSOCIATE_BASE |
1899                                ECORE_EVAS_OBJECT_ASSOCIATE_STACK |
1900                                ECORE_EVAS_OBJECT_ASSOCIATE_LAYER);
1901    evas_object_event_callback_add(win->win_obj, EVAS_CALLBACK_SHOW,
1902                                   _elm_win_obj_callback_show, win);
1903    evas_object_event_callback_add(win->win_obj, EVAS_CALLBACK_HIDE,
1904                                   _elm_win_obj_callback_hide, win);
1905    evas_object_event_callback_add(win->win_obj, EVAS_CALLBACK_DEL,
1906                                   _elm_win_obj_callback_del, win);
1907    evas_object_event_callback_add(win->win_obj, EVAS_CALLBACK_MOVE,
1908                                   _elm_win_obj_callback_move, win);
1909    evas_object_event_callback_add(win->win_obj, EVAS_CALLBACK_RESIZE,
1910                                   _elm_win_obj_callback_resize, win);
1911    if (win->img_obj)
1912      evas_object_intercept_move_callback_add(win->win_obj,
1913                                              _elm_win_obj_intercept_move, win);
1914    evas_object_intercept_show_callback_add(win->win_obj,
1915                                            _elm_win_obj_intercept_show, win);
1916
1917    evas_object_smart_callback_add(win->win_obj, "sub-object-del", (Evas_Smart_Cb)_subobj_del, win);
1918    ecore_evas_name_class_set(win->ee, name, _elm_appname);
1919    ecore_evas_callback_delete_request_set(win->ee, _elm_win_delete_request);
1920    ecore_evas_callback_resize_set(win->ee, _elm_win_resize);
1921    ecore_evas_callback_mouse_in_set(win->ee, _elm_win_mouse_in);
1922    ecore_evas_callback_focus_in_set(win->ee, _elm_win_focus_in);
1923    ecore_evas_callback_focus_out_set(win->ee, _elm_win_focus_out);
1924    ecore_evas_callback_move_set(win->ee, _elm_win_move);
1925    ecore_evas_callback_state_change_set(win->ee, _elm_win_state_change);
1926    evas_image_cache_set(win->evas, (_elm_config->image_cache * 1024));
1927    evas_font_cache_set(win->evas, (_elm_config->font_cache * 1024));
1928    EINA_LIST_FOREACH(_elm_config->font_dirs, l, fontpath)
1929      evas_font_path_append(win->evas, fontpath);
1930    if (!_elm_config->font_hinting)
1931      evas_font_hinting_set(win->evas, EVAS_FONT_HINTING_NONE);
1932    else if (_elm_config->font_hinting == 1)
1933      evas_font_hinting_set(win->evas, EVAS_FONT_HINTING_AUTO);
1934    else if (_elm_config->font_hinting == 2)
1935      evas_font_hinting_set(win->evas, EVAS_FONT_HINTING_BYTECODE);
1936
1937 #ifdef HAVE_ELEMENTARY_X
1938    _elm_win_xwin_update(win);
1939 #endif
1940
1941    _elm_win_list = eina_list_append(_elm_win_list, win->win_obj);
1942
1943    if (ENGINE_COMPARE(ELM_SOFTWARE_FB))
1944      {
1945         ecore_evas_fullscreen_set(win->ee, 1);
1946      }
1947 #undef ENGINE_COMPARE
1948
1949    if (_elm_config->focus_highlight_enable)
1950      elm_win_focus_highlight_enabled_set(win->win_obj, EINA_TRUE);
1951
1952 #ifdef ELM_DEBUG
1953    Evas_Modifier_Mask mask = evas_key_modifier_mask_get(win->evas, "Control");
1954    evas_object_event_callback_add(win->win_obj, EVAS_CALLBACK_KEY_DOWN,
1955                                   _debug_key_down, win);
1956
1957    Eina_Bool ret = evas_object_key_grab(win->win_obj, "F12", mask, 0,
1958                                         EINA_TRUE);
1959    printf("Ctrl+F12 key combination exclusive for dot tree generation\n");
1960 #endif
1961
1962    evas_object_smart_callbacks_descriptions_set(win->win_obj, _signals);
1963
1964    return win->win_obj;
1965 }
1966
1967 EAPI Evas_Object *
1968 elm_win_util_standard_add(const char *name, const char *title)
1969 {
1970    Evas_Object *win, *bg;
1971
1972    win = elm_win_add(NULL, name, ELM_WIN_BASIC);
1973    if (!win) return NULL;
1974    elm_win_title_set(win, title);
1975    bg = elm_bg_add(win);
1976    if (!bg)
1977      {
1978         evas_object_del(win);
1979         return NULL;
1980      }
1981    evas_object_size_hint_weight_set(bg, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND);
1982    elm_win_resize_object_add(win, bg);
1983    evas_object_show(bg);
1984    return win;
1985 }
1986
1987 EAPI void
1988 elm_win_resize_object_add(Evas_Object *obj, Evas_Object *subobj)
1989 {
1990    Evas_Coord w, h;
1991    Elm_Win *win;
1992    ELM_CHECK_WIDTYPE(obj, widtype);
1993    win = elm_widget_data_get(obj);
1994    if (!win) return;
1995    if (eina_list_data_find(win->subobjs, subobj)) return;
1996    win->subobjs = eina_list_append(win->subobjs, subobj);
1997    elm_widget_sub_object_add(obj, subobj);
1998    evas_object_event_callback_add(subobj, EVAS_CALLBACK_DEL,
1999                                   _elm_win_subobj_callback_del, obj);
2000    evas_object_event_callback_add(subobj, EVAS_CALLBACK_CHANGED_SIZE_HINTS,
2001                                   _elm_win_subobj_callback_changed_size_hints,
2002                                   obj);
2003    evas_object_geometry_get(obj, NULL, NULL, &w, &h);
2004    evas_object_move(subobj, 0, 0);
2005    evas_object_resize(subobj, w, h);
2006    _elm_win_eval_subobjs(obj);
2007 }
2008
2009 EAPI void
2010 elm_win_resize_object_del(Evas_Object *obj, Evas_Object *subobj)
2011 {
2012    Elm_Win *win;
2013    ELM_CHECK_WIDTYPE(obj, widtype);
2014    win = elm_widget_data_get(obj);
2015    if (!win) return;
2016    evas_object_event_callback_del_full(subobj,
2017                                        EVAS_CALLBACK_CHANGED_SIZE_HINTS,
2018                                        _elm_win_subobj_callback_changed_size_hints,
2019                                        obj);
2020    evas_object_event_callback_del_full(subobj, EVAS_CALLBACK_DEL,
2021                                        _elm_win_subobj_callback_del, obj);
2022    win->subobjs = eina_list_remove(win->subobjs, subobj);
2023    elm_widget_sub_object_del(obj, subobj);
2024    _elm_win_eval_subobjs(obj);
2025 }
2026
2027 EAPI void
2028 elm_win_title_set(Evas_Object *obj, const char *title)
2029 {
2030    Elm_Win *win;
2031    ELM_CHECK_WIDTYPE(obj, widtype);
2032    win = elm_widget_data_get(obj);
2033    if (!win || !title) return;
2034    ecore_evas_title_set(win->ee, title);
2035    if (win->frame_obj)
2036      edje_object_part_text_set(win->frame_obj, "elm.text.title", title);
2037 }
2038
2039 EAPI const char *
2040 elm_win_title_get(const Evas_Object *obj)
2041 {
2042    Elm_Win *win;
2043    ELM_CHECK_WIDTYPE(obj, widtype) NULL;
2044    win = elm_widget_data_get(obj);
2045    if (!win) return NULL;
2046    return ecore_evas_title_get(win->ee);
2047 }
2048
2049 EAPI void
2050 elm_win_autodel_set(Evas_Object *obj, Eina_Bool autodel)
2051 {
2052    Elm_Win *win;
2053    ELM_CHECK_WIDTYPE(obj, widtype);
2054    win = elm_widget_data_get(obj);
2055    if (!win) return;
2056    win->autodel = autodel;
2057 }
2058
2059 EAPI Eina_Bool
2060 elm_win_autodel_get(const Evas_Object *obj)
2061 {
2062    Elm_Win *win;
2063    ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
2064    win = elm_widget_data_get(obj);
2065    if (!win) return EINA_FALSE;
2066    return win->autodel;
2067 }
2068
2069 EAPI void
2070 elm_win_activate(Evas_Object *obj)
2071 {
2072    Elm_Win *win;
2073    ELM_CHECK_WIDTYPE(obj, widtype);
2074    win = elm_widget_data_get(obj);
2075    if (!win) return;
2076    ecore_evas_activate(win->ee);
2077 }
2078
2079 EAPI void
2080 elm_win_lower(Evas_Object *obj)
2081 {
2082    Elm_Win *win;
2083    ELM_CHECK_WIDTYPE(obj, widtype);
2084    win = elm_widget_data_get(obj);
2085    if (!win) return;
2086    ecore_evas_lower(win->ee);
2087 }
2088
2089 EAPI void
2090 elm_win_raise(Evas_Object *obj)
2091 {
2092    Elm_Win *win;
2093    ELM_CHECK_WIDTYPE(obj, widtype);
2094    win = elm_widget_data_get(obj);
2095    if (!win) return;
2096    ecore_evas_raise(win->ee);
2097 }
2098
2099 EAPI void
2100 elm_win_center(Evas_Object *obj, Eina_Bool h, Eina_Bool v)
2101 {
2102    Elm_Win *win;
2103    int win_w, win_h, screen_w, screen_h, nx, ny;
2104    ELM_CHECK_WIDTYPE(obj, widtype);
2105    win = elm_widget_data_get(obj);
2106    if (!win) return;
2107    ecore_evas_screen_geometry_get(win->ee, NULL, NULL, &screen_w, &screen_h);
2108    if ((!screen_w) || (!screen_h)) return;
2109    evas_object_geometry_get(obj, NULL, NULL, &win_w, &win_h);
2110    if ((!win_w) || (!win_h)) return;
2111    if (h) nx = win_w >= screen_w ? 0 : (screen_w / 2) - (win_w / 2);
2112    else nx = win->screen.x;
2113    if (v) ny = win_h >= screen_h ? 0 : (screen_h / 2) - (win_h / 2);
2114    else ny = win->screen.y;
2115    if (nx < 0) nx = 0;
2116    if (ny < 0) ny = 0;
2117    evas_object_move(obj, nx, ny);
2118 }
2119
2120 EAPI void
2121 elm_win_borderless_set(Evas_Object *obj, Eina_Bool borderless)
2122 {
2123    Elm_Win *win;
2124    ELM_CHECK_WIDTYPE(obj, widtype);
2125    win = elm_widget_data_get(obj);
2126    if (!win) return;
2127    ecore_evas_borderless_set(win->ee, borderless);
2128 #ifdef HAVE_ELEMENTARY_X
2129    _elm_win_xwin_update(win);
2130 #endif
2131 }
2132
2133 EAPI Eina_Bool
2134 elm_win_borderless_get(const Evas_Object *obj)
2135 {
2136    Elm_Win *win;
2137    ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
2138    win = elm_widget_data_get(obj);
2139    if (!win) return EINA_FALSE;
2140    return ecore_evas_borderless_get(win->ee);
2141 }
2142
2143 EAPI void
2144 elm_win_shaped_set(Evas_Object *obj, Eina_Bool shaped)
2145 {
2146    Elm_Win *win;
2147    ELM_CHECK_WIDTYPE(obj, widtype);
2148    win = elm_widget_data_get(obj);
2149    if (!win) return;
2150    ecore_evas_shaped_set(win->ee, shaped);
2151 #ifdef HAVE_ELEMENTARY_X
2152    _elm_win_xwin_update(win);
2153 #endif
2154 }
2155
2156 EAPI Eina_Bool
2157 elm_win_shaped_get(const Evas_Object *obj)
2158 {
2159    Elm_Win *win;
2160    ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
2161    win = elm_widget_data_get(obj);
2162    if (!win) return EINA_FALSE;
2163    return ecore_evas_shaped_get(win->ee);
2164 }
2165
2166 EAPI void
2167 elm_win_alpha_set(Evas_Object *obj, Eina_Bool alpha)
2168 {
2169    Elm_Win *win;
2170    ELM_CHECK_WIDTYPE(obj, widtype);
2171    win = elm_widget_data_get(obj);
2172    if (!win) return;
2173    if (win->frame_obj)
2174      {
2175      }
2176    else if (win->img_obj)
2177      {
2178         evas_object_image_alpha_set(win->img_obj, alpha);
2179         ecore_evas_alpha_set(win->ee, alpha);
2180      }
2181    else
2182      {
2183 #ifdef HAVE_ELEMENTARY_X
2184         if (win->xwin)
2185           {
2186              if (alpha)
2187                {
2188                   if (!_elm_config->compositing)
2189                      elm_win_shaped_set(obj, alpha);
2190                   else
2191                      ecore_evas_alpha_set(win->ee, alpha);
2192                }
2193              else
2194                 ecore_evas_alpha_set(win->ee, alpha);
2195              _elm_win_xwin_update(win);
2196           }
2197         else
2198 #endif
2199            ecore_evas_alpha_set(win->ee, alpha);
2200      }
2201 }
2202
2203 EAPI Eina_Bool
2204 elm_win_alpha_get(const Evas_Object *obj)
2205 {
2206    Elm_Win *win;
2207    ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
2208    win = elm_widget_data_get(obj);
2209    if (!win) return EINA_FALSE;
2210    if (win->frame_obj)
2211      {
2212      }
2213    else if (win->img_obj)
2214      {
2215         return evas_object_image_alpha_get(win->img_obj);
2216      }
2217    return ecore_evas_alpha_get(win->ee);
2218 }
2219
2220 EAPI void
2221 elm_win_transparent_set(Evas_Object *obj, Eina_Bool transparent)
2222 {
2223    Elm_Win *win;
2224    ELM_CHECK_WIDTYPE(obj, widtype);
2225    win = elm_widget_data_get(obj);
2226    if (!win) return;
2227
2228    if (win->frame_obj)
2229      {
2230      }
2231    else if (win->img_obj)
2232      {
2233         evas_object_image_alpha_set(win->img_obj, transparent);
2234      }
2235    else
2236      {
2237 #ifdef HAVE_ELEMENTARY_X
2238         if (win->xwin)
2239           {
2240              ecore_evas_transparent_set(win->ee, transparent);
2241              _elm_win_xwin_update(win);
2242           }
2243         else
2244 #endif
2245            ecore_evas_transparent_set(win->ee, transparent);
2246      }
2247 }
2248
2249 EAPI Eina_Bool
2250 elm_win_transparent_get(const Evas_Object *obj)
2251 {
2252    Elm_Win *win;
2253    ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
2254    win = elm_widget_data_get(obj);
2255    if (!win) return EINA_FALSE;
2256
2257    return ecore_evas_transparent_get(win->ee);
2258 }
2259
2260 EAPI void
2261 elm_win_override_set(Evas_Object *obj, Eina_Bool override)
2262 {
2263    Elm_Win *win;
2264    ELM_CHECK_WIDTYPE(obj, widtype);
2265    win = elm_widget_data_get(obj);
2266    if (!win) return;
2267    ecore_evas_override_set(win->ee, override);
2268 #ifdef HAVE_ELEMENTARY_X
2269    _elm_win_xwin_update(win);
2270 #endif
2271 }
2272
2273 EAPI Eina_Bool
2274 elm_win_override_get(const Evas_Object *obj)
2275 {
2276    Elm_Win *win;
2277    ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
2278    win = elm_widget_data_get(obj);
2279    if (!win) return EINA_FALSE;
2280    return ecore_evas_override_get(win->ee);
2281 }
2282
2283 EAPI void
2284 elm_win_fullscreen_set(Evas_Object *obj, Eina_Bool fullscreen)
2285 {
2286    Elm_Win *win;
2287    ELM_CHECK_WIDTYPE(obj, widtype);
2288    win = elm_widget_data_get(obj);
2289    if (!win) return;
2290    // YYY: handle if win->img_obj
2291 #define ENGINE_COMPARE(name) (!strcmp(_elm_config->engine, name))
2292    if (ENGINE_COMPARE(ELM_SOFTWARE_FB) ||
2293        ENGINE_COMPARE(ELM_SOFTWARE_16_WINCE))
2294      {
2295         // these engines... can ONLY be fullscreen
2296         return;
2297      }
2298    else
2299      {
2300         win->fullscreen = fullscreen;
2301         ecore_evas_fullscreen_set(win->ee, fullscreen);
2302 #ifdef HAVE_ELEMENTARY_X
2303         _elm_win_xwin_update(win);
2304 #endif
2305      }
2306 #undef ENGINE_COMPARE
2307 }
2308
2309 EAPI Eina_Bool
2310 elm_win_fullscreen_get(const Evas_Object *obj)
2311 {
2312    Elm_Win *win;
2313    ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
2314    win = elm_widget_data_get(obj);
2315    if (!win) return EINA_FALSE;
2316 #define ENGINE_COMPARE(name) (!strcmp(_elm_config->engine, name))
2317    if (ENGINE_COMPARE(ELM_SOFTWARE_FB) ||
2318        ENGINE_COMPARE(ELM_SOFTWARE_16_WINCE))
2319      {
2320         // these engines... can ONLY be fullscreen
2321         return EINA_TRUE;
2322      }
2323    else
2324      {
2325         return win->fullscreen;
2326      }
2327 #undef ENGINE_COMPARE
2328 }
2329
2330 EAPI void
2331 elm_win_maximized_set(Evas_Object *obj, Eina_Bool maximized)
2332 {
2333    Elm_Win *win;
2334    ELM_CHECK_WIDTYPE(obj, widtype);
2335    win = elm_widget_data_get(obj);
2336    if (!win) return;
2337    win->maximized = maximized;
2338    // YYY: handle if win->img_obj
2339    ecore_evas_maximized_set(win->ee, maximized);
2340 #ifdef HAVE_ELEMENTARY_X
2341    _elm_win_xwin_update(win);
2342 #endif
2343 }
2344
2345 EAPI Eina_Bool
2346 elm_win_maximized_get(const Evas_Object *obj)
2347 {
2348    Elm_Win *win;
2349    ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
2350    win = elm_widget_data_get(obj);
2351    if (!win) return EINA_FALSE;
2352    return win->maximized;
2353 }
2354
2355 EAPI void
2356 elm_win_iconified_set(Evas_Object *obj, Eina_Bool iconified)
2357 {
2358    Elm_Win *win;
2359    ELM_CHECK_WIDTYPE(obj, widtype);
2360    win = elm_widget_data_get(obj);
2361    if (!win) return;
2362    win->iconified = iconified;
2363    ecore_evas_iconified_set(win->ee, iconified);
2364 #ifdef HAVE_ELEMENTARY_X
2365    _elm_win_xwin_update(win);
2366 #endif
2367 }
2368
2369 EAPI Eina_Bool
2370 elm_win_iconified_get(const Evas_Object *obj)
2371 {
2372    Elm_Win *win;
2373    ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
2374    win = elm_widget_data_get(obj);
2375    if (!win) return EINA_FALSE;
2376    return win->iconified;
2377 }
2378
2379 EAPI void
2380 elm_win_withdrawn_set(Evas_Object *obj, Eina_Bool withdrawn)
2381 {
2382    Elm_Win *win;
2383    ELM_CHECK_WIDTYPE(obj, widtype);
2384    win = elm_widget_data_get(obj);
2385    if (!win) return;
2386    win->withdrawn = withdrawn;
2387    ecore_evas_withdrawn_set(win->ee, withdrawn);
2388 #ifdef HAVE_ELEMENTARY_X
2389    _elm_win_xwin_update(win);
2390 #endif
2391 }
2392
2393 EAPI Eina_Bool
2394 elm_win_widthdrawn_get(const Evas_Object *obj)
2395 {
2396    Elm_Win *win;
2397    ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
2398    win = elm_widget_data_get(obj);
2399    if (!win) return EINA_FALSE;
2400    return win->withdrawn;
2401 }
2402
2403 EAPI void
2404 elm_win_urgent_set(Evas_Object *obj, Eina_Bool urgent)
2405 {
2406    Elm_Win *win;
2407    ELM_CHECK_WIDTYPE(obj, widtype);
2408    win = elm_widget_data_get(obj);
2409    if (!win) return;
2410    win->urgent = urgent;
2411    ecore_evas_urgent_set(win->ee, urgent);
2412 #ifdef HAVE_ELEMENTARY_X
2413    _elm_win_xwin_update(win);
2414 #endif
2415 }
2416
2417 EAPI Eina_Bool
2418 elm_win_urgent_get(const Evas_Object *obj)
2419 {
2420    Elm_Win *win;
2421    ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
2422    win = elm_widget_data_get(obj);
2423    if (!win) return EINA_FALSE;
2424    return win->urgent;
2425 }
2426
2427 EAPI void
2428 elm_win_demand_attention_set(Evas_Object *obj, Eina_Bool demand_attention)
2429 {
2430    Elm_Win *win;
2431    ELM_CHECK_WIDTYPE(obj, widtype);
2432    win = elm_widget_data_get(obj);
2433    if (!win) return;
2434    win->demand_attention = demand_attention;
2435    ecore_evas_demand_attention_set(win->ee, demand_attention);
2436 #ifdef HAVE_ELEMENTARY_X
2437    _elm_win_xwin_update(win);
2438 #endif
2439 }
2440
2441 EAPI Eina_Bool
2442 elm_win_demand_attention_get(const Evas_Object *obj)
2443 {
2444    Elm_Win *win;
2445    ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
2446    win = elm_widget_data_get(obj);
2447    if (!win) return EINA_FALSE;
2448    return win->demand_attention;
2449 }
2450
2451 EAPI void
2452 elm_win_modal_set(Evas_Object *obj, Eina_Bool modal)
2453 {
2454    Elm_Win *win;
2455    ELM_CHECK_WIDTYPE(obj, widtype);
2456    win = elm_widget_data_get(obj);
2457    if (!win) return;
2458    win->modal = modal;
2459    ecore_evas_modal_set(win->ee, modal);
2460 #ifdef HAVE_ELEMENTARY_X
2461    _elm_win_xwin_update(win);
2462 #endif
2463 }
2464
2465 EAPI Eina_Bool
2466 elm_win_modal_get(const Evas_Object *obj)
2467 {
2468    Elm_Win *win;
2469    ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
2470    win = elm_widget_data_get(obj);
2471    if (!win) return EINA_FALSE;
2472    return win->modal;
2473 }
2474
2475 EAPI void
2476 elm_win_aspect_set(Evas_Object *obj, double aspect)
2477 {
2478    Elm_Win *win;
2479    ELM_CHECK_WIDTYPE(obj, widtype);
2480    win = elm_widget_data_get(obj);
2481    if (!win) return;
2482    win->aspect = aspect;
2483    ecore_evas_aspect_set(win->ee, aspect);
2484 #ifdef HAVE_ELEMENTARY_X
2485    _elm_win_xwin_update(win);
2486 #endif
2487 }
2488
2489 EAPI double
2490 elm_win_aspect_get(const Evas_Object *obj)
2491 {
2492    Elm_Win *win;
2493    ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
2494    win = elm_widget_data_get(obj);
2495    if (!win) return EINA_FALSE;
2496    return win->aspect;
2497 }
2498
2499 EAPI void
2500 elm_win_layer_set(Evas_Object *obj, int layer)
2501 {
2502    Elm_Win *win;
2503    ELM_CHECK_WIDTYPE(obj, widtype);
2504    win = elm_widget_data_get(obj);
2505    if (!win) return;
2506    ecore_evas_layer_set(win->ee, layer);
2507 #ifdef HAVE_ELEMENTARY_X
2508    _elm_win_xwin_update(win);
2509 #endif
2510 }
2511
2512 EAPI int
2513 elm_win_layer_get(const Evas_Object *obj)
2514 {
2515    Elm_Win *win;
2516    ELM_CHECK_WIDTYPE(obj, widtype) -1;
2517    win = elm_widget_data_get(obj);
2518    if (!win) return -1;
2519    return ecore_evas_layer_get(win->ee);
2520 }
2521
2522 EAPI void
2523 elm_win_rotation_set(Evas_Object *obj, int rotation)
2524 {
2525    Elm_Win *win;
2526    ELM_CHECK_WIDTYPE(obj, widtype);
2527    win = elm_widget_data_get(obj);
2528    if (!win) return;
2529    if (win->rot == rotation) return;
2530    win->rot = rotation;
2531    ecore_evas_rotation_set(win->ee, rotation);
2532    evas_object_size_hint_min_set(obj, -1, -1);
2533    evas_object_size_hint_max_set(obj, -1, -1);
2534    _elm_win_eval_subobjs(obj);
2535 #ifdef HAVE_ELEMENTARY_X
2536    _elm_win_xwin_update(win);
2537 #endif
2538 }
2539
2540 EAPI void
2541 elm_win_rotation_with_resize_set(Evas_Object *obj, int rotation)
2542 {
2543    Elm_Win *win;
2544    ELM_CHECK_WIDTYPE(obj, widtype);
2545    win = elm_widget_data_get(obj);
2546    if (!win) return;
2547    if (win->rot == rotation) return;
2548    win->rot = rotation;
2549    ecore_evas_rotation_with_resize_set(win->ee, rotation);
2550    evas_object_size_hint_min_set(obj, -1, -1);
2551    evas_object_size_hint_max_set(obj, -1, -1);
2552    _elm_win_eval_subobjs(obj);
2553 #ifdef HAVE_ELEMENTARY_X
2554    _elm_win_xwin_update(win);
2555 #endif
2556 }
2557
2558 EAPI int
2559 elm_win_rotation_get(const Evas_Object *obj)
2560 {
2561    Elm_Win *win;
2562    ELM_CHECK_WIDTYPE(obj, widtype) -1;
2563    win = elm_widget_data_get(obj);
2564    if (!win) return -1;
2565    return win->rot;
2566 }
2567
2568 EAPI void
2569 elm_win_sticky_set(Evas_Object *obj, Eina_Bool sticky)
2570 {
2571    Elm_Win *win;
2572    ELM_CHECK_WIDTYPE(obj, widtype);
2573    win = elm_widget_data_get(obj);
2574    if (!win) return;
2575    win->sticky = sticky;
2576    ecore_evas_sticky_set(win->ee, sticky);
2577 #ifdef HAVE_ELEMENTARY_X
2578    _elm_win_xwin_update(win);
2579 #endif
2580 }
2581
2582 EAPI Eina_Bool
2583 elm_win_sticky_get(const Evas_Object *obj)
2584 {
2585    Elm_Win *win;
2586    ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
2587    win = elm_widget_data_get(obj);
2588    if (!win) return EINA_FALSE;
2589    return win->sticky;
2590 }
2591
2592 EAPI void
2593 elm_win_keyboard_mode_set(Evas_Object *obj, Elm_Win_Keyboard_Mode mode)
2594 {
2595    Elm_Win *win;
2596    ELM_CHECK_WIDTYPE(obj, widtype);
2597    win = elm_widget_data_get(obj);
2598    if (!win) return;
2599    if (mode == win->kbdmode) return;
2600 #ifdef HAVE_ELEMENTARY_X
2601    _elm_win_xwindow_get(win);
2602 #endif
2603    win->kbdmode = mode;
2604 #ifdef HAVE_ELEMENTARY_X
2605    if (win->xwin)
2606      ecore_x_e_virtual_keyboard_state_set
2607         (win->xwin, (Ecore_X_Virtual_Keyboard_State)win->kbdmode);
2608 #endif
2609 }
2610
2611 EAPI Elm_Win_Keyboard_Mode
2612 elm_win_keyboard_mode_get(const Evas_Object *obj)
2613 {
2614    Elm_Win *win;
2615    ELM_CHECK_WIDTYPE(obj, widtype) ELM_WIN_KEYBOARD_UNKNOWN;
2616    win = elm_widget_data_get(obj);
2617    if (!win) return ELM_WIN_KEYBOARD_UNKNOWN;
2618    return win->kbdmode;
2619 }
2620
2621 EAPI void
2622 elm_win_keyboard_win_set(Evas_Object *obj, Eina_Bool is_keyboard)
2623 {
2624    Elm_Win *win;
2625    ELM_CHECK_WIDTYPE(obj, widtype);
2626    win = elm_widget_data_get(obj);
2627    if (!win) return;
2628 #ifdef HAVE_ELEMENTARY_X
2629    _elm_win_xwindow_get(win);
2630    if (win->xwin)
2631      ecore_x_e_virtual_keyboard_set(win->xwin, is_keyboard);
2632 #else
2633    (void) is_keyboard;
2634 #endif
2635 }
2636
2637 EAPI Eina_Bool
2638 elm_win_keyboard_win_get(const Evas_Object *obj)
2639 {
2640    Elm_Win *win;
2641    ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
2642    win = elm_widget_data_get(obj);
2643    if (!win) return EINA_FALSE;
2644 #ifdef HAVE_ELEMENTARY_X
2645    _elm_win_xwindow_get(win);
2646    if (win->xwin)
2647      return ecore_x_e_virtual_keyboard_get(win->xwin);
2648 #endif
2649    return EINA_FALSE;
2650 }
2651
2652 EAPI void
2653 elm_win_indicator_mode_set(Evas_Object *obj, Elm_Win_Indicator_Mode mode)
2654 {
2655    Elm_Win *win;
2656    ELM_CHECK_WIDTYPE(obj, widtype);
2657    win = elm_widget_data_get(obj);
2658    if (!win) return;
2659    if (mode == win->indmode) return;
2660 #ifdef HAVE_ELEMENTARY_X
2661    _elm_win_xwindow_get(win);
2662 #endif
2663    win->indmode = mode;
2664 #ifdef HAVE_ELEMENTARY_X
2665    if (win->xwin)
2666      {
2667         if (win->indmode == ELM_WIN_INDICATOR_SHOW)
2668           ecore_x_e_illume_indicator_state_set
2669           (win->xwin, ECORE_X_ILLUME_INDICATOR_STATE_ON);
2670         else if (win->indmode == ELM_WIN_INDICATOR_HIDE)
2671           ecore_x_e_illume_indicator_state_set
2672           (win->xwin, ECORE_X_ILLUME_INDICATOR_STATE_OFF);
2673      }
2674 #endif
2675 }
2676
2677 EAPI Elm_Win_Indicator_Mode
2678 elm_win_indicator_mode_get(const Evas_Object *obj)
2679 {
2680    Elm_Win *win;
2681    ELM_CHECK_WIDTYPE(obj, widtype) ELM_WIN_INDICATOR_UNKNOWN;
2682    win = elm_widget_data_get(obj);
2683    if (!win) return ELM_WIN_INDICATOR_UNKNOWN;
2684    return win->indmode;
2685 }
2686
2687 EAPI void
2688 elm_win_screen_position_get(const Evas_Object *obj, int *x, int *y)
2689 {
2690    Elm_Win *win;
2691    ELM_CHECK_WIDTYPE(obj, widtype);
2692    win = elm_widget_data_get(obj);
2693    if (!win) return;
2694    if (x) *x = win->screen.x;
2695    if (y) *y = win->screen.y;
2696 }
2697
2698 EAPI Eina_Bool
2699 elm_win_focus_get(const Evas_Object *obj)
2700 {
2701    Elm_Win *win;
2702    ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
2703    win = elm_widget_data_get(obj);
2704    if (!win) return EINA_FALSE;
2705    return ecore_evas_focus_get(win->ee);
2706 }
2707
2708 EAPI void
2709 elm_win_screen_constrain_set(Evas_Object *obj, Eina_Bool constrain)
2710 {
2711    Elm_Win *win;
2712    ELM_CHECK_WIDTYPE(obj, widtype);
2713    win = elm_widget_data_get(obj);
2714    if (!win) return;
2715    win->constrain = !!constrain;
2716 }
2717
2718 EAPI Eina_Bool
2719 elm_win_screen_constrain_get(Evas_Object *obj)
2720 {
2721    Elm_Win *win;
2722    ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
2723    win = elm_widget_data_get(obj);
2724    if (!win) return EINA_FALSE;
2725    return win->constrain;
2726 }
2727
2728 EAPI void
2729 elm_win_screen_size_get(const Evas_Object *obj, int *x, int *y, int *w, int *h)
2730 {
2731    Elm_Win *win;
2732    ELM_CHECK_WIDTYPE(obj, widtype);
2733    win = elm_widget_data_get(obj);
2734    if (!win) return;
2735    ecore_evas_screen_geometry_get(win->ee, x, y, w, h);
2736 }
2737
2738 EAPI void
2739 elm_win_conformant_set(Evas_Object *obj, Eina_Bool conformant)
2740 {
2741    Elm_Win *win;
2742    ELM_CHECK_WIDTYPE(obj, widtype);
2743    win = elm_widget_data_get(obj);
2744    if (!win) return;
2745 #ifdef HAVE_ELEMENTARY_X
2746    _elm_win_xwindow_get(win);
2747    if (win->xwin)
2748      ecore_x_e_illume_conformant_set(win->xwin, conformant);
2749 #else
2750    (void) conformant;
2751 #endif
2752 }
2753
2754 EAPI Eina_Bool
2755 elm_win_conformant_get(const Evas_Object *obj)
2756 {
2757    Elm_Win *win;
2758    ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
2759    win = elm_widget_data_get(obj);
2760    if (!win) return EINA_FALSE;
2761 #ifdef HAVE_ELEMENTARY_X
2762    _elm_win_xwindow_get(win);
2763    if (win->xwin)
2764      return ecore_x_e_illume_conformant_get(win->xwin);
2765 #endif
2766    return EINA_FALSE;
2767 }
2768
2769 EAPI void
2770 elm_win_quickpanel_set(Evas_Object *obj, Eina_Bool quickpanel)
2771 {
2772    Elm_Win *win;
2773    ELM_CHECK_WIDTYPE(obj, widtype);
2774    win = elm_widget_data_get(obj);
2775    if (!win) return;
2776 #ifdef HAVE_ELEMENTARY_X
2777    _elm_win_xwindow_get(win);
2778    if (win->xwin)
2779      {
2780         ecore_x_e_illume_quickpanel_set(win->xwin, quickpanel);
2781         if (quickpanel)
2782           {
2783              Ecore_X_Window_State states[2];
2784
2785              states[0] = ECORE_X_WINDOW_STATE_SKIP_TASKBAR;
2786              states[1] = ECORE_X_WINDOW_STATE_SKIP_PAGER;
2787              ecore_x_netwm_window_state_set(win->xwin, states, 2);
2788              ecore_x_icccm_hints_set(win->xwin, 0, 0, 0, 0, 0, 0, 0);
2789           }
2790      }
2791 #else
2792    (void) quickpanel;
2793 #endif
2794 }
2795
2796 EAPI Eina_Bool
2797 elm_win_quickpanel_get(const Evas_Object *obj)
2798 {
2799    Elm_Win *win;
2800    ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
2801    win = elm_widget_data_get(obj);
2802    if (!win) return EINA_FALSE;
2803 #ifdef HAVE_ELEMENTARY_X
2804    _elm_win_xwindow_get(win);
2805    if (win->xwin)
2806      return ecore_x_e_illume_quickpanel_get(win->xwin);
2807 #endif
2808    return EINA_FALSE;
2809 }
2810
2811 EAPI void
2812 elm_win_quickpanel_priority_major_set(Evas_Object *obj, int priority)
2813 {
2814    Elm_Win *win;
2815    ELM_CHECK_WIDTYPE(obj, widtype);
2816    win = elm_widget_data_get(obj);
2817    if (!win) return;
2818 #ifdef HAVE_ELEMENTARY_X
2819    _elm_win_xwindow_get(win);
2820    if (win->xwin)
2821      ecore_x_e_illume_quickpanel_priority_major_set(win->xwin, priority);
2822 #else
2823    (void) priority;
2824 #endif
2825 }
2826
2827 EAPI int
2828 elm_win_quickpanel_priority_major_get(const Evas_Object *obj)
2829 {
2830    Elm_Win *win;
2831    ELM_CHECK_WIDTYPE(obj, widtype) -1;
2832    win = elm_widget_data_get(obj);
2833    if (!win) return -1;
2834 #ifdef HAVE_ELEMENTARY_X
2835    _elm_win_xwindow_get(win);
2836    if (win->xwin)
2837      return ecore_x_e_illume_quickpanel_priority_major_get(win->xwin);
2838 #endif
2839    return -1;
2840 }
2841
2842 EAPI void
2843 elm_win_quickpanel_priority_minor_set(Evas_Object *obj, int priority)
2844 {
2845    Elm_Win *win;
2846    ELM_CHECK_WIDTYPE(obj, widtype);
2847    win = elm_widget_data_get(obj);
2848    if (!win) return;
2849 #ifdef HAVE_ELEMENTARY_X
2850    _elm_win_xwindow_get(win);
2851    if (win->xwin)
2852      ecore_x_e_illume_quickpanel_priority_minor_set(win->xwin, priority);
2853 #else
2854    (void) priority;
2855 #endif
2856 }
2857
2858 EAPI int
2859 elm_win_quickpanel_priority_minor_get(const Evas_Object *obj)
2860 {
2861    Elm_Win *win;
2862    ELM_CHECK_WIDTYPE(obj, widtype) -1;
2863    win = elm_widget_data_get(obj);
2864    if (!win) return -1;
2865 #ifdef HAVE_ELEMENTARY_X
2866    _elm_win_xwindow_get(win);
2867    if (win->xwin)
2868      return ecore_x_e_illume_quickpanel_priority_minor_get(win->xwin);
2869 #endif
2870    return -1;
2871 }
2872
2873 EAPI void
2874 elm_win_quickpanel_zone_set(Evas_Object *obj, int zone)
2875 {
2876    Elm_Win *win;
2877    ELM_CHECK_WIDTYPE(obj, widtype);
2878    win = elm_widget_data_get(obj);
2879    if (!win) return;
2880 #ifdef HAVE_ELEMENTARY_X
2881    _elm_win_xwindow_get(win);
2882    if (win->xwin)
2883      ecore_x_e_illume_quickpanel_zone_set(win->xwin, zone);
2884 #else
2885    (void) zone;
2886 #endif
2887 }
2888
2889 EAPI int
2890 elm_win_quickpanel_zone_get(const Evas_Object *obj)
2891 {
2892    Elm_Win *win;
2893    ELM_CHECK_WIDTYPE(obj, widtype) 0;
2894    win = elm_widget_data_get(obj);
2895    if (!win) return 0;
2896 #ifdef HAVE_ELEMENTARY_X
2897    _elm_win_xwindow_get(win);
2898    if (win->xwin)
2899      return ecore_x_e_illume_quickpanel_zone_get(win->xwin);
2900 #endif
2901    return 0;
2902 }
2903
2904 EAPI void
2905 elm_win_prop_focus_skip_set(Evas_Object *obj, Eina_Bool skip)
2906 {
2907    Elm_Win *win;
2908    ELM_CHECK_WIDTYPE(obj, widtype);
2909    win = elm_widget_data_get(obj);
2910    if (!win) return;
2911    win->skip_focus = skip;
2912    ecore_evas_focus_skip_set(win->ee, skip);
2913 }
2914
2915 EAPI void
2916 elm_win_illume_command_send(Evas_Object *obj, Elm_Illume_Command command, void *params __UNUSED__)
2917 {
2918    Elm_Win *win;
2919    ELM_CHECK_WIDTYPE(obj, widtype);
2920    win = elm_widget_data_get(obj);
2921    if (!win) return;
2922 #ifdef HAVE_ELEMENTARY_X
2923    _elm_win_xwindow_get(win);
2924    if (win->xwin)
2925      {
2926         switch (command)
2927           {
2928            case ELM_ILLUME_COMMAND_FOCUS_BACK:
2929               ecore_x_e_illume_focus_back_send(win->xwin);
2930               break;
2931            case ELM_ILLUME_COMMAND_FOCUS_FORWARD:
2932               ecore_x_e_illume_focus_forward_send(win->xwin);
2933               break;
2934            case ELM_ILLUME_COMMAND_FOCUS_HOME:
2935               ecore_x_e_illume_focus_home_send(win->xwin);
2936               break;
2937            case ELM_ILLUME_COMMAND_CLOSE:
2938               ecore_x_e_illume_close_send(win->xwin);
2939               break;
2940            default:
2941               break;
2942           }
2943      }
2944 #else
2945    (void) command;
2946 #endif
2947 }
2948
2949 EAPI Evas_Object *
2950 elm_win_inlined_image_object_get(Evas_Object *obj)
2951 {
2952    Elm_Win *win;
2953    ELM_CHECK_WIDTYPE(obj, widtype) NULL;
2954    win = elm_widget_data_get(obj);
2955    if (!win) return NULL;
2956    return win->img_obj;
2957 }
2958
2959 EAPI void
2960 elm_win_focus_highlight_enabled_set(Evas_Object *obj, Eina_Bool enabled)
2961 {
2962    Elm_Win *win;
2963
2964    ELM_CHECK_WIDTYPE(obj, widtype);
2965
2966    win = elm_widget_data_get(obj);
2967    enabled = !!enabled;
2968    if (win->focus_highlight.enabled == enabled)
2969      return;
2970
2971    win->focus_highlight.enabled = enabled;
2972
2973    if (win->focus_highlight.enabled)
2974      _elm_win_focus_highlight_init(win);
2975    else
2976      _elm_win_focus_highlight_shutdown(win);
2977 }
2978
2979 EAPI Eina_Bool
2980 elm_win_focus_highlight_enabled_get(const Evas_Object *obj)
2981 {
2982    Elm_Win *win;
2983
2984    ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
2985
2986    win = elm_widget_data_get(obj);
2987    return win->focus_highlight.enabled;
2988 }
2989
2990 EAPI void
2991 elm_win_focus_highlight_style_set(Evas_Object *obj, const char *style)
2992 {
2993    Elm_Win *win;
2994
2995    ELM_CHECK_WIDTYPE(obj, widtype);
2996
2997    win = elm_widget_data_get(obj);
2998    eina_stringshare_replace(&win->focus_highlight.style, style);
2999    win->focus_highlight.changed_theme = EINA_TRUE;
3000    _elm_win_focus_highlight_reconfigure_job_start(win);
3001 }
3002
3003 EAPI const char *
3004 elm_win_focus_highlight_style_get(const Evas_Object *obj)
3005 {
3006    Elm_Win *win;
3007
3008    ELM_CHECK_WIDTYPE(obj, widtype) NULL;
3009
3010    win = elm_widget_data_get(obj);
3011    return win->focus_highlight.style;
3012 }
3013
3014 typedef struct _Widget_Data Widget_Data;
3015
3016 struct _Widget_Data
3017 {
3018    Evas_Object *frm;
3019    Evas_Object *content;
3020 };
3021
3022 static void _del_hook(Evas_Object *obj);
3023 static void _theme_hook(Evas_Object *obj);
3024 static void _sizing_eval(Evas_Object *obj);
3025 static void _changed_size_hints(void *data, Evas *e, Evas_Object *obj, void *event_info);
3026 static void _sub_del(void *data, Evas_Object *obj, void *event_info);
3027
3028 static const char *widtype2 = NULL;
3029
3030 static void
3031 _del_hook(Evas_Object *obj)
3032 {
3033    Widget_Data *wd = elm_widget_data_get(obj);
3034    if (!wd) return;
3035    free(wd);
3036 }
3037
3038 static void
3039 _theme_hook(Evas_Object *obj)
3040 {
3041    Widget_Data *wd = elm_widget_data_get(obj);
3042    _elm_theme_object_set(obj, wd->frm, "win", "inwin", elm_widget_style_get(obj));
3043    if (wd->content)
3044      edje_object_part_swallow(wd->frm, "elm.swallow.content", wd->content);
3045    _sizing_eval(obj);
3046
3047    evas_object_smart_callback_call(obj, SIG_THEME_CHANGED, NULL);
3048 }
3049
3050 static Eina_Bool
3051 _elm_inwin_focus_next_hook(const Evas_Object *obj, Elm_Focus_Direction dir, Evas_Object **next)
3052 {
3053    Widget_Data *wd = elm_widget_data_get(obj);
3054
3055    if (!wd)
3056      return EINA_FALSE;
3057
3058    /* Try Focus cycle in subitem */
3059    if (wd->content)
3060      {
3061         elm_widget_focus_next_get(wd->content, dir, next);
3062         if (*next)
3063           return EINA_TRUE;
3064      }
3065
3066    *next = (Evas_Object *)obj;
3067    return EINA_FALSE;
3068 }
3069
3070 static void
3071 _elm_inwin_text_set_hook(Evas_Object *obj, const char *item, const char *text)
3072 {
3073    Widget_Data *wd = elm_widget_data_get(obj);
3074
3075    if (!wd || !item) return;
3076    edje_object_part_text_set(wd->frm, item, text);
3077    _sizing_eval(obj);
3078 }
3079
3080 static const char *
3081 _elm_inwin_text_get_hook(const Evas_Object *obj, const char *item)
3082 {
3083    Widget_Data *wd = elm_widget_data_get(obj);
3084
3085    if (!item || !wd || !wd->frm) return NULL;
3086    return edje_object_part_text_get(wd->frm, item);
3087 }
3088
3089 static void
3090 _sizing_eval(Evas_Object *obj)
3091 {
3092    Widget_Data *wd = elm_widget_data_get(obj);
3093    Evas_Coord minw = -1, minh = -1;
3094
3095    evas_object_size_hint_min_get(wd->content, &minw, &minh);
3096    edje_object_size_min_calc(wd->frm, &minw, &minh);
3097    evas_object_size_hint_min_set(obj, minw, minh);
3098    evas_object_size_hint_max_set(obj, -1, -1);
3099 }
3100
3101 static void
3102 _changed_size_hints(void *data, Evas *e __UNUSED__, Evas_Object *obj __UNUSED__, void *event_info __UNUSED__)
3103 {
3104    _sizing_eval(data);
3105 }
3106
3107 static void
3108 _sub_del(void *data __UNUSED__, Evas_Object *obj, void *event_info)
3109 {
3110    Widget_Data *wd = elm_widget_data_get(obj);
3111    Evas_Object *sub = event_info;
3112    if (sub == wd->content)
3113      {
3114         evas_object_event_callback_del_full
3115            (sub, EVAS_CALLBACK_CHANGED_SIZE_HINTS, _changed_size_hints, obj);
3116         wd->content = NULL;
3117         _sizing_eval(obj);
3118      }
3119 }
3120
3121 EAPI Evas_Object *
3122 elm_win_inwin_add(Evas_Object *obj)
3123 {
3124    Evas_Object *obj2;
3125    Widget_Data *wd;
3126    Elm_Win *win;
3127
3128    ELM_CHECK_WIDTYPE(obj, widtype) NULL;
3129    win = elm_widget_data_get(obj);
3130    if (!win) return NULL;
3131    wd = ELM_NEW(Widget_Data);
3132    obj2 = elm_widget_add(win->evas);
3133    elm_widget_type_set(obj2, "inwin");
3134    ELM_SET_WIDTYPE(widtype2, "inwin");
3135    elm_widget_sub_object_add(obj, obj2);
3136    evas_object_size_hint_weight_set(obj2, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND);
3137    evas_object_size_hint_align_set(obj2, EVAS_HINT_FILL, EVAS_HINT_FILL);
3138    elm_win_resize_object_add(obj, obj2);
3139
3140    elm_widget_data_set(obj2, wd);
3141    elm_widget_del_hook_set(obj2, _del_hook);
3142    elm_widget_theme_hook_set(obj2, _theme_hook);
3143    elm_widget_focus_next_hook_set(obj2, _elm_inwin_focus_next_hook);
3144    elm_widget_text_set_hook_set(obj2, _elm_inwin_text_set_hook);
3145    elm_widget_text_get_hook_set(obj2, _elm_inwin_text_get_hook);
3146    elm_widget_can_focus_set(obj2, EINA_TRUE);
3147    elm_widget_highlight_ignore_set(obj2, EINA_TRUE);
3148
3149    wd->frm = edje_object_add(win->evas);
3150    _elm_theme_object_set(obj, wd->frm, "win", "inwin", "default");
3151    elm_widget_resize_object_set(obj2, wd->frm);
3152
3153    evas_object_smart_callback_add(obj2, "sub-object-del", _sub_del, obj2);
3154
3155    _sizing_eval(obj2);
3156    return obj2;
3157 }
3158
3159 EAPI void
3160 elm_win_inwin_activate(Evas_Object *obj)
3161 {
3162    ELM_CHECK_WIDTYPE(obj, widtype2);
3163    Widget_Data *wd = elm_widget_data_get(obj);
3164    if (!wd) return;
3165    evas_object_raise(obj);
3166    evas_object_show(obj);
3167    edje_object_signal_emit(wd->frm, "elm,action,show", "elm");
3168    elm_object_focus_set(obj, EINA_TRUE);
3169 }
3170
3171 EAPI void
3172 elm_win_inwin_content_set(Evas_Object *obj, Evas_Object *content)
3173 {
3174    ELM_CHECK_WIDTYPE(obj, widtype2);
3175    Widget_Data *wd = elm_widget_data_get(obj);
3176    if (!wd) return;
3177    if (wd->content == content) return;
3178    if (wd->content) evas_object_del(wd->content);
3179    wd->content = content;
3180    if (content)
3181      {
3182         elm_widget_sub_object_add(obj, content);
3183         evas_object_event_callback_add(content, EVAS_CALLBACK_CHANGED_SIZE_HINTS,
3184                                        _changed_size_hints, obj);
3185         edje_object_part_swallow(wd->frm, "elm.swallow.content", content);
3186      }
3187    _sizing_eval(obj);
3188 }
3189
3190 EAPI Evas_Object *
3191 elm_win_inwin_content_get(const Evas_Object *obj)
3192 {
3193    ELM_CHECK_WIDTYPE(obj, widtype2) NULL;
3194    Widget_Data *wd = elm_widget_data_get(obj);
3195    if (!wd) return NULL;
3196    return wd->content;
3197 }
3198
3199 EAPI Evas_Object *
3200 elm_win_inwin_content_unset(Evas_Object *obj)
3201 {
3202    ELM_CHECK_WIDTYPE(obj, widtype2) NULL;
3203    Widget_Data *wd = elm_widget_data_get(obj);
3204    if (!wd) return NULL;
3205    if (!wd->content) return NULL;
3206    Evas_Object *content = wd->content;
3207    elm_widget_sub_object_del(obj, wd->content);
3208    evas_object_event_callback_del_full(wd->content,
3209                                        EVAS_CALLBACK_CHANGED_SIZE_HINTS,
3210                                        _changed_size_hints, obj);
3211    edje_object_part_unswallow(wd->frm, wd->content);
3212    wd->content = NULL;
3213    return content;
3214 }
3215
3216 EAPI Eina_Bool
3217 elm_win_socket_listen(Evas_Object *obj, const char *svcname, int svcnum, Eina_Bool svcsys)
3218 {
3219
3220    Elm_Win *win;
3221
3222    ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
3223    win = elm_widget_data_get(obj);
3224    if (!win) return EINA_FALSE;
3225    if (!win->ee) return EINA_FALSE;
3226
3227    if(!ecore_evas_extn_socket_listen(win->ee, svcname, svcnum, svcsys))
3228      return EINA_FALSE;
3229
3230    return EINA_TRUE;
3231 }
3232
3233 /* windowing spcific calls - shall we do this differently? */
3234
3235 static Ecore_X_Window
3236 _elm_ee_win_get(const Evas_Object *obj)
3237 {
3238    if (!obj) return 0;
3239 #ifdef HAVE_ELEMENTARY_X
3240    Ecore_Evas *ee = ecore_evas_ecore_evas_get(evas_object_evas_get(obj));
3241    if (ee) return (Ecore_X_Window)ecore_evas_window_get(ee);
3242 #endif
3243    return 0;
3244 }
3245
3246 EAPI Ecore_X_Window
3247 elm_win_xwindow_get(const Evas_Object *obj)
3248 {
3249    Elm_Win *win;
3250    const char *type;
3251
3252    if (!obj) return 0;
3253    type = elm_widget_type_get(obj);
3254    if ((!type) || (type != widtype)) return _elm_ee_win_get(obj);
3255    win = elm_widget_data_get(obj);
3256    if (!win) return 0;
3257 #ifdef HAVE_ELEMENTARY_X
3258    if (win->xwin) return win->xwin;
3259    if (win->parent) return elm_win_xwindow_get(win->parent);
3260 #endif
3261    return 0;
3262 }