summaryrefslogtreecommitdiff
path: root/src/lib/elementary/elm_player_eo.h
blob: c0b909863cccf7d7122f7d14c64644bd28009a02 (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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
#ifndef _ELM_PLAYER_EO_H_
#define _ELM_PLAYER_EO_H_

#ifndef _ELM_PLAYER_EO_CLASS_TYPE
#define _ELM_PLAYER_EO_CLASS_TYPE

typedef Eo Elm_Player;

#endif

#ifndef _ELM_PLAYER_EO_TYPES
#define _ELM_PLAYER_EO_TYPES


#endif
/** Elementary player class
 *
 * @ingroup Elm_Player
 */
#define ELM_PLAYER_CLASS elm_player_class_get()

EWAPI const Efl_Class *elm_player_class_get(void) EINA_CONST;

EWAPI extern const Efl_Event_Description _ELM_PLAYER_EVENT_FORWARD_CLICKED;

/** Called when forward was clicked
 *
 * @ingroup Elm_Player
 */
#define ELM_PLAYER_EVENT_FORWARD_CLICKED (&(_ELM_PLAYER_EVENT_FORWARD_CLICKED))

EWAPI extern const Efl_Event_Description _ELM_PLAYER_EVENT_INFO_CLICKED;

/** Called when info was clicked
 *
 * @ingroup Elm_Player
 */
#define ELM_PLAYER_EVENT_INFO_CLICKED (&(_ELM_PLAYER_EVENT_INFO_CLICKED))

EWAPI extern const Efl_Event_Description _ELM_PLAYER_EVENT_NEXT_CLICKED;

/** Called when next was clicked
 *
 * @ingroup Elm_Player
 */
#define ELM_PLAYER_EVENT_NEXT_CLICKED (&(_ELM_PLAYER_EVENT_NEXT_CLICKED))

EWAPI extern const Efl_Event_Description _ELM_PLAYER_EVENT_PAUSE_CLICKED;

/** Called when pause was clicked
 *
 * @ingroup Elm_Player
 */
#define ELM_PLAYER_EVENT_PAUSE_CLICKED (&(_ELM_PLAYER_EVENT_PAUSE_CLICKED))

EWAPI extern const Efl_Event_Description _ELM_PLAYER_EVENT_PLAY_CLICKED;

/** Called when play was clicked
 *
 * @ingroup Elm_Player
 */
#define ELM_PLAYER_EVENT_PLAY_CLICKED (&(_ELM_PLAYER_EVENT_PLAY_CLICKED))

EWAPI extern const Efl_Event_Description _ELM_PLAYER_EVENT_PREV_CLICKED;

/** Called when previous was clicked
 *
 * @ingroup Elm_Player
 */
#define ELM_PLAYER_EVENT_PREV_CLICKED (&(_ELM_PLAYER_EVENT_PREV_CLICKED))

EWAPI extern const Efl_Event_Description _ELM_PLAYER_EVENT_REWIND_CLICKED;

/** Called when rewind was clicked
 *
 * @ingroup Elm_Player
 */
#define ELM_PLAYER_EVENT_REWIND_CLICKED (&(_ELM_PLAYER_EVENT_REWIND_CLICKED))

EWAPI extern const Efl_Event_Description _ELM_PLAYER_EVENT_QUALITY_CLICKED;

/** Called when quality was clicked
 *
 * @ingroup Elm_Player
 */
#define ELM_PLAYER_EVENT_QUALITY_CLICKED (&(_ELM_PLAYER_EVENT_QUALITY_CLICKED))

EWAPI extern const Efl_Event_Description _ELM_PLAYER_EVENT_EJECT_CLICKED;

/** Called when eject was clicked
 *
 * @ingroup Elm_Player
 */
#define ELM_PLAYER_EVENT_EJECT_CLICKED (&(_ELM_PLAYER_EVENT_EJECT_CLICKED))

EWAPI extern const Efl_Event_Description _ELM_PLAYER_EVENT_VOLUME_CLICKED;

/** Called when volume was clicked
 *
 * @ingroup Elm_Player
 */
#define ELM_PLAYER_EVENT_VOLUME_CLICKED (&(_ELM_PLAYER_EVENT_VOLUME_CLICKED))

EWAPI extern const Efl_Event_Description _ELM_PLAYER_EVENT_MUTE_CLICKED;

/** Called when mute was clicked
 *
 * @ingroup Elm_Player
 */
#define ELM_PLAYER_EVENT_MUTE_CLICKED (&(_ELM_PLAYER_EVENT_MUTE_CLICKED))

#endif