summaryrefslogtreecommitdiff
path: root/src/lib/elementary/efl_ui_popup_alert_scroll.eo
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/elementary/efl_ui_popup_alert_scroll.eo')
-rw-r--r--src/lib/elementary/efl_ui_popup_alert_scroll.eo25
1 files changed, 25 insertions, 0 deletions
diff --git a/src/lib/elementary/efl_ui_popup_alert_scroll.eo b/src/lib/elementary/efl_ui_popup_alert_scroll.eo
index af13c9b395..33302b915b 100644
--- a/src/lib/elementary/efl_ui_popup_alert_scroll.eo
+++ b/src/lib/elementary/efl_ui_popup_alert_scroll.eo
@@ -1,7 +1,32 @@
+import eina_types;
+
class Efl.Ui.Popup_Alert_Scroll(Efl.Ui.Popup_Alert)
{
+ methods {
+ @property expandable {
+ set {
+ [[Set the expandable max size of popup.
+
+ If the given max_size is -1, then popup appears with its size.
+ However, if the given max_size is bigger than 0, then popup size is upto the given max_size. If popup content's min size is bigger than the given max_size, then scroller appears in the popup content area.
+ ]]
+ }
+ get {
+ [[Get the expandable max size of popup.
+
+ If the given max_size is -1, then popup appears with its size.
+ However, if the given max_size is bigger than 0, then popup size is upto the given max_size. If popup content's min size is bigger than the given max_size, then scroller appears in the popup content area.
+ ]]
+ }
+ values {
+ max_size: Eina.Size2D; [[A 2D max size in pixel units.]]
+ }
+ }
+ }
implements {
Efl.Object.constructor;
+ Efl.Canvas.Group.group_calculate;
Efl.Part.part;
+ Efl.Ui.Popup.popup_size { set;}
}
}