summaryrefslogtreecommitdiff
path: root/src/lib/elementary/elm_player.eo
blob: 119070fa6c60ab6a870c93408cbec208930e0c93 (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
class Elm.Player (Elm.Layout, Elm.Interface.Atspi_Widget_Action)
{
   legacy_prefix: elm_player;
   eo_prefix: elm_obj_player;
   implements {
      class.constructor;
      Eo.Base.constructor;
      Evas.Object.Smart.add;
      Evas.Object.Smart.del;
      Elm.Widget.theme_apply;
      Elm.Widget.event;
      Efl.Container.content.set;
      Elm.Layout.sizing_eval;
      Elm.Interface.Atspi_Widget_Action.elm_actions.get;
   }
   events {
      forward,clicked;
      info,clicked;
      next,clicked;
      pause,clicked;
      play,clicked;
      prev,clicked;
      rewind,clicked;
      quality,clicked;
      eject,clicked;
      volume,clicked;
      mute,clicked;
   }

}