This file is indexed.

/usr/include/elementary-1/elc_multibuttonentry_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
#define ELM_OBJ_MULTIBUTTONENTRY_CLASS elm_obj_multibuttonentry_class_get()

const Eo_Class *elm_obj_multibuttonentry_class_get(void) EINA_CONST;

extern EAPI Eo_Op ELM_OBJ_MULTIBUTTONENTRY_BASE_ID;

enum
{
   ELM_OBJ_MULTIBUTTONENTRY_SUB_ID_ENTRY_GET,
   ELM_OBJ_MULTIBUTTONENTRY_SUB_ID_EXPANDED_GET,
   ELM_OBJ_MULTIBUTTONENTRY_SUB_ID_EXPANDED_SET,
   ELM_OBJ_MULTIBUTTONENTRY_SUB_ID_EDITABLE_SET,
   ELM_OBJ_MULTIBUTTONENTRY_SUB_ID_EDITABLE_GET,
   ELM_OBJ_MULTIBUTTONENTRY_SUB_ID_ITEM_PREPEND,
   ELM_OBJ_MULTIBUTTONENTRY_SUB_ID_ITEM_APPEND,
   ELM_OBJ_MULTIBUTTONENTRY_SUB_ID_ITEM_INSERT_BEFORE,
   ELM_OBJ_MULTIBUTTONENTRY_SUB_ID_ITEM_INSERT_AFTER,
   ELM_OBJ_MULTIBUTTONENTRY_SUB_ID_ITEMS_GET,
   ELM_OBJ_MULTIBUTTONENTRY_SUB_ID_FIRST_ITEM_GET,
   ELM_OBJ_MULTIBUTTONENTRY_SUB_ID_LAST_ITEM_GET,
   ELM_OBJ_MULTIBUTTONENTRY_SUB_ID_SELECTED_ITEM_GET,
   ELM_OBJ_MULTIBUTTONENTRY_SUB_ID_CLEAR,
   ELM_OBJ_MULTIBUTTONENTRY_SUB_ID_ITEM_FILTER_APPEND,
   ELM_OBJ_MULTIBUTTONENTRY_SUB_ID_ITEM_FILTER_PREPEND,
   ELM_OBJ_MULTIBUTTONENTRY_SUB_ID_ITEM_FILTER_REMOVE,
   ELM_OBJ_MULTIBUTTONENTRY_SUB_ID_LAST
};

#define ELM_OBJ_MULTIBUTTONENTRY_ID(sub_id) (ELM_OBJ_MULTIBUTTONENTRY_BASE_ID + sub_id)


/**
 * @def elm_obj_multibuttonentry_entry_get
 * @since 1.8
 *
 * Get the entry of the multibuttonentry object
 *
 * @param[out] ret
 *
 * @see elm_multibuttonentry_entry_get
 *
 * @ingroup Multibuttonentry
 */
#define elm_obj_multibuttonentry_entry_get(ret) ELM_OBJ_MULTIBUTTONENTRY_ID(ELM_OBJ_MULTIBUTTONENTRY_SUB_ID_ENTRY_GET), EO_TYPECHECK(Evas_Object **, ret)

/**
 * @def elm_obj_multibuttonentry_expanded_get
 * @since 1.8
 *
 * Get the value of expanded state.
 *
 * @param[out] ret
 *
 * @see elm_multibuttonentry_expanded_get
 *
 * @ingroup Multibuttonentry
 */
#define elm_obj_multibuttonentry_expanded_get(ret) ELM_OBJ_MULTIBUTTONENTRY_ID(ELM_OBJ_MULTIBUTTONENTRY_SUB_ID_EXPANDED_GET), EO_TYPECHECK(Eina_Bool *, ret)

/**
 * @def elm_obj_multibuttonentry_expanded_set
 * @since 1.8
 *
 * Set/Unset the multibuttonentry to expanded state.
 *
 * @param[in] expanded
 *
 * @see elm_multibuttonentry_expanded_set
 *
 * @ingroup Multibuttonentry
 */
#define elm_obj_multibuttonentry_expanded_set(expanded) ELM_OBJ_MULTIBUTTONENTRY_ID(ELM_OBJ_MULTIBUTTONENTRY_SUB_ID_EXPANDED_SET), EO_TYPECHECK(Eina_Bool, expanded)

/**
 * @def elm_obj_multibuttonentry_editable_set
 * @since 1.8
 *
 * Sets if the multibuttonentry is to be editable or not.
 *
 * @param[in] editable
 *
 * @see elm_multibuttonentry_editable_set
 *
 * @ingroup Multibuttonentry
 */
#define elm_obj_multibuttonentry_editable_set(editable) ELM_OBJ_MULTIBUTTONENTRY_ID(ELM_OBJ_MULTIBUTTONENTRY_SUB_ID_EDITABLE_SET), EO_TYPECHECK(Eina_Bool, editable)

/**
 * @def elm_obj_multibuttonentry_editable_get
 * @since 1.8
 *
 * Get whether the multibuttonentry is editable or not.
 *
 * @param[out] ret
 *
 * @see elm_multibuttonentry_editable_get
 *
 * @ingroup Multibuttonentry
 */
#define elm_obj_multibuttonentry_editable_get(ret) ELM_OBJ_MULTIBUTTONENTRY_ID(ELM_OBJ_MULTIBUTTONENTRY_SUB_ID_EDITABLE_GET), EO_TYPECHECK(Eina_Bool *, ret)

/**
 * @def elm_obj_multibuttonentry_item_prepend
 * @since 1.8
 *
 * Prepend a new item to the multibuttonentry
 *
 * @param[in] label
 * @param[in] func
 * @param[in] data
 * @param[out] ret
 *
 * @see elm_multibuttonentry_item_prepend
 *
 * @ingroup Multibuttonentry
 */
#define elm_obj_multibuttonentry_item_prepend(label, func, data, ret) ELM_OBJ_MULTIBUTTONENTRY_ID(ELM_OBJ_MULTIBUTTONENTRY_SUB_ID_ITEM_PREPEND), EO_TYPECHECK(const char *, label), EO_TYPECHECK(Evas_Smart_Cb, func), EO_TYPECHECK(void *, data), EO_TYPECHECK(Elm_Object_Item **, ret)

/**
 * @def elm_obj_multibuttonentry_item_append
 * @since 1.8
 *
 * Append a new item to the multibuttonentry
 *
 * @param[in] label
 * @param[in] func
 * @param[in] data
 * @param[out] ret
 *
 * @see elm_multibuttonentry_item_append
 *
 * @ingroup Multibuttonentry
 */
#define elm_obj_multibuttonentry_item_append(label, func, data, ret) ELM_OBJ_MULTIBUTTONENTRY_ID(ELM_OBJ_MULTIBUTTONENTRY_SUB_ID_ITEM_APPEND), EO_TYPECHECK(const char *, label), EO_TYPECHECK(Evas_Smart_Cb, func), EO_TYPECHECK(void *, data), EO_TYPECHECK(Elm_Object_Item **, ret)

/**
 * @def elm_obj_multibuttonentry_item_insert_before
 * @since 1.8
 *
 * Add a new item to the multibuttonentry before the indicated object
 *
 * @param[in] before
 * @param[in] label
 * @param[in] func
 * @param[in] data
 * @param[out] ret
 *
 * @see elm_multibuttonentry_item_insert_before
 *
 * @ingroup Multibuttonentry
 */
#define elm_obj_multibuttonentry_item_insert_before(before, label, func, data, ret) ELM_OBJ_MULTIBUTTONENTRY_ID(ELM_OBJ_MULTIBUTTONENTRY_SUB_ID_ITEM_INSERT_BEFORE), EO_TYPECHECK(Elm_Object_Item *, before), EO_TYPECHECK(const char *, label), EO_TYPECHECK(Evas_Smart_Cb, func), EO_TYPECHECK(void *, data), EO_TYPECHECK(Elm_Object_Item **, ret)

/**
 * @def elm_obj_multibuttonentry_item_insert_after
 * @since 1.8
 *
 * Add a new item to the multibuttonentry after the indicated object
 *
 * @param[in] after
 * @param[in] label
 * @param[in] func
 * @param[in] data
 * @param[out] ret
 *
 * @see elm_multibuttonentry_item_insert_after
 *
 * @ingroup Multibuttonentry
 */
#define elm_obj_multibuttonentry_item_insert_after(after, label, func, data, ret) ELM_OBJ_MULTIBUTTONENTRY_ID(ELM_OBJ_MULTIBUTTONENTRY_SUB_ID_ITEM_INSERT_AFTER), EO_TYPECHECK(Elm_Object_Item *, after), EO_TYPECHECK(const char *, label), EO_TYPECHECK(Evas_Smart_Cb, func), EO_TYPECHECK(void *, data), EO_TYPECHECK(Elm_Object_Item **, ret)

/**
 * @def elm_obj_multibuttonentry_items_get
 * @since 1.8
 *
 * Get a list of items in the multibuttonentry
 *
 * @param[out] ret
 *
 * @see elm_multibuttonentry_items_get
 *
 * @ingroup Multibuttonentry
 */
#define elm_obj_multibuttonentry_items_get(ret) ELM_OBJ_MULTIBUTTONENTRY_ID(ELM_OBJ_MULTIBUTTONENTRY_SUB_ID_ITEMS_GET), EO_TYPECHECK(const Eina_List **, ret)

/**
 * @def elm_obj_multibuttonentry_first_item_get
 * @since 1.8
 *
 * Get the first item in the multibuttonentry
 *
 * @param[out] ret
 *
 * @see elm_multibuttonentry_first_item_get
 *
 * @ingroup Multibuttonentry
 */
#define elm_obj_multibuttonentry_first_item_get(ret) ELM_OBJ_MULTIBUTTONENTRY_ID(ELM_OBJ_MULTIBUTTONENTRY_SUB_ID_FIRST_ITEM_GET), EO_TYPECHECK(Elm_Object_Item **, ret)

/**
 * @def elm_obj_multibuttonentry_last_item_get
 * @since 1.8
 *
 * Get the last item in the multibuttonentry
 *
 * @param[out] ret
 *
 * @see elm_multibuttonentry_last_item_get
 *
 * @ingroup Multibuttonentry
 */
#define elm_obj_multibuttonentry_last_item_get(ret) ELM_OBJ_MULTIBUTTONENTRY_ID(ELM_OBJ_MULTIBUTTONENTRY_SUB_ID_LAST_ITEM_GET), EO_TYPECHECK(Elm_Object_Item **, ret)

/**
 * @def elm_obj_multibuttonentry_selected_item_get
 * @since 1.8
 *
 * Get the selected item in the multibuttonentry
 *
 * @param[out] ret
 *
 * @see elm_multibuttonentry_selected_item_get
 *
 * @ingroup Multibuttonentry
 */
#define elm_obj_multibuttonentry_selected_item_get(ret) ELM_OBJ_MULTIBUTTONENTRY_ID(ELM_OBJ_MULTIBUTTONENTRY_SUB_ID_SELECTED_ITEM_GET), EO_TYPECHECK(Elm_Object_Item **, ret)

/**
 * @def elm_obj_multibuttonentry_clear
 * @since 1.8
 *
 * Remove all items in the multibuttonentry.
 *
 *
 * @see elm_multibuttonentry_clear
 *
 * @ingroup Multibuttonentry
 */
#define elm_obj_multibuttonentry_clear() ELM_OBJ_MULTIBUTTONENTRY_ID(ELM_OBJ_MULTIBUTTONENTRY_SUB_ID_CLEAR)

/**
 * @def elm_obj_multibuttonentry_item_filter_append
 * @since 1.8
 *
 * Append an item filter function for text inserted in the Multibuttonentry
 *
 * @param[in] func
 * @param[in] data
 *
 * @see elm_multibuttonentry_item_filter_append
 *
 * @ingroup Multibuttonentry
 */
#define elm_obj_multibuttonentry_item_filter_append(func, data) ELM_OBJ_MULTIBUTTONENTRY_ID(ELM_OBJ_MULTIBUTTONENTRY_SUB_ID_ITEM_FILTER_APPEND), EO_TYPECHECK(Elm_Multibuttonentry_Item_Filter_Cb, func), EO_TYPECHECK(void *, data)

/**
 * @def elm_obj_multibuttonentry_item_filter_prepend
 * @since 1.8
 *
 * Prepend a filter function for text inserted in the Multibuttonentry
 *
 * @param[in] func
 * @param[in] data
 *
 * @see elm_multibuttonentry_item_filter_prepend
 *
 * @ingroup Multibuttonentry
 */
#define elm_obj_multibuttonentry_item_filter_prepend(func, data) ELM_OBJ_MULTIBUTTONENTRY_ID(ELM_OBJ_MULTIBUTTONENTRY_SUB_ID_ITEM_FILTER_PREPEND), EO_TYPECHECK(Elm_Multibuttonentry_Item_Filter_Cb, func), EO_TYPECHECK(void *, data)

/**
 * @def elm_obj_multibuttonentry_item_filter_remove
 * @since 1.8
 *
 * Remove a filter from the list
 *
 * @param[in] func
 * @param[in] data
 *
 * @see elm_multibuttonentry_item_filter_remove
 *
 * @ingroup Multibuttonentry
 */
#define elm_obj_multibuttonentry_item_filter_remove(func, data) ELM_OBJ_MULTIBUTTONENTRY_ID(ELM_OBJ_MULTIBUTTONENTRY_SUB_ID_ITEM_FILTER_REMOVE), EO_TYPECHECK(Elm_Multibuttonentry_Item_Filter_Cb, func), EO_TYPECHECK(void *, data)