summaryrefslogtreecommitdiff
path: root/src/lib/elementary/efl_ui_popup.eo
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/elementary/efl_ui_popup.eo')
-rw-r--r--src/lib/elementary/efl_ui_popup.eo25
1 files changed, 4 insertions, 21 deletions
diff --git a/src/lib/elementary/efl_ui_popup.eo b/src/lib/elementary/efl_ui_popup.eo
index 09871c407f..48407fff7e 100644
--- a/src/lib/elementary/efl_ui_popup.eo
+++ b/src/lib/elementary/efl_ui_popup.eo
@@ -10,27 +10,6 @@ enum Efl.Ui.Popup.Align {
class Efl.Ui.Popup(Efl.Ui.Layout)
{
methods {
- backwall_set {
- params {
- @in file: string; [[The image file path.]]
- @in group: string; [[The image key in $file (if its an Eet one), or
- $null, otherwise.]]
- }
- }
- @property backwall_repeat_events {
- set {
- [[Sets whether events should be passed to by a click outside.
-
- Note: The default value is $false.
- ]]
- }
- get {
- [[Returns value indicating whether backwall repeat events is enabled or not.]]
- }
- values {
- repeat: bool; [[If $true, events are passed to lower objects.]]
- }
- }
@property align {
set {
[[ Set the popup alignment.]]
@@ -56,6 +35,9 @@ class Efl.Ui.Popup(Efl.Ui.Layout)
}
}
}
+ parts {
+ backwall: Efl.Ui.Popup.Part; [[A backwall behind the popup.]]
+ }
implements {
Efl.Object.constructor;
Efl.Object.destructor;
@@ -64,6 +46,7 @@ class Efl.Ui.Popup(Efl.Ui.Layout)
Elm.Widget.widget_parent { set; }
Efl.Container.content { get; set; }
Efl.Container.content_unset;
+ Efl.Part.part;
}
events {
backwall,clicked; [[This is called whenever the user clicks back wall of popup.]]