Elm (wayland): Update elm code to reflect recent efl wayland changes.
[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    win->maximized = EINA_TRUE;
1537    ecore_evas_maximized_set(win->ee, EINA_TRUE);
1538 }
1539
1540 static void 
1541 _elm_win_frame_cb_close(void *data, Evas_Object *obj __UNUSED__, const char *sig __UNUSED__, const char *source __UNUSED__)
1542 {
1543    Elm_Win *win;
1544
1545    if (!(win = data)) return;
1546    evas_object_del(win->win_obj);
1547 }
1548
1549 static void 
1550 _elm_win_pointer_add(Elm_Win *win, const char *style)
1551 {
1552    int mw, mh;
1553
1554    return;
1555
1556    win->pointer.ee = ecore_evas_wayland_shm_new(NULL, 0, 0, 0, 32, 32, 0);
1557    ecore_evas_resize(win->pointer.ee, 32, 32);
1558
1559    win->pointer.evas = ecore_evas_get(win->ee);
1560
1561    win->pointer.obj = edje_object_add(win->pointer.evas);
1562    _elm_theme_set(NULL, win->pointer.obj, "pointer", "base", style);
1563    edje_object_size_min_calc(win->pointer.obj, &mw, &mh);
1564    evas_object_move(win->pointer.obj, 0, 0);
1565    evas_object_resize(win->pointer.obj, 32, 32);
1566    evas_object_show(win->pointer.obj);
1567 }
1568
1569 #ifdef ELM_DEBUG
1570 static void
1571 _debug_key_down(void *data __UNUSED__, Evas *e __UNUSED__, Evas_Object *obj, void *event_info)
1572 {
1573    Evas_Event_Key_Down *ev = event_info;
1574
1575    if (ev->event_flags & EVAS_EVENT_FLAG_ON_HOLD)
1576      return;
1577
1578    if ((strcmp(ev->keyname, "F12")) ||
1579        (!evas_key_modifier_is_set(ev->modifiers, "Control")))
1580      return;
1581
1582    printf("Tree graph generated.\n");
1583    elm_object_tree_dot_dump(obj, "./dump.dot");
1584 }
1585 #endif
1586
1587 static void
1588 _win_img_hide(void        *data,
1589               Evas        *e __UNUSED__,
1590               Evas_Object *obj __UNUSED__,
1591               void        *event_info __UNUSED__)
1592 {
1593    Elm_Win *win = data;
1594
1595    elm_widget_focus_hide_handle(win->win_obj);
1596 }
1597
1598 static void
1599 _win_img_mouse_up(void        *data,
1600                   Evas        *e __UNUSED__,
1601                   Evas_Object *obj __UNUSED__,
1602                   void        *event_info)
1603 {
1604    Elm_Win *win = data;
1605    Evas_Event_Mouse_Up *ev = event_info;
1606    if (!(ev->event_flags & EVAS_EVENT_FLAG_ON_HOLD))
1607       elm_widget_focus_mouse_up_handle(win->win_obj);
1608 }
1609
1610 static void
1611 _win_img_focus_in(void        *data,
1612                   Evas        *e __UNUSED__,
1613                   Evas_Object *obj __UNUSED__,
1614                   void        *event_info __UNUSED__)
1615 {
1616    Elm_Win *win = data;
1617    elm_widget_focus_steal(win->win_obj);
1618 }
1619
1620 static void
1621 _win_img_focus_out(void        *data,
1622                    Evas        *e __UNUSED__,
1623                    Evas_Object *obj __UNUSED__,
1624                    void        *event_info __UNUSED__)
1625 {
1626    Elm_Win *win = data;
1627    elm_widget_focused_object_clear(win->win_obj);
1628 }
1629
1630 static void
1631 _win_inlined_image_set(Elm_Win *win)
1632 {
1633    evas_object_image_alpha_set(win->img_obj, EINA_FALSE);
1634    evas_object_image_filled_set(win->img_obj, EINA_TRUE);
1635    evas_object_event_callback_add(win->img_obj, EVAS_CALLBACK_DEL,
1636                                   _elm_win_obj_callback_img_obj_del, win);
1637
1638    evas_object_event_callback_add(win->img_obj, EVAS_CALLBACK_HIDE,
1639                                   _win_img_hide, win);
1640    evas_object_event_callback_add(win->img_obj, EVAS_CALLBACK_MOUSE_UP,
1641                                   _win_img_mouse_up, win);
1642    evas_object_event_callback_add(win->img_obj, EVAS_CALLBACK_FOCUS_IN,
1643                                   _win_img_focus_in, win);
1644    evas_object_event_callback_add(win->img_obj, EVAS_CALLBACK_FOCUS_OUT,
1645                                   _win_img_focus_out, win);
1646 }
1647
1648 static void
1649 _subobj_del(Elm_Win *win, Evas_Object *obj, Evas_Object *subobj)
1650 {
1651    evas_object_event_callback_del_full(subobj,
1652                                        EVAS_CALLBACK_CHANGED_SIZE_HINTS,
1653                                        _elm_win_subobj_callback_changed_size_hints,
1654                                        obj);
1655    evas_object_event_callback_del_full(subobj, EVAS_CALLBACK_DEL,
1656                                        _elm_win_subobj_callback_del, obj);
1657    win->subobjs = eina_list_remove(win->subobjs, subobj);
1658    _elm_win_eval_subobjs(obj);
1659 }
1660
1661 EAPI Evas_Object *
1662 elm_win_add(Evas_Object *parent, const char *name, Elm_Win_Type type)
1663 {
1664    Elm_Win *win;
1665    const Eina_List *l;
1666    const char *fontpath;
1667
1668    win = ELM_NEW(Elm_Win);
1669
1670 #define FALLBACK_TRY(engine)                                            \
1671    if (!win->ee)                                                        \
1672       do {                                                              \
1673          CRITICAL(engine " engine creation failed. Trying default.");   \
1674          win->ee = ecore_evas_new(NULL, 0, 0, 1, 1, NULL);              \
1675          if (win->ee)                                                   \
1676             elm_engine_set(ecore_evas_engine_name_get(win->ee));        \
1677    } while (0)
1678 #define ENGINE_COMPARE(name) (_elm_config->engine && !strcmp(_elm_config->engine, name))
1679
1680    win->kbdmode = ELM_WIN_KEYBOARD_UNKNOWN;
1681    win->indmode = ELM_WIN_INDICATOR_UNKNOWN;
1682    
1683    switch (type)
1684      {
1685       case ELM_WIN_INLINED_IMAGE:
1686         if (!parent) break;
1687         {
1688            Evas *e = evas_object_evas_get(parent);
1689            Ecore_Evas *ee;
1690            if (!e) break;
1691            ee = ecore_evas_ecore_evas_get(e);
1692            if (!ee) break;
1693            win->img_obj = ecore_evas_object_image_new(ee);
1694            if (!win->img_obj) break;
1695            win->ee = ecore_evas_object_ecore_evas_get(win->img_obj);
1696            if (win->ee)
1697              {
1698                 _win_inlined_image_set(win);
1699                 break;
1700              }
1701            evas_object_del(win->img_obj);
1702            win->img_obj = NULL;
1703         }
1704         break;
1705
1706       case ELM_WIN_SOCKET_IMAGE:
1707         win->ee = ecore_evas_extn_socket_new(1, 1);
1708         break;
1709
1710       default:
1711         if (ENGINE_COMPARE(ELM_SOFTWARE_X11))
1712           {
1713              win->ee = ecore_evas_software_x11_new(NULL, 0, 0, 0, 1, 1);
1714 #ifdef HAVE_ELEMENTARY_X
1715              win->client_message_handler = ecore_event_handler_add
1716                 (ECORE_X_EVENT_CLIENT_MESSAGE, _elm_win_client_message, win);
1717 #endif
1718              FALLBACK_TRY("Sofware X11");
1719           }
1720         else if (ENGINE_COMPARE(ELM_SOFTWARE_FB))
1721           {
1722              win->ee = ecore_evas_fb_new(NULL, 0, 1, 1);
1723              FALLBACK_TRY("Sofware FB");
1724           }
1725         else if (ENGINE_COMPARE(ELM_SOFTWARE_DIRECTFB))
1726           {
1727              win->ee = ecore_evas_directfb_new(NULL, 1, 0, 0, 1, 1);
1728              FALLBACK_TRY("Sofware DirectFB");
1729           }
1730         else if (ENGINE_COMPARE(ELM_SOFTWARE_16_X11))
1731           {
1732              win->ee = ecore_evas_software_x11_16_new(NULL, 0, 0, 0, 1, 1);
1733              FALLBACK_TRY("Sofware-16");
1734 #ifdef HAVE_ELEMENTARY_X
1735              win->client_message_handler = ecore_event_handler_add
1736                 (ECORE_X_EVENT_CLIENT_MESSAGE, _elm_win_client_message, win);
1737 #endif
1738      }
1739         else if (ENGINE_COMPARE(ELM_SOFTWARE_8_X11))
1740           {
1741              win->ee = ecore_evas_software_x11_8_new(NULL, 0, 0, 0, 1, 1);
1742              FALLBACK_TRY("Sofware-8");
1743 #ifdef HAVE_ELEMENTARY_X
1744              win->client_message_handler = ecore_event_handler_add
1745                 (ECORE_X_EVENT_CLIENT_MESSAGE, _elm_win_client_message, win);
1746 #endif
1747           }
1748 /* killed
1749         else if (ENGINE_COMPARE(ELM_XRENDER_X11))
1750           {
1751              win->ee = ecore_evas_xrender_x11_new(NULL, 0, 0, 0, 1, 1);
1752              FALLBACK_TRY("XRender");
1753 #ifdef HAVE_ELEMENTARY_X
1754              win->client_message_handler = ecore_event_handler_add
1755                 (ECORE_X_EVENT_CLIENT_MESSAGE, _elm_win_client_message, win);
1756 #endif
1757           }
1758  */
1759         else if (ENGINE_COMPARE(ELM_OPENGL_X11))
1760           {
1761              int opt[10];
1762              int opt_i = 0;
1763
1764              if (_elm_config->vsync)
1765                {
1766                   opt[opt_i] = ECORE_EVAS_GL_X11_OPT_VSYNC;
1767                   opt_i++;
1768                   opt[opt_i] = 1;
1769                   opt_i++;
1770                }
1771              if (opt_i > 0)
1772                 win->ee = ecore_evas_gl_x11_options_new(NULL, 0, 0, 0, 1, 1, opt);
1773              else
1774                 win->ee = ecore_evas_gl_x11_new(NULL, 0, 0, 0, 1, 1);
1775              FALLBACK_TRY("OpenGL");
1776 #ifdef HAVE_ELEMENTARY_X
1777              win->client_message_handler = ecore_event_handler_add
1778                 (ECORE_X_EVENT_CLIENT_MESSAGE, _elm_win_client_message, win);
1779 #endif
1780           }
1781         else if (ENGINE_COMPARE(ELM_SOFTWARE_WIN32))
1782           {
1783              win->ee = ecore_evas_software_gdi_new(NULL, 0, 0, 1, 1);
1784              FALLBACK_TRY("Sofware Win32");
1785           }
1786         else if (ENGINE_COMPARE(ELM_SOFTWARE_16_WINCE))
1787           {
1788              win->ee = ecore_evas_software_wince_gdi_new(NULL, 0, 0, 1, 1);
1789              FALLBACK_TRY("Sofware-16-WinCE");
1790           }
1791         else if (ENGINE_COMPARE(ELM_SOFTWARE_PSL1GHT))
1792           {
1793              win->ee = ecore_evas_psl1ght_new(NULL, 1, 1);
1794              FALLBACK_TRY("PSL1GHT");
1795           }
1796         else if (ENGINE_COMPARE(ELM_SOFTWARE_SDL))
1797           {
1798              win->ee = ecore_evas_sdl_new(NULL, 0, 0, 0, 0, 0, 1);
1799              FALLBACK_TRY("Sofware SDL");
1800           }
1801         else if (ENGINE_COMPARE(ELM_SOFTWARE_16_SDL))
1802           {
1803              win->ee = ecore_evas_sdl16_new(NULL, 0, 0, 0, 0, 0, 1);
1804              FALLBACK_TRY("Sofware-16-SDL");
1805           }
1806         else if (ENGINE_COMPARE(ELM_OPENGL_SDL))
1807           {
1808              win->ee = ecore_evas_gl_sdl_new(NULL, 1, 1, 0, 0);
1809              FALLBACK_TRY("OpenGL SDL");
1810           }
1811         else if (ENGINE_COMPARE(ELM_OPENGL_COCOA))
1812           {
1813              win->ee = ecore_evas_cocoa_new(NULL, 1, 1, 0, 0);
1814              FALLBACK_TRY("OpenGL Cocoa");
1815           }
1816         else if (ENGINE_COMPARE(ELM_BUFFER))
1817           {
1818              win->ee = ecore_evas_buffer_new(1, 1);
1819           }
1820         else if (ENGINE_COMPARE(ELM_EWS))
1821           {
1822              win->ee = ecore_evas_ews_new(0, 0, 1, 1);
1823           }
1824         else if (ENGINE_COMPARE(ELM_WAYLAND_SHM)) 
1825           {
1826              win->ee = ecore_evas_wayland_shm_new(NULL, 0, 0, 0, 1, 1, 0);
1827              win->evas = ecore_evas_get(win->ee);
1828
1829              _elm_win_frame_add(win, "default");
1830 //             _elm_win_pointer_add(win, "default");
1831           }
1832         else if (ENGINE_COMPARE(ELM_WAYLAND_EGL)) 
1833           {
1834              win->ee = ecore_evas_wayland_egl_new(NULL, 0, 0, 0, 1, 1, 0);
1835              win->evas = ecore_evas_get(win->ee);
1836
1837              _elm_win_frame_add(win, "default");
1838 //             _elm_win_pointer_add(win, "default");
1839           }
1840         else if (!strncmp(_elm_config->engine, "shot:", 5))
1841           {
1842              win->ee = ecore_evas_buffer_new(1, 1);
1843              ecore_evas_manual_render_set(win->ee, EINA_TRUE);
1844              win->shot.info = eina_stringshare_add(_elm_config->engine + 5);
1845              _shot_init(win);
1846           }
1847 #undef FALLBACK_TRY
1848         break;
1849      }
1850
1851    if (!win->ee)
1852      {
1853         ERR("Cannot create window.");
1854         free(win);
1855         return NULL;
1856      }
1857 #ifdef HAVE_ELEMENTARY_X
1858    _elm_win_xwindow_get(win);
1859 #endif
1860    if ((_elm_config->bgpixmap) && (!_elm_config->compositing))
1861      ecore_evas_avoid_damage_set(win->ee, ECORE_EVAS_AVOID_DAMAGE_EXPOSE);
1862    // bg pixmap done by x - has other issues like can be redrawn by x before it
1863    // is filled/ready by app
1864    //     ecore_evas_avoid_damage_set(win->ee, ECORE_EVAS_AVOID_DAMAGE_BUILT_IN);
1865
1866    win->type = type;
1867    win->parent = parent;
1868    if (win->parent)
1869      evas_object_event_callback_add(win->parent, EVAS_CALLBACK_DEL,
1870                                     _elm_win_obj_callback_parent_del, win);
1871
1872    win->evas = ecore_evas_get(win->ee);
1873    win->win_obj = elm_widget_add(win->evas);
1874    elm_widget_type_set(win->win_obj, "win");
1875    ELM_SET_WIDTYPE(widtype, "win");
1876    elm_widget_data_set(win->win_obj, win);
1877    elm_widget_event_hook_set(win->win_obj, _elm_win_event_cb);
1878    elm_widget_on_focus_hook_set(win->win_obj, _elm_win_on_focus_hook, NULL);
1879    elm_widget_can_focus_set(win->win_obj, EINA_TRUE);
1880    elm_widget_highlight_ignore_set(win->win_obj, EINA_TRUE);
1881    elm_widget_focus_next_hook_set(win->win_obj, _elm_win_focus_next_hook);
1882    evas_object_color_set(win->win_obj, 0, 0, 0, 0);
1883    evas_object_move(win->win_obj, 0, 0);
1884    evas_object_resize(win->win_obj, 1, 1);
1885    evas_object_layer_set(win->win_obj, 50);
1886    evas_object_pass_events_set(win->win_obj, EINA_TRUE);
1887
1888    if (win->frame_obj) 
1889      {
1890 //        evas_object_clip_set(win->win_obj, win->frame_obj);
1891         evas_object_stack_below(win->frame_obj, win->win_obj);
1892      }
1893
1894    if (type == ELM_WIN_INLINED_IMAGE)
1895      elm_widget_parent2_set(win->win_obj, parent);
1896    ecore_evas_object_associate(win->ee, win->win_obj,
1897                                ECORE_EVAS_OBJECT_ASSOCIATE_BASE |
1898                                ECORE_EVAS_OBJECT_ASSOCIATE_STACK |
1899                                ECORE_EVAS_OBJECT_ASSOCIATE_LAYER);
1900    evas_object_event_callback_add(win->win_obj, EVAS_CALLBACK_SHOW,
1901                                   _elm_win_obj_callback_show, win);
1902    evas_object_event_callback_add(win->win_obj, EVAS_CALLBACK_HIDE,
1903                                   _elm_win_obj_callback_hide, win);
1904    evas_object_event_callback_add(win->win_obj, EVAS_CALLBACK_DEL,
1905                                   _elm_win_obj_callback_del, win);
1906    evas_object_event_callback_add(win->win_obj, EVAS_CALLBACK_MOVE,
1907                                   _elm_win_obj_callback_move, win);
1908    evas_object_event_callback_add(win->win_obj, EVAS_CALLBACK_RESIZE,
1909                                   _elm_win_obj_callback_resize, win);
1910    if (win->img_obj)
1911      evas_object_intercept_move_callback_add(win->win_obj,
1912                                              _elm_win_obj_intercept_move, win);
1913    evas_object_intercept_show_callback_add(win->win_obj,
1914                                            _elm_win_obj_intercept_show, win);
1915
1916    evas_object_smart_callback_add(win->win_obj, "sub-object-del", (Evas_Smart_Cb)_subobj_del, win);
1917    ecore_evas_name_class_set(win->ee, name, _elm_appname);
1918    ecore_evas_callback_delete_request_set(win->ee, _elm_win_delete_request);
1919    ecore_evas_callback_resize_set(win->ee, _elm_win_resize);
1920    ecore_evas_callback_mouse_in_set(win->ee, _elm_win_mouse_in);
1921    ecore_evas_callback_focus_in_set(win->ee, _elm_win_focus_in);
1922    ecore_evas_callback_focus_out_set(win->ee, _elm_win_focus_out);
1923    ecore_evas_callback_move_set(win->ee, _elm_win_move);
1924    ecore_evas_callback_state_change_set(win->ee, _elm_win_state_change);
1925    evas_image_cache_set(win->evas, (_elm_config->image_cache * 1024));
1926    evas_font_cache_set(win->evas, (_elm_config->font_cache * 1024));
1927    EINA_LIST_FOREACH(_elm_config->font_dirs, l, fontpath)
1928      evas_font_path_append(win->evas, fontpath);
1929    if (!_elm_config->font_hinting)
1930      evas_font_hinting_set(win->evas, EVAS_FONT_HINTING_NONE);
1931    else if (_elm_config->font_hinting == 1)
1932      evas_font_hinting_set(win->evas, EVAS_FONT_HINTING_AUTO);
1933    else if (_elm_config->font_hinting == 2)
1934      evas_font_hinting_set(win->evas, EVAS_FONT_HINTING_BYTECODE);
1935
1936 #ifdef HAVE_ELEMENTARY_X
1937    _elm_win_xwin_update(win);
1938 #endif
1939
1940    _elm_win_list = eina_list_append(_elm_win_list, win->win_obj);
1941
1942    if (ENGINE_COMPARE(ELM_SOFTWARE_FB))
1943      {
1944         ecore_evas_fullscreen_set(win->ee, 1);
1945      }
1946 #undef ENGINE_COMPARE
1947
1948    if (_elm_config->focus_highlight_enable)
1949      elm_win_focus_highlight_enabled_set(win->win_obj, EINA_TRUE);
1950
1951 #ifdef ELM_DEBUG
1952    Evas_Modifier_Mask mask = evas_key_modifier_mask_get(win->evas, "Control");
1953    evas_object_event_callback_add(win->win_obj, EVAS_CALLBACK_KEY_DOWN,
1954                                   _debug_key_down, win);
1955
1956    Eina_Bool ret = evas_object_key_grab(win->win_obj, "F12", mask, 0,
1957                                         EINA_TRUE);
1958    printf("Ctrl+F12 key combination exclusive for dot tree generation\n");
1959 #endif
1960
1961    evas_object_smart_callbacks_descriptions_set(win->win_obj, _signals);
1962
1963    return win->win_obj;
1964 }
1965
1966 EAPI Evas_Object *
1967 elm_win_util_standard_add(const char *name, const char *title)
1968 {
1969    Evas_Object *win, *bg;
1970
1971    win = elm_win_add(NULL, name, ELM_WIN_BASIC);
1972    if (!win) return NULL;
1973    elm_win_title_set(win, title);
1974    bg = elm_bg_add(win);
1975    if (!bg)
1976      {
1977         evas_object_del(win);
1978         return NULL;
1979      }
1980    evas_object_size_hint_weight_set(bg, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND);
1981    elm_win_resize_object_add(win, bg);
1982    evas_object_show(bg);
1983    return win;
1984 }
1985
1986 EAPI void
1987 elm_win_resize_object_add(Evas_Object *obj, Evas_Object *subobj)
1988 {
1989    Evas_Coord w, h;
1990    Elm_Win *win;
1991    ELM_CHECK_WIDTYPE(obj, widtype);
1992    win = elm_widget_data_get(obj);
1993    if (!win) return;
1994    if (eina_list_data_find(win->subobjs, subobj)) return;
1995    win->subobjs = eina_list_append(win->subobjs, subobj);
1996    elm_widget_sub_object_add(obj, subobj);
1997    evas_object_event_callback_add(subobj, EVAS_CALLBACK_DEL,
1998                                   _elm_win_subobj_callback_del, obj);
1999    evas_object_event_callback_add(subobj, EVAS_CALLBACK_CHANGED_SIZE_HINTS,
2000                                   _elm_win_subobj_callback_changed_size_hints,
2001                                   obj);
2002    evas_object_geometry_get(obj, NULL, NULL, &w, &h);
2003    evas_object_move(subobj, 0, 0);
2004    evas_object_resize(subobj, w, h);
2005    _elm_win_eval_subobjs(obj);
2006 }
2007
2008 EAPI void
2009 elm_win_resize_object_del(Evas_Object *obj, Evas_Object *subobj)
2010 {
2011    Elm_Win *win;
2012    ELM_CHECK_WIDTYPE(obj, widtype);
2013    win = elm_widget_data_get(obj);
2014    if (!win) return;
2015    evas_object_event_callback_del_full(subobj,
2016                                        EVAS_CALLBACK_CHANGED_SIZE_HINTS,
2017                                        _elm_win_subobj_callback_changed_size_hints,
2018                                        obj);
2019    evas_object_event_callback_del_full(subobj, EVAS_CALLBACK_DEL,
2020                                        _elm_win_subobj_callback_del, obj);
2021    win->subobjs = eina_list_remove(win->subobjs, subobj);
2022    elm_widget_sub_object_del(obj, subobj);
2023    _elm_win_eval_subobjs(obj);
2024 }
2025
2026 EAPI void
2027 elm_win_title_set(Evas_Object *obj, const char *title)
2028 {
2029    Elm_Win *win;
2030    ELM_CHECK_WIDTYPE(obj, widtype);
2031    win = elm_widget_data_get(obj);
2032    if (!win || !title) return;
2033    ecore_evas_title_set(win->ee, title);
2034    if (win->frame_obj)
2035      edje_object_part_text_set(win->frame_obj, "elm.text.title", title);
2036 }
2037
2038 EAPI const char *
2039 elm_win_title_get(const Evas_Object *obj)
2040 {
2041    Elm_Win *win;
2042    ELM_CHECK_WIDTYPE(obj, widtype) NULL;
2043    win = elm_widget_data_get(obj);
2044    if (!win) return NULL;
2045    return ecore_evas_title_get(win->ee);
2046 }
2047
2048 EAPI void
2049 elm_win_autodel_set(Evas_Object *obj, Eina_Bool autodel)
2050 {
2051    Elm_Win *win;
2052    ELM_CHECK_WIDTYPE(obj, widtype);
2053    win = elm_widget_data_get(obj);
2054    if (!win) return;
2055    win->autodel = autodel;
2056 }
2057
2058 EAPI Eina_Bool
2059 elm_win_autodel_get(const Evas_Object *obj)
2060 {
2061    Elm_Win *win;
2062    ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
2063    win = elm_widget_data_get(obj);
2064    if (!win) return EINA_FALSE;
2065    return win->autodel;
2066 }
2067
2068 EAPI void
2069 elm_win_activate(Evas_Object *obj)
2070 {
2071    Elm_Win *win;
2072    ELM_CHECK_WIDTYPE(obj, widtype);
2073    win = elm_widget_data_get(obj);
2074    if (!win) return;
2075    ecore_evas_activate(win->ee);
2076 }
2077
2078 EAPI void
2079 elm_win_lower(Evas_Object *obj)
2080 {
2081    Elm_Win *win;
2082    ELM_CHECK_WIDTYPE(obj, widtype);
2083    win = elm_widget_data_get(obj);
2084    if (!win) return;
2085    ecore_evas_lower(win->ee);
2086 }
2087
2088 EAPI void
2089 elm_win_raise(Evas_Object *obj)
2090 {
2091    Elm_Win *win;
2092    ELM_CHECK_WIDTYPE(obj, widtype);
2093    win = elm_widget_data_get(obj);
2094    if (!win) return;
2095    ecore_evas_raise(win->ee);
2096 }
2097
2098 EAPI void
2099 elm_win_center(Evas_Object *obj, Eina_Bool h, Eina_Bool v)
2100 {
2101    Elm_Win *win;
2102    int win_w, win_h, screen_w, screen_h, nx, ny;
2103    ELM_CHECK_WIDTYPE(obj, widtype);
2104    win = elm_widget_data_get(obj);
2105    if (!win) return;
2106    ecore_evas_screen_geometry_get(win->ee, NULL, NULL, &screen_w, &screen_h);
2107    if ((!screen_w) || (!screen_h)) return;
2108    evas_object_geometry_get(obj, NULL, NULL, &win_w, &win_h);
2109    if ((!win_w) || (!win_h)) return;
2110    if (h) nx = win_w >= screen_w ? 0 : (screen_w / 2) - (win_w / 2);
2111    else nx = win->screen.x;
2112    if (v) ny = win_h >= screen_h ? 0 : (screen_h / 2) - (win_h / 2);
2113    else ny = win->screen.y;
2114    if (nx < 0) nx = 0;
2115    if (ny < 0) ny = 0;
2116    evas_object_move(obj, nx, ny);
2117 }
2118
2119 EAPI void
2120 elm_win_borderless_set(Evas_Object *obj, Eina_Bool borderless)
2121 {
2122    Elm_Win *win;
2123    ELM_CHECK_WIDTYPE(obj, widtype);
2124    win = elm_widget_data_get(obj);
2125    if (!win) return;
2126    ecore_evas_borderless_set(win->ee, borderless);
2127 #ifdef HAVE_ELEMENTARY_X
2128    _elm_win_xwin_update(win);
2129 #endif
2130 }
2131
2132 EAPI Eina_Bool
2133 elm_win_borderless_get(const Evas_Object *obj)
2134 {
2135    Elm_Win *win;
2136    ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
2137    win = elm_widget_data_get(obj);
2138    if (!win) return EINA_FALSE;
2139    return ecore_evas_borderless_get(win->ee);
2140 }
2141
2142 EAPI void
2143 elm_win_shaped_set(Evas_Object *obj, Eina_Bool shaped)
2144 {
2145    Elm_Win *win;
2146    ELM_CHECK_WIDTYPE(obj, widtype);
2147    win = elm_widget_data_get(obj);
2148    if (!win) return;
2149    ecore_evas_shaped_set(win->ee, shaped);
2150 #ifdef HAVE_ELEMENTARY_X
2151    _elm_win_xwin_update(win);
2152 #endif
2153 }
2154
2155 EAPI Eina_Bool
2156 elm_win_shaped_get(const Evas_Object *obj)
2157 {
2158    Elm_Win *win;
2159    ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
2160    win = elm_widget_data_get(obj);
2161    if (!win) return EINA_FALSE;
2162    return ecore_evas_shaped_get(win->ee);
2163 }
2164
2165 EAPI void
2166 elm_win_alpha_set(Evas_Object *obj, Eina_Bool alpha)
2167 {
2168    Elm_Win *win;
2169    ELM_CHECK_WIDTYPE(obj, widtype);
2170    win = elm_widget_data_get(obj);
2171    if (!win) return;
2172    if (win->frame_obj)
2173      {
2174      }
2175    else if (win->img_obj)
2176      {
2177         evas_object_image_alpha_set(win->img_obj, alpha);
2178         ecore_evas_alpha_set(win->ee, alpha);
2179      }
2180    else
2181      {
2182 #ifdef HAVE_ELEMENTARY_X
2183         if (win->xwin)
2184           {
2185              if (alpha)
2186                {
2187                   if (!_elm_config->compositing)
2188                      elm_win_shaped_set(obj, alpha);
2189                   else
2190                      ecore_evas_alpha_set(win->ee, alpha);
2191                }
2192              else
2193                 ecore_evas_alpha_set(win->ee, alpha);
2194              _elm_win_xwin_update(win);
2195           }
2196         else
2197 #endif
2198            ecore_evas_alpha_set(win->ee, alpha);
2199      }
2200 }
2201
2202 EAPI Eina_Bool
2203 elm_win_alpha_get(const Evas_Object *obj)
2204 {
2205    Elm_Win *win;
2206    ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
2207    win = elm_widget_data_get(obj);
2208    if (!win) return EINA_FALSE;
2209    if (win->frame_obj)
2210      {
2211      }
2212    else if (win->img_obj)
2213      {
2214         return evas_object_image_alpha_get(win->img_obj);
2215      }
2216    return ecore_evas_alpha_get(win->ee);
2217 }
2218
2219 EAPI void
2220 elm_win_transparent_set(Evas_Object *obj, Eina_Bool transparent)
2221 {
2222    Elm_Win *win;
2223    ELM_CHECK_WIDTYPE(obj, widtype);
2224    win = elm_widget_data_get(obj);
2225    if (!win) return;
2226
2227    if (win->frame_obj)
2228      {
2229      }
2230    else if (win->img_obj)
2231      {
2232         evas_object_image_alpha_set(win->img_obj, transparent);
2233      }
2234    else
2235      {
2236 #ifdef HAVE_ELEMENTARY_X
2237         if (win->xwin)
2238           {
2239              ecore_evas_transparent_set(win->ee, transparent);
2240              _elm_win_xwin_update(win);
2241           }
2242         else
2243 #endif
2244            ecore_evas_transparent_set(win->ee, transparent);
2245      }
2246 }
2247
2248 EAPI Eina_Bool
2249 elm_win_transparent_get(const Evas_Object *obj)
2250 {
2251    Elm_Win *win;
2252    ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
2253    win = elm_widget_data_get(obj);
2254    if (!win) return EINA_FALSE;
2255
2256    return ecore_evas_transparent_get(win->ee);
2257 }
2258
2259 EAPI void
2260 elm_win_override_set(Evas_Object *obj, Eina_Bool override)
2261 {
2262    Elm_Win *win;
2263    ELM_CHECK_WIDTYPE(obj, widtype);
2264    win = elm_widget_data_get(obj);
2265    if (!win) return;
2266    ecore_evas_override_set(win->ee, override);
2267 #ifdef HAVE_ELEMENTARY_X
2268    _elm_win_xwin_update(win);
2269 #endif
2270 }
2271
2272 EAPI Eina_Bool
2273 elm_win_override_get(const Evas_Object *obj)
2274 {
2275    Elm_Win *win;
2276    ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
2277    win = elm_widget_data_get(obj);
2278    if (!win) return EINA_FALSE;
2279    return ecore_evas_override_get(win->ee);
2280 }
2281
2282 EAPI void
2283 elm_win_fullscreen_set(Evas_Object *obj, Eina_Bool fullscreen)
2284 {
2285    Elm_Win *win;
2286    ELM_CHECK_WIDTYPE(obj, widtype);
2287    win = elm_widget_data_get(obj);
2288    if (!win) return;
2289    // YYY: handle if win->img_obj
2290 #define ENGINE_COMPARE(name) (!strcmp(_elm_config->engine, name))
2291    if (ENGINE_COMPARE(ELM_SOFTWARE_FB) ||
2292        ENGINE_COMPARE(ELM_SOFTWARE_16_WINCE))
2293      {
2294         // these engines... can ONLY be fullscreen
2295         return;
2296      }
2297    else
2298      {
2299         win->fullscreen = fullscreen;
2300         ecore_evas_fullscreen_set(win->ee, fullscreen);
2301 #ifdef HAVE_ELEMENTARY_X
2302         _elm_win_xwin_update(win);
2303 #endif
2304      }
2305 #undef ENGINE_COMPARE
2306 }
2307
2308 EAPI Eina_Bool
2309 elm_win_fullscreen_get(const Evas_Object *obj)
2310 {
2311    Elm_Win *win;
2312    ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
2313    win = elm_widget_data_get(obj);
2314    if (!win) return EINA_FALSE;
2315 #define ENGINE_COMPARE(name) (!strcmp(_elm_config->engine, name))
2316    if (ENGINE_COMPARE(ELM_SOFTWARE_FB) ||
2317        ENGINE_COMPARE(ELM_SOFTWARE_16_WINCE))
2318      {
2319         // these engines... can ONLY be fullscreen
2320         return EINA_TRUE;
2321      }
2322    else
2323      {
2324         return win->fullscreen;
2325      }
2326 #undef ENGINE_COMPARE
2327 }
2328
2329 EAPI void
2330 elm_win_maximized_set(Evas_Object *obj, Eina_Bool maximized)
2331 {
2332    Elm_Win *win;
2333    ELM_CHECK_WIDTYPE(obj, widtype);
2334    win = elm_widget_data_get(obj);
2335    if (!win) return;
2336    win->maximized = maximized;
2337    // YYY: handle if win->img_obj
2338    ecore_evas_maximized_set(win->ee, maximized);
2339 #ifdef HAVE_ELEMENTARY_X
2340    _elm_win_xwin_update(win);
2341 #endif
2342 }
2343
2344 EAPI Eina_Bool
2345 elm_win_maximized_get(const Evas_Object *obj)
2346 {
2347    Elm_Win *win;
2348    ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
2349    win = elm_widget_data_get(obj);
2350    if (!win) return EINA_FALSE;
2351    return win->maximized;
2352 }
2353
2354 EAPI void
2355 elm_win_iconified_set(Evas_Object *obj, Eina_Bool iconified)
2356 {
2357    Elm_Win *win;
2358    ELM_CHECK_WIDTYPE(obj, widtype);
2359    win = elm_widget_data_get(obj);
2360    if (!win) return;
2361    win->iconified = iconified;
2362    ecore_evas_iconified_set(win->ee, iconified);
2363 #ifdef HAVE_ELEMENTARY_X
2364    _elm_win_xwin_update(win);
2365 #endif
2366 }
2367
2368 EAPI Eina_Bool
2369 elm_win_iconified_get(const Evas_Object *obj)
2370 {
2371    Elm_Win *win;
2372    ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
2373    win = elm_widget_data_get(obj);
2374    if (!win) return EINA_FALSE;
2375    return win->iconified;
2376 }
2377
2378 EAPI void
2379 elm_win_withdrawn_set(Evas_Object *obj, Eina_Bool withdrawn)
2380 {
2381    Elm_Win *win;
2382    ELM_CHECK_WIDTYPE(obj, widtype);
2383    win = elm_widget_data_get(obj);
2384    if (!win) return;
2385    win->withdrawn = withdrawn;
2386    ecore_evas_withdrawn_set(win->ee, withdrawn);
2387 #ifdef HAVE_ELEMENTARY_X
2388    _elm_win_xwin_update(win);
2389 #endif
2390 }
2391
2392 EAPI Eina_Bool
2393 elm_win_widthdrawn_get(const Evas_Object *obj)
2394 {
2395    Elm_Win *win;
2396    ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
2397    win = elm_widget_data_get(obj);
2398    if (!win) return EINA_FALSE;
2399    return win->withdrawn;
2400 }
2401
2402 EAPI void
2403 elm_win_urgent_set(Evas_Object *obj, Eina_Bool urgent)
2404 {
2405    Elm_Win *win;
2406    ELM_CHECK_WIDTYPE(obj, widtype);
2407    win = elm_widget_data_get(obj);
2408    if (!win) return;
2409    win->urgent = urgent;
2410    ecore_evas_urgent_set(win->ee, urgent);
2411 #ifdef HAVE_ELEMENTARY_X
2412    _elm_win_xwin_update(win);
2413 #endif
2414 }
2415
2416 EAPI Eina_Bool
2417 elm_win_urgent_get(const Evas_Object *obj)
2418 {
2419    Elm_Win *win;
2420    ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
2421    win = elm_widget_data_get(obj);
2422    if (!win) return EINA_FALSE;
2423    return win->urgent;
2424 }
2425
2426 EAPI void
2427 elm_win_demand_attention_set(Evas_Object *obj, Eina_Bool demand_attention)
2428 {
2429    Elm_Win *win;
2430    ELM_CHECK_WIDTYPE(obj, widtype);
2431    win = elm_widget_data_get(obj);
2432    if (!win) return;
2433    win->demand_attention = demand_attention;
2434    ecore_evas_demand_attention_set(win->ee, demand_attention);
2435 #ifdef HAVE_ELEMENTARY_X
2436    _elm_win_xwin_update(win);
2437 #endif
2438 }
2439
2440 EAPI Eina_Bool
2441 elm_win_demand_attention_get(const Evas_Object *obj)
2442 {
2443    Elm_Win *win;
2444    ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
2445    win = elm_widget_data_get(obj);
2446    if (!win) return EINA_FALSE;
2447    return win->demand_attention;
2448 }
2449
2450 EAPI void
2451 elm_win_modal_set(Evas_Object *obj, Eina_Bool modal)
2452 {
2453    Elm_Win *win;
2454    ELM_CHECK_WIDTYPE(obj, widtype);
2455    win = elm_widget_data_get(obj);
2456    if (!win) return;
2457    win->modal = modal;
2458    ecore_evas_modal_set(win->ee, modal);
2459 #ifdef HAVE_ELEMENTARY_X
2460    _elm_win_xwin_update(win);
2461 #endif
2462 }
2463
2464 EAPI Eina_Bool
2465 elm_win_modal_get(const Evas_Object *obj)
2466 {
2467    Elm_Win *win;
2468    ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
2469    win = elm_widget_data_get(obj);
2470    if (!win) return EINA_FALSE;
2471    return win->modal;
2472 }
2473
2474 EAPI void
2475 elm_win_aspect_set(Evas_Object *obj, double aspect)
2476 {
2477    Elm_Win *win;
2478    ELM_CHECK_WIDTYPE(obj, widtype);
2479    win = elm_widget_data_get(obj);
2480    if (!win) return;
2481    win->aspect = aspect;
2482    ecore_evas_aspect_set(win->ee, aspect);
2483 #ifdef HAVE_ELEMENTARY_X
2484    _elm_win_xwin_update(win);
2485 #endif
2486 }
2487
2488 EAPI double
2489 elm_win_aspect_get(const Evas_Object *obj)
2490 {
2491    Elm_Win *win;
2492    ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
2493    win = elm_widget_data_get(obj);
2494    if (!win) return EINA_FALSE;
2495    return win->aspect;
2496 }
2497
2498 EAPI void
2499 elm_win_layer_set(Evas_Object *obj, int layer)
2500 {
2501    Elm_Win *win;
2502    ELM_CHECK_WIDTYPE(obj, widtype);
2503    win = elm_widget_data_get(obj);
2504    if (!win) return;
2505    ecore_evas_layer_set(win->ee, layer);
2506 #ifdef HAVE_ELEMENTARY_X
2507    _elm_win_xwin_update(win);
2508 #endif
2509 }
2510
2511 EAPI int
2512 elm_win_layer_get(const Evas_Object *obj)
2513 {
2514    Elm_Win *win;
2515    ELM_CHECK_WIDTYPE(obj, widtype) -1;
2516    win = elm_widget_data_get(obj);
2517    if (!win) return -1;
2518    return ecore_evas_layer_get(win->ee);
2519 }
2520
2521 EAPI void
2522 elm_win_rotation_set(Evas_Object *obj, int rotation)
2523 {
2524    Elm_Win *win;
2525    ELM_CHECK_WIDTYPE(obj, widtype);
2526    win = elm_widget_data_get(obj);
2527    if (!win) return;
2528    if (win->rot == rotation) return;
2529    win->rot = rotation;
2530    ecore_evas_rotation_set(win->ee, rotation);
2531    evas_object_size_hint_min_set(obj, -1, -1);
2532    evas_object_size_hint_max_set(obj, -1, -1);
2533    _elm_win_eval_subobjs(obj);
2534 #ifdef HAVE_ELEMENTARY_X
2535    _elm_win_xwin_update(win);
2536 #endif
2537 }
2538
2539 EAPI void
2540 elm_win_rotation_with_resize_set(Evas_Object *obj, int rotation)
2541 {
2542    Elm_Win *win;
2543    ELM_CHECK_WIDTYPE(obj, widtype);
2544    win = elm_widget_data_get(obj);
2545    if (!win) return;
2546    if (win->rot == rotation) return;
2547    win->rot = rotation;
2548    ecore_evas_rotation_with_resize_set(win->ee, rotation);
2549    evas_object_size_hint_min_set(obj, -1, -1);
2550    evas_object_size_hint_max_set(obj, -1, -1);
2551    _elm_win_eval_subobjs(obj);
2552 #ifdef HAVE_ELEMENTARY_X
2553    _elm_win_xwin_update(win);
2554 #endif
2555 }
2556
2557 EAPI int
2558 elm_win_rotation_get(const Evas_Object *obj)
2559 {
2560    Elm_Win *win;
2561    ELM_CHECK_WIDTYPE(obj, widtype) -1;
2562    win = elm_widget_data_get(obj);
2563    if (!win) return -1;
2564    return win->rot;
2565 }
2566
2567 EAPI void
2568 elm_win_sticky_set(Evas_Object *obj, Eina_Bool sticky)
2569 {
2570    Elm_Win *win;
2571    ELM_CHECK_WIDTYPE(obj, widtype);
2572    win = elm_widget_data_get(obj);
2573    if (!win) return;
2574    win->sticky = sticky;
2575    ecore_evas_sticky_set(win->ee, sticky);
2576 #ifdef HAVE_ELEMENTARY_X
2577    _elm_win_xwin_update(win);
2578 #endif
2579 }
2580
2581 EAPI Eina_Bool
2582 elm_win_sticky_get(const Evas_Object *obj)
2583 {
2584    Elm_Win *win;
2585    ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
2586    win = elm_widget_data_get(obj);
2587    if (!win) return EINA_FALSE;
2588    return win->sticky;
2589 }
2590
2591 EAPI void
2592 elm_win_keyboard_mode_set(Evas_Object *obj, Elm_Win_Keyboard_Mode mode)
2593 {
2594    Elm_Win *win;
2595    ELM_CHECK_WIDTYPE(obj, widtype);
2596    win = elm_widget_data_get(obj);
2597    if (!win) return;
2598    if (mode == win->kbdmode) return;
2599 #ifdef HAVE_ELEMENTARY_X
2600    _elm_win_xwindow_get(win);
2601 #endif
2602    win->kbdmode = mode;
2603 #ifdef HAVE_ELEMENTARY_X
2604    if (win->xwin)
2605      ecore_x_e_virtual_keyboard_state_set
2606         (win->xwin, (Ecore_X_Virtual_Keyboard_State)win->kbdmode);
2607 #endif
2608 }
2609
2610 EAPI Elm_Win_Keyboard_Mode
2611 elm_win_keyboard_mode_get(const Evas_Object *obj)
2612 {
2613    Elm_Win *win;
2614    ELM_CHECK_WIDTYPE(obj, widtype) ELM_WIN_KEYBOARD_UNKNOWN;
2615    win = elm_widget_data_get(obj);
2616    if (!win) return ELM_WIN_KEYBOARD_UNKNOWN;
2617    return win->kbdmode;
2618 }
2619
2620 EAPI void
2621 elm_win_keyboard_win_set(Evas_Object *obj, Eina_Bool is_keyboard)
2622 {
2623    Elm_Win *win;
2624    ELM_CHECK_WIDTYPE(obj, widtype);
2625    win = elm_widget_data_get(obj);
2626    if (!win) return;
2627 #ifdef HAVE_ELEMENTARY_X
2628    _elm_win_xwindow_get(win);
2629    if (win->xwin)
2630      ecore_x_e_virtual_keyboard_set(win->xwin, is_keyboard);
2631 #else
2632    (void) is_keyboard;
2633 #endif
2634 }
2635
2636 EAPI Eina_Bool
2637 elm_win_keyboard_win_get(const Evas_Object *obj)
2638 {
2639    Elm_Win *win;
2640    ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
2641    win = elm_widget_data_get(obj);
2642    if (!win) return EINA_FALSE;
2643 #ifdef HAVE_ELEMENTARY_X
2644    _elm_win_xwindow_get(win);
2645    if (win->xwin)
2646      return ecore_x_e_virtual_keyboard_get(win->xwin);
2647 #endif
2648    return EINA_FALSE;
2649 }
2650
2651 EAPI void
2652 elm_win_indicator_mode_set(Evas_Object *obj, Elm_Win_Indicator_Mode mode)
2653 {
2654    Elm_Win *win;
2655    ELM_CHECK_WIDTYPE(obj, widtype);
2656    win = elm_widget_data_get(obj);
2657    if (!win) return;
2658    if (mode == win->indmode) return;
2659 #ifdef HAVE_ELEMENTARY_X
2660    _elm_win_xwindow_get(win);
2661 #endif
2662    win->indmode = mode;
2663 #ifdef HAVE_ELEMENTARY_X
2664    if (win->xwin)
2665      {
2666         if (win->indmode == ELM_WIN_INDICATOR_SHOW)
2667           ecore_x_e_illume_indicator_state_set
2668           (win->xwin, ECORE_X_ILLUME_INDICATOR_STATE_ON);
2669         else if (win->indmode == ELM_WIN_INDICATOR_HIDE)
2670           ecore_x_e_illume_indicator_state_set
2671           (win->xwin, ECORE_X_ILLUME_INDICATOR_STATE_OFF);
2672      }
2673 #endif
2674 }
2675
2676 EAPI Elm_Win_Indicator_Mode
2677 elm_win_indicator_mode_get(const Evas_Object *obj)
2678 {
2679    Elm_Win *win;
2680    ELM_CHECK_WIDTYPE(obj, widtype) ELM_WIN_INDICATOR_UNKNOWN;
2681    win = elm_widget_data_get(obj);
2682    if (!win) return ELM_WIN_INDICATOR_UNKNOWN;
2683    return win->indmode;
2684 }
2685
2686 EAPI void
2687 elm_win_screen_position_get(const Evas_Object *obj, int *x, int *y)
2688 {
2689    Elm_Win *win;
2690    ELM_CHECK_WIDTYPE(obj, widtype);
2691    win = elm_widget_data_get(obj);
2692    if (!win) return;
2693    if (x) *x = win->screen.x;
2694    if (y) *y = win->screen.y;
2695 }
2696
2697 EAPI Eina_Bool
2698 elm_win_focus_get(const Evas_Object *obj)
2699 {
2700    Elm_Win *win;
2701    ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
2702    win = elm_widget_data_get(obj);
2703    if (!win) return EINA_FALSE;
2704    return ecore_evas_focus_get(win->ee);
2705 }
2706
2707 EAPI void
2708 elm_win_screen_constrain_set(Evas_Object *obj, Eina_Bool constrain)
2709 {
2710    Elm_Win *win;
2711    ELM_CHECK_WIDTYPE(obj, widtype);
2712    win = elm_widget_data_get(obj);
2713    if (!win) return;
2714    win->constrain = !!constrain;
2715 }
2716
2717 EAPI Eina_Bool
2718 elm_win_screen_constrain_get(Evas_Object *obj)
2719 {
2720    Elm_Win *win;
2721    ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
2722    win = elm_widget_data_get(obj);
2723    if (!win) return EINA_FALSE;
2724    return win->constrain;
2725 }
2726
2727 EAPI void
2728 elm_win_screen_size_get(const Evas_Object *obj, int *x, int *y, int *w, int *h)
2729 {
2730    Elm_Win *win;
2731    ELM_CHECK_WIDTYPE(obj, widtype);
2732    win = elm_widget_data_get(obj);
2733    if (!win) return;
2734    ecore_evas_screen_geometry_get(win->ee, x, y, w, h);
2735 }
2736
2737 EAPI void
2738 elm_win_conformant_set(Evas_Object *obj, Eina_Bool conformant)
2739 {
2740    Elm_Win *win;
2741    ELM_CHECK_WIDTYPE(obj, widtype);
2742    win = elm_widget_data_get(obj);
2743    if (!win) return;
2744 #ifdef HAVE_ELEMENTARY_X
2745    _elm_win_xwindow_get(win);
2746    if (win->xwin)
2747      ecore_x_e_illume_conformant_set(win->xwin, conformant);
2748 #else
2749    (void) conformant;
2750 #endif
2751 }
2752
2753 EAPI Eina_Bool
2754 elm_win_conformant_get(const Evas_Object *obj)
2755 {
2756    Elm_Win *win;
2757    ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
2758    win = elm_widget_data_get(obj);
2759    if (!win) return EINA_FALSE;
2760 #ifdef HAVE_ELEMENTARY_X
2761    _elm_win_xwindow_get(win);
2762    if (win->xwin)
2763      return ecore_x_e_illume_conformant_get(win->xwin);
2764 #endif
2765    return EINA_FALSE;
2766 }
2767
2768 EAPI void
2769 elm_win_quickpanel_set(Evas_Object *obj, Eina_Bool quickpanel)
2770 {
2771    Elm_Win *win;
2772    ELM_CHECK_WIDTYPE(obj, widtype);
2773    win = elm_widget_data_get(obj);
2774    if (!win) return;
2775 #ifdef HAVE_ELEMENTARY_X
2776    _elm_win_xwindow_get(win);
2777    if (win->xwin)
2778      {
2779         ecore_x_e_illume_quickpanel_set(win->xwin, quickpanel);
2780         if (quickpanel)
2781           {
2782              Ecore_X_Window_State states[2];
2783
2784              states[0] = ECORE_X_WINDOW_STATE_SKIP_TASKBAR;
2785              states[1] = ECORE_X_WINDOW_STATE_SKIP_PAGER;
2786              ecore_x_netwm_window_state_set(win->xwin, states, 2);
2787              ecore_x_icccm_hints_set(win->xwin, 0, 0, 0, 0, 0, 0, 0);
2788           }
2789      }
2790 #else
2791    (void) quickpanel;
2792 #endif
2793 }
2794
2795 EAPI Eina_Bool
2796 elm_win_quickpanel_get(const Evas_Object *obj)
2797 {
2798    Elm_Win *win;
2799    ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
2800    win = elm_widget_data_get(obj);
2801    if (!win) return EINA_FALSE;
2802 #ifdef HAVE_ELEMENTARY_X
2803    _elm_win_xwindow_get(win);
2804    if (win->xwin)
2805      return ecore_x_e_illume_quickpanel_get(win->xwin);
2806 #endif
2807    return EINA_FALSE;
2808 }
2809
2810 EAPI void
2811 elm_win_quickpanel_priority_major_set(Evas_Object *obj, int priority)
2812 {
2813    Elm_Win *win;
2814    ELM_CHECK_WIDTYPE(obj, widtype);
2815    win = elm_widget_data_get(obj);
2816    if (!win) return;
2817 #ifdef HAVE_ELEMENTARY_X
2818    _elm_win_xwindow_get(win);
2819    if (win->xwin)
2820      ecore_x_e_illume_quickpanel_priority_major_set(win->xwin, priority);
2821 #else
2822    (void) priority;
2823 #endif
2824 }
2825
2826 EAPI int
2827 elm_win_quickpanel_priority_major_get(const Evas_Object *obj)
2828 {
2829    Elm_Win *win;
2830    ELM_CHECK_WIDTYPE(obj, widtype) -1;
2831    win = elm_widget_data_get(obj);
2832    if (!win) return -1;
2833 #ifdef HAVE_ELEMENTARY_X
2834    _elm_win_xwindow_get(win);
2835    if (win->xwin)
2836      return ecore_x_e_illume_quickpanel_priority_major_get(win->xwin);
2837 #endif
2838    return -1;
2839 }
2840
2841 EAPI void
2842 elm_win_quickpanel_priority_minor_set(Evas_Object *obj, int priority)
2843 {
2844    Elm_Win *win;
2845    ELM_CHECK_WIDTYPE(obj, widtype);
2846    win = elm_widget_data_get(obj);
2847    if (!win) return;
2848 #ifdef HAVE_ELEMENTARY_X
2849    _elm_win_xwindow_get(win);
2850    if (win->xwin)
2851      ecore_x_e_illume_quickpanel_priority_minor_set(win->xwin, priority);
2852 #else
2853    (void) priority;
2854 #endif
2855 }
2856
2857 EAPI int
2858 elm_win_quickpanel_priority_minor_get(const Evas_Object *obj)
2859 {
2860    Elm_Win *win;
2861    ELM_CHECK_WIDTYPE(obj, widtype) -1;
2862    win = elm_widget_data_get(obj);
2863    if (!win) return -1;
2864 #ifdef HAVE_ELEMENTARY_X
2865    _elm_win_xwindow_get(win);
2866    if (win->xwin)
2867      return ecore_x_e_illume_quickpanel_priority_minor_get(win->xwin);
2868 #endif
2869    return -1;
2870 }
2871
2872 EAPI void
2873 elm_win_quickpanel_zone_set(Evas_Object *obj, int zone)
2874 {
2875    Elm_Win *win;
2876    ELM_CHECK_WIDTYPE(obj, widtype);
2877    win = elm_widget_data_get(obj);
2878    if (!win) return;
2879 #ifdef HAVE_ELEMENTARY_X
2880    _elm_win_xwindow_get(win);
2881    if (win->xwin)
2882      ecore_x_e_illume_quickpanel_zone_set(win->xwin, zone);
2883 #else
2884    (void) zone;
2885 #endif
2886 }
2887
2888 EAPI int
2889 elm_win_quickpanel_zone_get(const Evas_Object *obj)
2890 {
2891    Elm_Win *win;
2892    ELM_CHECK_WIDTYPE(obj, widtype) 0;
2893    win = elm_widget_data_get(obj);
2894    if (!win) return 0;
2895 #ifdef HAVE_ELEMENTARY_X
2896    _elm_win_xwindow_get(win);
2897    if (win->xwin)
2898      return ecore_x_e_illume_quickpanel_zone_get(win->xwin);
2899 #endif
2900    return 0;
2901 }
2902
2903 EAPI void
2904 elm_win_prop_focus_skip_set(Evas_Object *obj, Eina_Bool skip)
2905 {
2906    Elm_Win *win;
2907    ELM_CHECK_WIDTYPE(obj, widtype);
2908    win = elm_widget_data_get(obj);
2909    if (!win) return;
2910    win->skip_focus = skip;
2911    ecore_evas_focus_skip_set(win->ee, skip);
2912 }
2913
2914 EAPI void
2915 elm_win_illume_command_send(Evas_Object *obj, Elm_Illume_Command command, void *params __UNUSED__)
2916 {
2917    Elm_Win *win;
2918    ELM_CHECK_WIDTYPE(obj, widtype);
2919    win = elm_widget_data_get(obj);
2920    if (!win) return;
2921 #ifdef HAVE_ELEMENTARY_X
2922    _elm_win_xwindow_get(win);
2923    if (win->xwin)
2924      {
2925         switch (command)
2926           {
2927            case ELM_ILLUME_COMMAND_FOCUS_BACK:
2928               ecore_x_e_illume_focus_back_send(win->xwin);
2929               break;
2930            case ELM_ILLUME_COMMAND_FOCUS_FORWARD:
2931               ecore_x_e_illume_focus_forward_send(win->xwin);
2932               break;
2933            case ELM_ILLUME_COMMAND_FOCUS_HOME:
2934               ecore_x_e_illume_focus_home_send(win->xwin);
2935               break;
2936            case ELM_ILLUME_COMMAND_CLOSE:
2937               ecore_x_e_illume_close_send(win->xwin);
2938               break;
2939            default:
2940               break;
2941           }
2942      }
2943 #else
2944    (void) command;
2945 #endif
2946 }
2947
2948 EAPI Evas_Object *
2949 elm_win_inlined_image_object_get(Evas_Object *obj)
2950 {
2951    Elm_Win *win;
2952    ELM_CHECK_WIDTYPE(obj, widtype) NULL;
2953    win = elm_widget_data_get(obj);
2954    if (!win) return NULL;
2955    return win->img_obj;
2956 }
2957
2958 EAPI void
2959 elm_win_focus_highlight_enabled_set(Evas_Object *obj, Eina_Bool enabled)
2960 {
2961    Elm_Win *win;
2962
2963    ELM_CHECK_WIDTYPE(obj, widtype);
2964
2965    win = elm_widget_data_get(obj);
2966    enabled = !!enabled;
2967    if (win->focus_highlight.enabled == enabled)
2968      return;
2969
2970    win->focus_highlight.enabled = enabled;
2971
2972    if (win->focus_highlight.enabled)
2973      _elm_win_focus_highlight_init(win);
2974    else
2975      _elm_win_focus_highlight_shutdown(win);
2976 }
2977
2978 EAPI Eina_Bool
2979 elm_win_focus_highlight_enabled_get(const Evas_Object *obj)
2980 {
2981    Elm_Win *win;
2982
2983    ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
2984
2985    win = elm_widget_data_get(obj);
2986    return win->focus_highlight.enabled;
2987 }
2988
2989 EAPI void
2990 elm_win_focus_highlight_style_set(Evas_Object *obj, const char *style)
2991 {
2992    Elm_Win *win;
2993
2994    ELM_CHECK_WIDTYPE(obj, widtype);
2995
2996    win = elm_widget_data_get(obj);
2997    eina_stringshare_replace(&win->focus_highlight.style, style);
2998    win->focus_highlight.changed_theme = EINA_TRUE;
2999    _elm_win_focus_highlight_reconfigure_job_start(win);
3000 }
3001
3002 EAPI const char *
3003 elm_win_focus_highlight_style_get(const Evas_Object *obj)
3004 {
3005    Elm_Win *win;
3006
3007    ELM_CHECK_WIDTYPE(obj, widtype) NULL;
3008
3009    win = elm_widget_data_get(obj);
3010    return win->focus_highlight.style;
3011 }
3012
3013 typedef struct _Widget_Data Widget_Data;
3014
3015 struct _Widget_Data
3016 {
3017    Evas_Object *frm;
3018    Evas_Object *content;
3019 };
3020
3021 static void _del_hook(Evas_Object *obj);
3022 static void _theme_hook(Evas_Object *obj);
3023 static void _sizing_eval(Evas_Object *obj);
3024 static void _changed_size_hints(void *data, Evas *e, Evas_Object *obj, void *event_info);
3025 static void _sub_del(void *data, Evas_Object *obj, void *event_info);
3026
3027 static const char *widtype2 = NULL;
3028
3029 static void
3030 _del_hook(Evas_Object *obj)
3031 {
3032    Widget_Data *wd = elm_widget_data_get(obj);
3033    if (!wd) return;
3034    free(wd);
3035 }
3036
3037 static void
3038 _theme_hook(Evas_Object *obj)
3039 {
3040    Widget_Data *wd = elm_widget_data_get(obj);
3041    _elm_theme_object_set(obj, wd->frm, "win", "inwin", elm_widget_style_get(obj));
3042    if (wd->content)
3043      edje_object_part_swallow(wd->frm, "elm.swallow.content", wd->content);
3044    _sizing_eval(obj);
3045
3046    evas_object_smart_callback_call(obj, SIG_THEME_CHANGED, NULL);
3047 }
3048
3049 static Eina_Bool
3050 _elm_inwin_focus_next_hook(const Evas_Object *obj, Elm_Focus_Direction dir, Evas_Object **next)
3051 {
3052    Widget_Data *wd = elm_widget_data_get(obj);
3053
3054    if (!wd)
3055      return EINA_FALSE;
3056
3057    /* Try Focus cycle in subitem */
3058    if (wd->content)
3059      {
3060         elm_widget_focus_next_get(wd->content, dir, next);
3061         if (*next)
3062           return EINA_TRUE;
3063      }
3064
3065    *next = (Evas_Object *)obj;
3066    return EINA_FALSE;
3067 }
3068
3069 static void
3070 _elm_inwin_text_set_hook(Evas_Object *obj, const char *item, const char *text)
3071 {
3072    Widget_Data *wd = elm_widget_data_get(obj);
3073
3074    if (!wd || !item) return;
3075    edje_object_part_text_set(wd->frm, item, text);
3076    _sizing_eval(obj);
3077 }
3078
3079 static const char *
3080 _elm_inwin_text_get_hook(const Evas_Object *obj, const char *item)
3081 {
3082    Widget_Data *wd = elm_widget_data_get(obj);
3083
3084    if (!item || !wd || !wd->frm) return NULL;
3085    return edje_object_part_text_get(wd->frm, item);
3086 }
3087
3088 static void
3089 _sizing_eval(Evas_Object *obj)
3090 {
3091    Widget_Data *wd = elm_widget_data_get(obj);
3092    Evas_Coord minw = -1, minh = -1;
3093
3094    evas_object_size_hint_min_get(wd->content, &minw, &minh);
3095    edje_object_size_min_calc(wd->frm, &minw, &minh);
3096    evas_object_size_hint_min_set(obj, minw, minh);
3097    evas_object_size_hint_max_set(obj, -1, -1);
3098 }
3099
3100 static void
3101 _changed_size_hints(void *data, Evas *e __UNUSED__, Evas_Object *obj __UNUSED__, void *event_info __UNUSED__)
3102 {
3103    _sizing_eval(data);
3104 }
3105
3106 static void
3107 _sub_del(void *data __UNUSED__, Evas_Object *obj, void *event_info)
3108 {
3109    Widget_Data *wd = elm_widget_data_get(obj);
3110    Evas_Object *sub = event_info;
3111    if (sub == wd->content)
3112      {
3113         evas_object_event_callback_del_full
3114            (sub, EVAS_CALLBACK_CHANGED_SIZE_HINTS, _changed_size_hints, obj);
3115         wd->content = NULL;
3116         _sizing_eval(obj);
3117      }
3118 }
3119
3120 EAPI Evas_Object *
3121 elm_win_inwin_add(Evas_Object *obj)
3122 {
3123    Evas_Object *obj2;
3124    Widget_Data *wd;
3125    Elm_Win *win;
3126
3127    ELM_CHECK_WIDTYPE(obj, widtype) NULL;
3128    win = elm_widget_data_get(obj);
3129    if (!win) return NULL;
3130    wd = ELM_NEW(Widget_Data);
3131    obj2 = elm_widget_add(win->evas);
3132    elm_widget_type_set(obj2, "inwin");
3133    ELM_SET_WIDTYPE(widtype2, "inwin");
3134    elm_widget_sub_object_add(obj, obj2);
3135    evas_object_size_hint_weight_set(obj2, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND);
3136    evas_object_size_hint_align_set(obj2, EVAS_HINT_FILL, EVAS_HINT_FILL);
3137    elm_win_resize_object_add(obj, obj2);
3138
3139    elm_widget_data_set(obj2, wd);
3140    elm_widget_del_hook_set(obj2, _del_hook);
3141    elm_widget_theme_hook_set(obj2, _theme_hook);
3142    elm_widget_focus_next_hook_set(obj2, _elm_inwin_focus_next_hook);
3143    elm_widget_text_set_hook_set(obj2, _elm_inwin_text_set_hook);
3144    elm_widget_text_get_hook_set(obj2, _elm_inwin_text_get_hook);
3145    elm_widget_can_focus_set(obj2, EINA_TRUE);
3146    elm_widget_highlight_ignore_set(obj2, EINA_TRUE);
3147
3148    wd->frm = edje_object_add(win->evas);
3149    _elm_theme_object_set(obj, wd->frm, "win", "inwin", "default");
3150    elm_widget_resize_object_set(obj2, wd->frm);
3151
3152    evas_object_smart_callback_add(obj2, "sub-object-del", _sub_del, obj2);
3153
3154    _sizing_eval(obj2);
3155    return obj2;
3156 }
3157
3158 EAPI void
3159 elm_win_inwin_activate(Evas_Object *obj)
3160 {
3161    ELM_CHECK_WIDTYPE(obj, widtype2);
3162    Widget_Data *wd = elm_widget_data_get(obj);
3163    if (!wd) return;
3164    evas_object_raise(obj);
3165    evas_object_show(obj);
3166    edje_object_signal_emit(wd->frm, "elm,action,show", "elm");
3167    elm_object_focus_set(obj, EINA_TRUE);
3168 }
3169
3170 EAPI void
3171 elm_win_inwin_content_set(Evas_Object *obj, Evas_Object *content)
3172 {
3173    ELM_CHECK_WIDTYPE(obj, widtype2);
3174    Widget_Data *wd = elm_widget_data_get(obj);
3175    if (!wd) return;
3176    if (wd->content == content) return;
3177    if (wd->content) evas_object_del(wd->content);
3178    wd->content = content;
3179    if (content)
3180      {
3181         elm_widget_sub_object_add(obj, content);
3182         evas_object_event_callback_add(content, EVAS_CALLBACK_CHANGED_SIZE_HINTS,
3183                                        _changed_size_hints, obj);
3184         edje_object_part_swallow(wd->frm, "elm.swallow.content", content);
3185      }
3186    _sizing_eval(obj);
3187 }
3188
3189 EAPI Evas_Object *
3190 elm_win_inwin_content_get(const Evas_Object *obj)
3191 {
3192    ELM_CHECK_WIDTYPE(obj, widtype2) NULL;
3193    Widget_Data *wd = elm_widget_data_get(obj);
3194    if (!wd) return NULL;
3195    return wd->content;
3196 }
3197
3198 EAPI Evas_Object *
3199 elm_win_inwin_content_unset(Evas_Object *obj)
3200 {
3201    ELM_CHECK_WIDTYPE(obj, widtype2) NULL;
3202    Widget_Data *wd = elm_widget_data_get(obj);
3203    if (!wd) return NULL;
3204    if (!wd->content) return NULL;
3205    Evas_Object *content = wd->content;
3206    elm_widget_sub_object_del(obj, wd->content);
3207    evas_object_event_callback_del_full(wd->content,
3208                                        EVAS_CALLBACK_CHANGED_SIZE_HINTS,
3209                                        _changed_size_hints, obj);
3210    edje_object_part_unswallow(wd->frm, wd->content);
3211    wd->content = NULL;
3212    return content;
3213 }
3214
3215 EAPI Eina_Bool
3216 elm_win_socket_listen(Evas_Object *obj, const char *svcname, int svcnum, Eina_Bool svcsys)
3217 {
3218
3219    Elm_Win *win;
3220
3221    ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
3222    win = elm_widget_data_get(obj);
3223    if (!win) return EINA_FALSE;
3224    if (!win->ee) return EINA_FALSE;
3225
3226    if(!ecore_evas_extn_socket_listen(win->ee, svcname, svcnum, svcsys))
3227      return EINA_FALSE;
3228
3229    return EINA_TRUE;
3230 }
3231
3232 /* windowing spcific calls - shall we do this differently? */
3233
3234 static Ecore_X_Window
3235 _elm_ee_win_get(const Evas_Object *obj)
3236 {
3237    if (!obj) return 0;
3238 #ifdef HAVE_ELEMENTARY_X
3239    Ecore_Evas *ee = ecore_evas_ecore_evas_get(evas_object_evas_get(obj));
3240    if (ee) return (Ecore_X_Window)ecore_evas_window_get(ee);
3241 #endif
3242    return 0;
3243 }
3244
3245 EAPI Ecore_X_Window
3246 elm_win_xwindow_get(const Evas_Object *obj)
3247 {
3248    Elm_Win *win;
3249    const char *type;
3250
3251    if (!obj) return 0;
3252    type = elm_widget_type_get(obj);
3253    if ((!type) || (type != widtype)) return _elm_ee_win_get(obj);
3254    win = elm_widget_data_get(obj);
3255    if (!win) return 0;
3256 #ifdef HAVE_ELEMENTARY_X
3257    if (win->xwin) return win->xwin;
3258    if (win->parent) return elm_win_xwindow_get(win->parent);
3259 #endif
3260    return 0;
3261 }