Changeset View
Changeset View
Standalone View
Standalone View
src/lib/elementary/Efl_Ui.h
1 | #ifndef _EFL_UI_H | 1 | #ifndef _EFL_UI_H | ||
---|---|---|---|---|---|
2 | #define _EFL_UI_H | 2 | #define _EFL_UI_H | ||
3 | 3 | | |||
4 | #include <Efl_Config.h> | 4 | #include <Efl_Config.h> | ||
5 | #include <Elementary_Options.h> | 5 | #include <Elementary_Options.h> | ||
6 | 6 | | |||
7 | #ifndef EFL_EO_API_SUPPORT | 7 | #ifndef EFL_EO_API_SUPPORT | ||
8 | # define EFL_EO_API_SUPPORT | 8 | # define EFL_EO_API_SUPPORT | ||
9 | #endif | 9 | #endif | ||
10 | 10 | | |||
11 | /* FIXME: wtf? */ | ||||
12 | #ifndef EFL_UI_RADIO_EVENT_CHANGED | ||||
13 | # define EFL_UI_RADIO_EVENT_CHANGED EFL_UI_NSTATE_EVENT_CHANGED | ||||
14 | #endif | ||||
11 | /* Standard headers for standard system calls etc. */ | 15 | /* Standard headers for standard system calls etc. */ | ||
12 | #include <stdio.h> | 16 | #include <stdio.h> | ||
13 | #include <stdlib.h> | 17 | #include <stdlib.h> | ||
14 | #include <unistd.h> | 18 | #include <unistd.h> | ||
15 | #include <string.h> | 19 | #include <string.h> | ||
16 | #include <sys/types.h> | 20 | #include <sys/types.h> | ||
17 | #include <sys/stat.h> | 21 | #include <sys/stat.h> | ||
18 | #include <sys/time.h> | 22 | #include <sys/time.h> | ||
▲ Show 20 Lines • Show All 165 Lines • ▼ Show 20 Line(s) | |||||
184 | # include <efl_ui_bg.eo.h> | 188 | # include <efl_ui_bg.eo.h> | ||
185 | # include <efl_ui_box.eo.h> | 189 | # include <efl_ui_box.eo.h> | ||
186 | # include <efl_ui_box_flow.eo.h> | 190 | # include <efl_ui_box_flow.eo.h> | ||
187 | # include <efl_ui_box_stack.eo.h> | 191 | # include <efl_ui_box_stack.eo.h> | ||
188 | # include <efl_ui_table.eo.h> | 192 | # include <efl_ui_table.eo.h> | ||
189 | # include <efl_ui_table_static.eo.h> | 193 | # include <efl_ui_table_static.eo.h> | ||
190 | # include <efl_ui_image.eo.h> | 194 | # include <efl_ui_image.eo.h> | ||
191 | # include <efl_ui_win.eo.h> | 195 | # include <efl_ui_win.eo.h> | ||
196 | /* FIXME: what the actual fuck. */ | ||||
197 | # include <elm_win_eo.h> | ||||
192 | # include <efl_ui_win_inlined.eo.h> | 198 | # include <efl_ui_win_inlined.eo.h> | ||
193 | # include <efl_ui_win_socket.eo.h> | 199 | # include <efl_ui_win_socket.eo.h> | ||
194 | # include <efl_ui_relative_layout.eo.h> | 200 | # include <efl_ui_relative_layout.eo.h> | ||
195 | 201 | | |||
196 | /* FIXME: Efl.Ui.Text must not use elm_general.h */ | 202 | /* FIXME: Efl.Ui.Text must not use elm_general.h */ | ||
197 | # warning Efl.Ui.Text is not available yet without Elementary.h | 203 | // no. | ||
204 | //# warning Efl.Ui.Text is not available yet without Elementary.h | ||||
198 | # if 0 | 205 | # if 0 | ||
199 | # include <efl_ui_text_interactive.eo.h> | 206 | # include <efl_ui_text_interactive.eo.h> | ||
200 | # include <efl_ui_text.eo.h> | 207 | # include <efl_ui_text.eo.h> | ||
201 | # include <efl_ui_text_editable.eo.h> | 208 | # include <efl_ui_text_editable.eo.h> | ||
202 | # include <efl_ui_text_async.eo.h> | 209 | # include <efl_ui_text_async.eo.h> | ||
203 | # endif | 210 | # endif | ||
204 | 211 | | |||
205 | # include <efl_ui_clock.h> | 212 | # include <efl_ui_clock.h> | ||
Show All 12 Lines | |||||
218 | 225 | | |||
219 | # include <efl_ui_flip_eo.h> | 226 | # include <efl_ui_flip_eo.h> | ||
220 | # include <efl_ui_frame_eo.h> | 227 | # include <efl_ui_frame_eo.h> | ||
221 | # include <efl_ui_check_eo.h> | 228 | # include <efl_ui_check_eo.h> | ||
222 | # include <efl_ui_image_zoomable_eo.h> | 229 | # include <efl_ui_image_zoomable_eo.h> | ||
223 | # include <efl_ui_progressbar_eo.h> | 230 | # include <efl_ui_progressbar_eo.h> | ||
224 | # include <efl_ui_radio_eo.h> | 231 | # include <efl_ui_radio_eo.h> | ||
225 | # include <efl_ui_panes_eo.h> | 232 | # include <efl_ui_panes_eo.h> | ||
233 | # include <efl_ui_panes_part.eo.h> | ||||
226 | 234 | | |||
227 | /** | 235 | /** | ||
228 | * Initialize Elementary | 236 | * Initialize Elementary | ||
229 | * | 237 | * | ||
230 | * @param[in] argc System's argument count value | 238 | * @param[in] argc System's argument count value | ||
231 | * @param[in] argv System's pointer to array of argument strings | 239 | * @param[in] argv System's pointer to array of argument strings | ||
232 | * @return The init counter value. | 240 | * @return The init counter value. | ||
233 | * | 241 | * | ||
▲ Show 20 Lines • Show All 55 Lines • Show Last 20 Lines |