elementary/map - map supports language,changed
[framework/uifw/elementary.git] / src / lib / Elementary.h.in
1 /* This is the primary Elementary header file that includes all other useful
2  * headers.
3  *
4  * Elementary is distributed under the LGPLv2 license. Please see the COPYING
5  * file that was distributed with this source.
6  */
7 #ifndef ELEMENTARY_H
8 #define ELEMENTARY_H
9
10 @ELM_UNIX_DEF@ ELM_UNIX
11 @ELM_WIN32_DEF@ ELM_WIN32
12 @ELM_WINCE_DEF@ ELM_WINCE
13 @ELM_EDBUS_DEF@ ELM_EDBUS
14 @ELM_EFREET_DEF@ ELM_EFREET
15 @ELM_ETHUMB_DEF@ ELM_ETHUMB
16 @ELM_WEB_DEF@ ELM_WEB
17 @ELM_EMAP_DEF@ ELM_EMAP
18 @ELM_DEBUG_DEF@ ELM_DEBUG
19 @ELM_ALLOCA_H_DEF@ ELM_ALLOCA_H
20 @ELM_LIBINTL_H_DEF@ ELM_LIBINTL_H
21 @ELM_DIRENT_H_DEF@ ELM_DIRENT_H
22
23 /* Standard headers for standard system calls etc. */
24 #include <stdio.h>
25 #include <stdlib.h>
26 #include <unistd.h>
27 #include <string.h>
28 #include <sys/types.h>
29 #include <sys/stat.h>
30 #include <sys/time.h>
31 #include <sys/param.h>
32 #include <math.h>
33 #include <fnmatch.h>
34 #include <limits.h>
35 #include <ctype.h>
36 #include <time.h>
37 #ifdef ELM_DIRENT_H
38 #include <dirent.h>
39 #endif
40 #include <pwd.h>
41 #include <errno.h>
42
43 #ifdef ELM_UNIX
44 #include <locale.h>
45 #ifdef ELM_LIBINTL_H
46 #include <libintl.h>
47 #endif
48 #include <signal.h>
49 #include <grp.h>
50 #include <glob.h>
51 #endif
52
53 #ifdef ELM_ALLOCA_H
54 #include <alloca.h>
55 #endif
56
57 #if defined (ELM_WIN32) || defined (ELM_WINCE)
58 #include <malloc.h>
59 #ifndef alloca
60 #define alloca _alloca
61 #endif
62 #endif
63
64 /* EFL headers */
65 #include <Eina.h>
66 #include <Eet.h>
67 #include <Evas.h>
68 #include <Evas_GL.h>
69 #include <Ecore.h>
70 #include <Ecore_Evas.h>
71 #include <Ecore_File.h>
72 @ELEMENTARY_ECORE_IMF_INC@
73 @ELEMENTARY_ECORE_CON_INC@
74 #include <Edje.h>
75
76 #ifdef ELM_EDBUS
77 #include <E_DBus.h>
78 #endif
79
80 #ifdef ELM_EFREET
81 #include <Efreet.h>
82 #include <Efreet_Mime.h>
83 #include <Efreet_Trash.h>
84 #endif
85
86 #ifdef ELM_ETHUMB
87 #include <Ethumb_Client.h>
88 #endif
89
90 #ifdef ELM_EMAP
91 #include <EMap.h>
92 #endif
93
94 #ifdef EAPI
95 # undef EAPI
96 #endif
97
98 #ifdef _WIN32
99 # ifdef ELEMENTARY_BUILD
100 #  ifdef DLL_EXPORT
101 #   define EAPI __declspec(dllexport)
102 #  else
103 #   define EAPI
104 #  endif /* ! DLL_EXPORT */
105 # else
106 #  define EAPI __declspec(dllimport)
107 # endif /* ! EFL_EVAS_BUILD */
108 #else
109 # ifdef __GNUC__
110 #  if __GNUC__ >= 4
111 #   define EAPI __attribute__ ((visibility("default")))
112 #  else
113 #   define EAPI
114 #  endif
115 # else
116 #  define EAPI
117 # endif
118 #endif /* ! _WIN32 */
119
120 #ifdef _WIN32
121 # define EAPI_MAIN
122 #else
123 # define EAPI_MAIN EAPI
124 #endif
125
126 /* allow usage from c++ */
127 #ifdef __cplusplus
128 extern "C"
129 {
130 #endif
131
132 /* docs */
133 #include <elm_intro.h>
134 #include <elm_getting_started.h>
135 #include <elm_authors.h>
136
137 #define ELM_VERSION_MAJOR 1
138 #define ELM_VERSION_MINOR 8
139
140 typedef struct _Elm_Version
141 {
142    int major;
143    int minor;
144    int micro;
145    int revision;
146 } Elm_Version;
147
148 EAPI extern Elm_Version *elm_version;
149
150 /* include these first for general used definitions */
151 #include <elm_general.h>
152 #include <elm_tooltip.h>
153 #include <elm_object_item.h>
154
155 /* special widgets - types used elsewhere */
156 #include <elm_access.h>
157 #include <elm_icon.h>
158 #include <elm_scroller.h>
159 #include <elm_entry.h>
160 #include <elm_list.h>
161
162 /* other includes */
163 #include <elc_ctxpopup.h>
164 #include <elm_dayselector.h>
165 #include <elc_fileselector_button.h>
166 #include <elc_fileselector_entry.h>
167 #include <elc_fileselector.h>
168 #include <elc_hoversel.h>
169 #include <elc_multibuttonentry.h>
170 #include <elc_naviframe.h>
171 #include <elc_popup.h>
172 #include <elm_actionslider.h>
173 #include <elm_app.h>
174 #include <elm_bg.h>
175 #include <elm_box.h>
176
177 #include <elm_bubble.h>
178 #include <elm_button.h>
179 #include <elm_cache.h>
180 #include <elm_calendar.h>
181 #include <elm_check.h>
182 #include <elm_clock.h>
183 #include <elm_cnp.h>
184 #include <elm_colorselector.h>
185 #include <elm_config.h>
186 #include <elm_conform.h>
187 #include <elm_cursor.h>
188 #include <elm_datetime.h>
189 #include <elm_debug.h>
190 #include <elm_diskselector.h>
191
192 //#include <elm_factory.h>
193 #include <elm_finger.h>
194 #include <elm_flip.h>
195 #include <elm_flipselector.h>
196 #include <elm_focus.h>
197 #include <elm_font.h>
198 #include <elm_frame.h>
199 #include <elm_gen.h>
200 #include <elm_gengrid.h>
201 #include <elm_genlist.h>
202 #include <elm_gesture_layer.h>
203 #include <elm_glview.h>
204 #include <elm_grid.h>
205
206 #include <elm_hover.h>
207 #include <elm_image.h>
208 #include <elm_index.h>
209 #include <elm_inwin.h>
210 #include <elm_label.h>
211 #include <elm_layout.h>
212 #include <elm_macros.h>
213 #include <elm_map.h>
214 #include <elm_mapbuf.h>
215 #include <elm_menu.h>
216 #include <elm_mirroring.h>
217 #include <elm_need.h>
218 #include <elm_notify.h>
219 #include <elm_object.h>
220
221 #include <elm_panel.h>
222 #include <elm_panes.h>
223 #include <elm_photocam.h>
224 #include <elm_photo.h>
225 #include <elm_plug.h>
226 #include <elm_progressbar.h>
227 #include <elm_radio.h>
228 #include <elm_route.h>
229 #include <elm_scale.h>
230 #include <elm_scroll.h>
231 #include <elm_segment_control.h>
232
233 #include <elm_separator.h>
234 #include <elm_slider.h>
235 #include <elm_slideshow.h>
236 #include <elm_spinner.h>
237 #include <elm_store.h>
238 #include <elm_table.h>
239 #include <elm_theme.h>
240 #include <elm_thumb.h>
241 #include <elm_toolbar.h>
242 #include <elm_transit.h>
243 #include <elm_video.h>
244 #include <elm_web.h>
245 #include <elm_win.h>
246
247 /* include deprecated calls last of all */
248 #include <elm_deprecated.h>
249
250 #ifdef __cplusplus
251 }
252 #endif
253
254 #endif