This file is indexed.

/usr/include/elementary-1/elm_spinner_eo.h is in libelementary-dev 1.8.5-2.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  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
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
#define ELM_OBJ_SPINNER_CLASS elm_obj_spinner_class_get()

const Eo_Class *elm_obj_spinner_class_get(void) EINA_CONST;

extern EAPI Eo_Op ELM_OBJ_SPINNER_BASE_ID;

enum
{
   ELM_OBJ_SPINNER_SUB_ID_LABEL_FORMAT_SET,
   ELM_OBJ_SPINNER_SUB_ID_LABEL_FORMAT_GET,
   ELM_OBJ_SPINNER_SUB_ID_MIN_MAX_SET,
   ELM_OBJ_SPINNER_SUB_ID_MIN_MAX_GET,
   ELM_OBJ_SPINNER_SUB_ID_STEP_SET,
   ELM_OBJ_SPINNER_SUB_ID_STEP_GET,
   ELM_OBJ_SPINNER_SUB_ID_VALUE_SET,
   ELM_OBJ_SPINNER_SUB_ID_VALUE_GET,
   ELM_OBJ_SPINNER_SUB_ID_WRAP_SET,
   ELM_OBJ_SPINNER_SUB_ID_WRAP_GET,
   ELM_OBJ_SPINNER_SUB_ID_SPECIAL_VALUE_ADD,
   ELM_OBJ_SPINNER_SUB_ID_EDITABLE_SET,
   ELM_OBJ_SPINNER_SUB_ID_EDITABLE_GET,
   ELM_OBJ_SPINNER_SUB_ID_INTERVAL_SET,
   ELM_OBJ_SPINNER_SUB_ID_INTERVAL_GET,
   ELM_OBJ_SPINNER_SUB_ID_BASE_SET,
   ELM_OBJ_SPINNER_SUB_ID_BASE_GET,
   ELM_OBJ_SPINNER_SUB_ID_ROUND_SET,
   ELM_OBJ_SPINNER_SUB_ID_ROUND_GET,
   ELM_OBJ_SPINNER_SUB_ID_LAST
};

#define ELM_OBJ_SPINNER_ID(sub_id) (ELM_OBJ_SPINNER_BASE_ID + sub_id)


/**
 * @def elm_obj_spinner_label_format_set
 * @since 1.8
 *
 * Set the format string of the displayed label.
 *
 * @param[in] fmt
 *
 * @see elm_spinner_label_format_set
 *
 * @ingroup Spinner
 */
#define elm_obj_spinner_label_format_set(fmt) ELM_OBJ_SPINNER_ID(ELM_OBJ_SPINNER_SUB_ID_LABEL_FORMAT_SET), EO_TYPECHECK(const char *, fmt)

/**
 * @def elm_obj_spinner_label_format_get
 * @since 1.8
 *
 * Get the label format of the spinner.
 *
 * @param[out] ret
 *
 * @see elm_spinner_label_format_get
 *
 * @ingroup Spinner
 */
#define elm_obj_spinner_label_format_get(ret) ELM_OBJ_SPINNER_ID(ELM_OBJ_SPINNER_SUB_ID_LABEL_FORMAT_GET), EO_TYPECHECK(const char **, ret)

/**
 * @def elm_obj_spinner_min_max_set
 * @since 1.8
 *
 * Set the minimum and maximum values for the spinner.
 *
 * @param[in] min
 * @param[in] max
 *
 * @see elm_spinner_min_max_set
 *
 * @ingroup Spinner
 */
#define elm_obj_spinner_min_max_set(min, max) ELM_OBJ_SPINNER_ID(ELM_OBJ_SPINNER_SUB_ID_MIN_MAX_SET), EO_TYPECHECK(double, min), EO_TYPECHECK(double, max)

/**
 * @def elm_obj_spinner_min_max_get
 * @since 1.8
 *
 * Get the minimum and maximum values of the spinner.
 *
 * @param[out] min
 * @param[out] max
 *
 * @see elm_spinner_min_max_get
 *
 * @ingroup Spinner
 */
#define elm_obj_spinner_min_max_get(min, max) ELM_OBJ_SPINNER_ID(ELM_OBJ_SPINNER_SUB_ID_MIN_MAX_GET), EO_TYPECHECK(double *, min), EO_TYPECHECK(double *, max)

/**
 * @def elm_obj_spinner_step_set
 * @since 1.8
 *
 * Set the step used to increment or decrement the spinner value.
 *
 * @param[in] step
 *
 * @see elm_spinner_step_set
 *
 * @ingroup Spinner
 */
#define elm_obj_spinner_step_set(step) ELM_OBJ_SPINNER_ID(ELM_OBJ_SPINNER_SUB_ID_STEP_SET), EO_TYPECHECK(double, step)

/**
 * @def elm_obj_spinner_step_get
 * @since 1.8
 *
 * Get the step used to increment or decrement the spinner value.
 *
 * @param[out] ret
 *
 * @see elm_spinner_step_get
 *
 * @ingroup Spinner
 */
#define elm_obj_spinner_step_get(ret) ELM_OBJ_SPINNER_ID(ELM_OBJ_SPINNER_SUB_ID_STEP_GET), EO_TYPECHECK(double *, ret)

/**
 * @def elm_obj_spinner_value_set
 * @since 1.8
 *
 * Set the value the spinner displays.
 *
 * @param[in] val
 *
 * @see elm_spinner_value_set
 *
 * @ingroup Spinner
 */
#define elm_obj_spinner_value_set(val) ELM_OBJ_SPINNER_ID(ELM_OBJ_SPINNER_SUB_ID_VALUE_SET), EO_TYPECHECK(double, val)

/**
 * @def elm_obj_spinner_value_get
 * @since 1.8
 *
 * Get the value displayed by the spinner.
 *
 * @param[out] ret
 *
 * @see elm_spinner_value_get
 *
 * @ingroup Spinner
 */
#define elm_obj_spinner_value_get(ret) ELM_OBJ_SPINNER_ID(ELM_OBJ_SPINNER_SUB_ID_VALUE_GET), EO_TYPECHECK(double *, ret)

/**
 * @def elm_obj_spinner_wrap_set
 * @since 1.8
 *
 * Set whether the spinner should wrap when it reaches its
 *
 * @param[in] wrap
 *
 * @see elm_spinner_wrap_set
 *
 * @ingroup Spinner
 */
#define elm_obj_spinner_wrap_set(wrap) ELM_OBJ_SPINNER_ID(ELM_OBJ_SPINNER_SUB_ID_WRAP_SET), EO_TYPECHECK(Eina_Bool, wrap)

/**
 * @def elm_obj_spinner_wrap_get
 * @since 1.8
 *
 * Get whether the spinner should wrap when it reaches its
 *
 * @param[out] ret
 *
 * @see elm_spinner_wrap_get
 *
 * @ingroup Spinner
 */
#define elm_obj_spinner_wrap_get(ret) ELM_OBJ_SPINNER_ID(ELM_OBJ_SPINNER_SUB_ID_WRAP_GET), EO_TYPECHECK(Eina_Bool *, ret)

/**
 * @def elm_obj_spinner_special_value_add
 * @since 1.8
 *
 * Set a special string to display in the place of the numerical value.
 *
 * @param[in] value
 * @param[in] label
 *
 * @see elm_spinner_special_value_add
 *
 * @ingroup Spinner
 */
#define elm_obj_spinner_special_value_add(value, label) ELM_OBJ_SPINNER_ID(ELM_OBJ_SPINNER_SUB_ID_SPECIAL_VALUE_ADD), EO_TYPECHECK(double, value), EO_TYPECHECK(const char *, label)

/**
 * @def elm_obj_spinner_editable_set
 * @since 1.8
 *
 * Set whether the spinner can be directly edited by the user or not.
 *
 * @param[in] editable
 *
 * @see elm_spinner_editable_set
 *
 * @ingroup Spinner
 */
#define elm_obj_spinner_editable_set(editable) ELM_OBJ_SPINNER_ID(ELM_OBJ_SPINNER_SUB_ID_EDITABLE_SET), EO_TYPECHECK(Eina_Bool, editable)

/**
 * @def elm_obj_spinner_editable_get
 * @since 1.8
 *
 * Get whether the spinner can be directly edited by the user or not.
 *
 * @param[out] ret
 *
 * @see elm_spinner_editable_get
 *
 * @ingroup Spinner
 */
#define elm_obj_spinner_editable_get(ret) ELM_OBJ_SPINNER_ID(ELM_OBJ_SPINNER_SUB_ID_EDITABLE_GET), EO_TYPECHECK(Eina_Bool *, ret)

/**
 * @def elm_obj_spinner_interval_set
 * @since 1.8
 *
 * Set the interval on time updates for an user mouse button hold
 *
 * @param[in] interval
 *
 * @see elm_spinner_interval_set
 *
 * @ingroup Spinner
 */
#define elm_obj_spinner_interval_set(interval) ELM_OBJ_SPINNER_ID(ELM_OBJ_SPINNER_SUB_ID_INTERVAL_SET), EO_TYPECHECK(double, interval)

/**
 * @def elm_obj_spinner_interval_get
 * @since 1.8
 *
 * Get the interval on time updates for an user mouse button hold
 *
 * @param[out] ret
 *
 * @see elm_spinner_interval_get
 *
 * @ingroup Spinner
 */
#define elm_obj_spinner_interval_get(ret) ELM_OBJ_SPINNER_ID(ELM_OBJ_SPINNER_SUB_ID_INTERVAL_GET), EO_TYPECHECK(double *, ret)

/**
 * @def elm_obj_spinner_base_set
 * @since 1.8
 *
 * Set the base for rounding
 *
 * @param[in] base
 *
 * @see elm_spinner_base_set
 *
 * @ingroup Spinner
 */
#define elm_obj_spinner_base_set(base) ELM_OBJ_SPINNER_ID(ELM_OBJ_SPINNER_SUB_ID_BASE_SET), EO_TYPECHECK(double, base)

/**
 * @def elm_obj_spinner_base_get
 * @since 1.8
 *
 * Get the base for rounding
 *
 * @param[out] ret
 *
 * @see elm_spinner_base_get
 *
 * @ingroup Spinner
 */
#define elm_obj_spinner_base_get(ret) ELM_OBJ_SPINNER_ID(ELM_OBJ_SPINNER_SUB_ID_BASE_GET), EO_TYPECHECK(double *, ret)

/**
 * @def elm_obj_spinner_round_set
 * @since 1.8
 *
 * Set the round value for rounding
 *
 * @param[in] rnd
 *
 * @see elm_spinner_round_set
 *
 * @ingroup Spinner
 */
#define elm_obj_spinner_round_set(rnd) ELM_OBJ_SPINNER_ID(ELM_OBJ_SPINNER_SUB_ID_ROUND_SET), EO_TYPECHECK(int, rnd)

/**
 * @def elm_obj_spinner_round_get
 * @since 1.8
 *
 * Get the round value for rounding
 *
 * @param[out] ret
 *
 * @see elm_spinner_round_get
 *
 * @ingroup Spinner
 */
#define elm_obj_spinner_round_get(ret) ELM_OBJ_SPINNER_ID(ELM_OBJ_SPINNER_SUB_ID_ROUND_GET), EO_TYPECHECK(int *, ret)