efl/src/lib/elementary/elm_inwin.eo

29 lines
927 B
Plaintext
Raw Normal View History

class Elm.Inwin extends Efl.Ui.Layout_Base implements Efl.Ui.Focus.Layer, Efl.Content, Efl.Ui.Legacy
2014-03-23 05:33:03 -07:00
{
[[Elementary inwin class]]
legacy_prefix: elm_inwin;
2014-03-23 05:33:03 -07:00
eo_prefix: elm_obj_win_inwin;
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;
Efl.Object.constructor;
Efl.Ui.Widget.widget_parent { set; }
Efl.Content.content { get; set; }
Efl.Content.content_unset;
2014-03-23 05:33:03 -07:00
}
}