summaryrefslogtreecommitdiff
path: root/src/lib/elementary/efl_ui_popup_alert_scroll.eo
blob: f3f9e6ccb94a1b0d993e8c93c7bedff498ebe660 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
import eina_types;

class Efl.Ui.Popup_Alert_Scroll(Efl.Ui.Popup_Alert)
{
   [[EFL UI Popup Alert Scroll class]]
   methods {
      @property expandable @beta {
         set {
            [[Set the expandable max size of popup.

              If the given max_size is -1, then a popup appears with its size.
              However, if the given max_size is bigger than 0 the popup size is up to the given max_size. If popup content's min size is bigger than the given max_size the 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 the popup size is up to the given max_size. If popup content's min size is bigger than the given max_size the 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;}
   }
}