summaryrefslogtreecommitdiff
path: root/src/lib/elementary/efl_ui_popup_alert_text.eo
blob: 6cffd05bd743a8dada78889c26225719d04dbe8f (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
class Efl.Ui.Popup.Alert.Text(Efl.Ui.Popup.Alert, Efl.Text)
{
   methods {
       @property expandable {
           set {
             [[Set the expandable of popup.

               If the contents of the popup has min size, popup will be increased by min size to the y direction.
               If max hint is set, it will be increased to value of max hint,
               and then scrolling will occur.
             ]]
           }
           values {
               is_expandable_w: bool;
               is_expandable_h: bool;
           }
       }
   }
   implements {
      Efl.Object.constructor;
      Efl.Gfx.Size.Hint.hint_max { set;}
      Efl.Gfx.size { set;}
      Efl.Text.text { get; set; }
      Efl.Part.part;
   }
}