efl/src/lib/elementary/efl_ui_popup_anchor.eo

43 lines
1.4 KiB
Plaintext

class Efl.Ui.Popup_Anchor(Efl.Ui.Popup)
{
[[EFL UI Popup Anchor class]]
methods {
@property anchor {
set {
[[Set anchor popup follows the anchor object.
If anchor object is moved or parent window is resized, the anchor popup moves to the new position.
If anchor object is set NULL, the anchor popup stop to following anchor object.
When the popup is moved by using gfx_position_set, anchor is set NULL.
]]
}
get {
[[Returns the anchor object which the popup is following.]]
}
values {
anchor: Efl.Canvas.Object; [[The object which popup is following.]]
}
}
@property align_priority @beta {
set {
[[Set the align priority of a popup.]]
}
get {
[[Get the align priority of a popup.]]
}
values {
first: Efl.Ui.Popup.Align; [[First align priority]]
second: Efl.Ui.Popup.Align; [[Second align priority]]
third: Efl.Ui.Popup.Align; [[Third align priority]]
fourth: Efl.Ui.Popup.Align; [[Fourth align priority]]
fifth: Efl.Ui.Popup.Align; [[Fifth align priority]]
}
}
}
implements {
Efl.Object.constructor;
Efl.Object.destructor;
Efl.Canvas.Group.group_calculate;
Efl.Gfx.position { set; }
}
}