summaryrefslogtreecommitdiff
path: root/src/lib/elementary/efl_ui_button.eo
blob: ff79209e277affcb14cefa18c9d1860593485893 (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 @beta Efl.Ui.Button extends Efl.Ui.Layout implements Efl.Ui.Clickable, Efl.Ui.Autorepeat,
                     Efl.Text, Efl.Content,
                     Efl.Access.Widget.Action
{
   [[Push-button widget

     Press it and run some function. It can contain a simple label and icon
     object and it also has an autorepeat feature.
   ]]
   legacy_prefix: elm_button;
   implements {
      class.constructor;
      Efl.Object.constructor;
      Efl.Ui.Autorepeat.autorepeat_initial_timeout { set; get; }
      Efl.Ui.Autorepeat.autorepeat_gap_timeout { set; get; }
      Efl.Ui.Autorepeat.autorepeat_enabled { set; get; }
      Efl.Ui.Autorepeat.autorepeat_supported { get;}
      Efl.Ui.Widget.on_access_activate;
      Efl.Ui.Widget.widget_event;
      Efl.Access.Widget.Action.elm_actions { get; }
      Efl.Content.content { get; set; }
      Efl.Content.content_unset;
      Efl.Text.text { get; set; }
      Efl.Ui.L10n.l10n_text { get; set; }
   }
}