summaryrefslogtreecommitdiff
path: root/src/lib/elementary/elm_inwin.eo
blob: 38e9929d2d273836c70d474a0776676e5783a070 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
class Elm.Inwin (Elm.Layout)
{
   eo_prefix: elm_obj_win_inwin;
   data: null;
   methods {
      activate {
         [[Activates an inwin object, ensuring its visibility

           This function will make sure that the inwin $obj is completely visible
           by calling evas_object_show() and evas_object_raise() on it, to bring it
           to the front. It also sets the keyboard focus to it, which will be passed
           onto its content.

           The object's theme will also receive the signal "elm,action,show" with
           source "elm".]]

         legacy: elm_win_inwin_activate;
      }
   }
   implements {
      class.constructor;
      Eo.Base.constructor;
      Evas.Object_Smart.add;
      Elm.Widget.widget_parent.set;
      Elm.Widget.focus_next_manager_is;
      Elm.Widget.focus_next;
      Elm.Layout.content_aliases.get;
      Elm.Layout.sizing_eval;
   }

}