efl/src/lib/elementary/elm_inwin.eo

32 lines
928 B
Plaintext
Raw Normal View History

class Elm.Inwin (Elm.Layout)
2014-03-23 05:33:03 -07:00
{
legacy_prefix: elm_inwin;
2014-03-23 05:33:03 -07:00
eo_prefix: elm_obj_win_inwin;
data: null;
methods {
activate {
2015-08-07 06:37:49 -07:00
[[Activates an inwin object, ensuring its visibility
2014-03-23 05:33:03 -07:00
2015-08-07 06:37:49 -07:00
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.
2014-03-23 05:33:03 -07:00
2015-08-07 06:37:49 -07:00
The object's theme will also receive the signal "elm,action,show" with
source "elm".]]
2014-03-23 05:33:03 -07:00
legacy: elm_win_inwin_activate;
2014-03-23 05:33:03 -07:00
}
}
implements {
class.constructor;
Eo.Base.constructor;
Efl.Canvas.Group.group_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;
2014-03-23 05:33:03 -07:00
}
}