summaryrefslogtreecommitdiff
path: root/src/lib/elementary/efl_ui_popup_alert_text.eo
blob: 598b24fa6a33ae64c8e0b90473ee95e065964cb6 (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
import eina_types;

class Efl.Ui.Popup_Alert_Text(Efl.Ui.Popup_Alert, Efl.Text)
{
   [[EFL UI Popup Alert Text class]]
   methods {
      @property expandable {
         set {
            [[Set the expandable of popup.

              If the contents of the popup has min size, the popup will be increased by min size along the Y axis.
              If max hint is set it will be increased to the value of max hint
              and scrolling will occur.
            ]]
         }
         values {
            max_size: Eina.Size2D; [[A 2D max size in pixel uinits.]]
         }
      }
   }
   implements {
      Efl.Object.constructor;
      Efl.Canvas.Group.group_calculate;
      Efl.Ui.Popup.popup_size { set;}
      Efl.Text.text { get; set; }
      Efl.Part.part_get;
   }
}