summaryrefslogtreecommitdiff
path: root/src/lib/elm_progressbar_eo.h
blob: a9515d81d7929ffb8d87509bfcb0a64000e9af55 (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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
#define ELM_OBJ_PROGRESSBAR_CLASS elm_obj_progressbar_class_get()

const Eo *elm_obj_progressbar_class_get(void) EINA_CONST;

extern EAPI Eo_Op ELM_OBJ_PROGRESSBAR_BASE_ID;

typedef char *(*progressbar_func_type)(double);
typedef void (*progressbar_freefunc_type)(char *);

enum
{
   ELM_OBJ_PROGRESSBAR_SUB_ID_PULSE_SET,
   ELM_OBJ_PROGRESSBAR_SUB_ID_PULSE_GET,
   ELM_OBJ_PROGRESSBAR_SUB_ID_PULSE,
   ELM_OBJ_PROGRESSBAR_SUB_ID_VALUE_SET,
   ELM_OBJ_PROGRESSBAR_SUB_ID_VALUE_GET,
   ELM_OBJ_PROGRESSBAR_SUB_ID_SPAN_SIZE_SET,
   ELM_OBJ_PROGRESSBAR_SUB_ID_SPAN_SIZE_GET,
   ELM_OBJ_PROGRESSBAR_SUB_ID_UNIT_FORMAT_SET,
   ELM_OBJ_PROGRESSBAR_SUB_ID_UNIT_FORMAT_GET,
   ELM_OBJ_PROGRESSBAR_SUB_ID_UNIT_FORMAT_FUNCTION_SET,
   ELM_OBJ_PROGRESSBAR_SUB_ID_HORIZONTAL_SET,
   ELM_OBJ_PROGRESSBAR_SUB_ID_HORIZONTAL_GET,
   ELM_OBJ_PROGRESSBAR_SUB_ID_INVERTED_SET,
   ELM_OBJ_PROGRESSBAR_SUB_ID_INVERTED_GET,
   ELM_OBJ_PROGRESSBAR_SUB_ID_PART_VALUE_SET,
   ELM_OBJ_PROGRESSBAR_SUB_ID_PART_VALUE_GET,
   ELM_OBJ_PROGRESSBAR_SUB_ID_LAST
};

#define ELM_OBJ_PROGRESSBAR_ID(sub_id) (ELM_OBJ_PROGRESSBAR_BASE_ID + sub_id)


/**
 * @def elm_obj_progressbar_pulse_set
 * @since 1.8
 *
 * Set whether a given progress bar widget is at "pulsing mode" or
 * not.
 *
 * @param[in] pulse
 *
 * @see elm_progressbar_pulse_set
 *
 * @ingroup Progressbar
 */
#define elm_obj_progressbar_pulse_set(pulse) ELM_OBJ_PROGRESSBAR_ID(ELM_OBJ_PROGRESSBAR_SUB_ID_PULSE_SET), EO_TYPECHECK(Eina_Bool, pulse)

/**
 * @def elm_obj_progressbar_pulse_get
 * @since 1.8
 *
 * Get whether a given progress bar widget is at "pulsing mode" or
 * not.
 *
 * @param[out] ret
 *
 * @see elm_progressbar_pulse_get
 *
 * @ingroup Progressbar
 */
#define elm_obj_progressbar_pulse_get(ret) ELM_OBJ_PROGRESSBAR_ID(ELM_OBJ_PROGRESSBAR_SUB_ID_PULSE_GET), EO_TYPECHECK(Eina_Bool *, ret)

/**
 * @def elm_obj_progressbar_pulse
 * @since 1.8
 *
 * Start/stop a given progress bar "pulsing" animation, if its
 * under that mode
 *
 * @param[in] state
 *
 * @see elm_progressbar_pulse
 *
 * @ingroup Progressbar
 */
#define elm_obj_progressbar_pulse(state) ELM_OBJ_PROGRESSBAR_ID(ELM_OBJ_PROGRESSBAR_SUB_ID_PULSE), EO_TYPECHECK(Eina_Bool, state)

/**
 * @def elm_obj_progressbar_value_set
 * @since 1.8
 *
 * Set the progress value (in percentage) on a given progress bar
 *
 * @param[in] val
 *
 * @see elm_progressbar_value_set
 *
 * @ingroup Progressbar
 */
#define elm_obj_progressbar_value_set(val) ELM_OBJ_PROGRESSBAR_ID(ELM_OBJ_PROGRESSBAR_SUB_ID_VALUE_SET), EO_TYPECHECK(double, val)

/**
 * @def elm_obj_progressbar_value_get
 * @since 1.8
 *
 * Get the progress value (in percentage) on a given progress bar
 *
 * @param[out] ret
 *
 * @see elm_progressbar_value_get
 *
 * @ingroup Progressbar
 */
#define elm_obj_progressbar_value_get(ret) ELM_OBJ_PROGRESSBAR_ID(ELM_OBJ_PROGRESSBAR_SUB_ID_VALUE_GET), EO_TYPECHECK(double *, ret)

/**
 * @def elm_obj_progressbar_span_size_set
 * @since 1.8
 *
 * Set the (exact) length of the bar region of a given progress bar
 *
 * @param[in] size
 *
 * @see elm_progressbar_span_size_set
 *
 * @ingroup Progressbar
 */
#define elm_obj_progressbar_span_size_set(size) ELM_OBJ_PROGRESSBAR_ID(ELM_OBJ_PROGRESSBAR_SUB_ID_SPAN_SIZE_SET), EO_TYPECHECK(Evas_Coord, size)

/**
 * @def elm_obj_progressbar_span_size_get
 * @since 1.8
 *
 * Get the length set for the bar region of a given progress bar
 *
 * @param[out] ret
 *
 * @see elm_progressbar_span_size_get
 *
 * @ingroup Progressbar
 */
#define elm_obj_progressbar_span_size_get(ret) ELM_OBJ_PROGRESSBAR_ID(ELM_OBJ_PROGRESSBAR_SUB_ID_SPAN_SIZE_GET), EO_TYPECHECK(Evas_Coord *, ret)

/**
 * @def elm_obj_progressbar_unit_format_set
 * @since 1.8
 *
 * Set the format string for a given progress bar widget's units
 *
 * @param[in] units
 *
 * @see elm_progressbar_unit_format_set
 *
 * @ingroup Progressbar
 */
#define elm_obj_progressbar_unit_format_set(units) ELM_OBJ_PROGRESSBAR_ID(ELM_OBJ_PROGRESSBAR_SUB_ID_UNIT_FORMAT_SET), EO_TYPECHECK(const char *, units)

/**
 * @def elm_obj_progressbar_unit_format_get
 * @since 1.8
 *
 * Retrieve the format string set for a given progress bar widget's
 *
 * @param[out] ret
 *
 * @see elm_progressbar_unit_format_get
 *
 * @ingroup Progressbar
 */
#define elm_obj_progressbar_unit_format_get(ret) ELM_OBJ_PROGRESSBAR_ID(ELM_OBJ_PROGRESSBAR_SUB_ID_UNIT_FORMAT_GET), EO_TYPECHECK(const char **, ret)

/**
 * @def elm_obj_progressbar_unit_format_function_set
 * @since 1.8
 *
 * Set the format function pointer for the units label
 *
 * @param[in] func
 * @param[in] free_func
 *
 * @see elm_progressbar_unit_format_function_set
 *
 * @ingroup Progressbar
 */
#define elm_obj_progressbar_unit_format_function_set(func, free_func) ELM_OBJ_PROGRESSBAR_ID(ELM_OBJ_PROGRESSBAR_SUB_ID_UNIT_FORMAT_FUNCTION_SET), EO_TYPECHECK(progressbar_func_type, func), EO_TYPECHECK(progressbar_freefunc_type, free_func)

/**
 * @def elm_obj_progressbar_horizontal_set
 * @since 1.8
 *
 * Set the orientation of a given progress bar widget
 *
 * @param[in] horizontal
 *
 * @see elm_progressbar_horizontal_set
 *
 * @ingroup Progressbar
 */
#define elm_obj_progressbar_horizontal_set(horizontal) ELM_OBJ_PROGRESSBAR_ID(ELM_OBJ_PROGRESSBAR_SUB_ID_HORIZONTAL_SET), EO_TYPECHECK(Eina_Bool, horizontal)

/**
 * @def elm_obj_progressbar_horizontal_get
 * @since 1.8
 *
 * Retrieve the orientation of a given progress bar widget
 *
 * @param[out] ret
 *
 * @see elm_progressbar_horizontal_get
 *
 * @ingroup Progressbar
 */
#define elm_obj_progressbar_horizontal_get(ret) ELM_OBJ_PROGRESSBAR_ID(ELM_OBJ_PROGRESSBAR_SUB_ID_HORIZONTAL_GET), EO_TYPECHECK(Eina_Bool *, ret)

/**
 * @def elm_obj_progressbar_inverted_set
 * @since 1.8
 *
 * Invert a given progress bar widget's displaying values order
 *
 * @param[in] inverted
 *
 * @see elm_progressbar_inverted_set
 *
 * @ingroup Progressbar
 */
#define elm_obj_progressbar_inverted_set(inverted) ELM_OBJ_PROGRESSBAR_ID(ELM_OBJ_PROGRESSBAR_SUB_ID_INVERTED_SET), EO_TYPECHECK(Eina_Bool, inverted)

/**
 * @def elm_obj_progressbar_inverted_get
 * @since 1.8
 *
 * Get whether a given progress bar widget's displaying values are
 * inverted or not
 *
 * @param[out] ret
 *
 * @see elm_progressbar_inverted_get
 *
 * @ingroup Progressbar
 */
#define elm_obj_progressbar_inverted_get(ret) ELM_OBJ_PROGRESSBAR_ID(ELM_OBJ_PROGRESSBAR_SUB_ID_INVERTED_GET), EO_TYPECHECK(Eina_Bool *, ret)

/**
 * @def elm_progressbar_part_value_set
 * @since 1.8
 *
 * Modified to support more than one progress status
 * Set the value of the progress status a particular part
 *
 * @param[in] part
 * @param[in] val
 *
 * @see elm_progressbar_part_value_set
 *
 * @ingroup Progressbar
 */
#define elm_obj_progressbar_part_value_set(part, val) ELM_OBJ_PROGRESSBAR_ID(ELM_OBJ_PROGRESSBAR_SUB_ID_PART_VALUE_SET), EO_TYPECHECK(const char*, part), EO_TYPECHECK(double, val)

/**
 * @def elm_progressbar_part_value_get
 * @since 1.8
 *
 * Modified to support more than one progress status
 * Get the value of the progress status of a particular part
 *
 * @param[in] part
 * @param[out] ret
 *
 * @see elm_progressbar_part_value_get
 *
 * @ingroup Progressbar
 */
#define elm_obj_progressbar_part_value_get(part, ret) ELM_OBJ_PROGRESSBAR_ID(ELM_OBJ_PROGRESSBAR_SUB_ID_PART_VALUE_GET), EO_TYPECHECK(const char*, part), EO_TYPECHECK(double *, ret)