make sure virtual method isn't inlined away
[wxWidgets.git] / include / wx / dlimpexp.h
1 /*
2 * Name: wx/dlimpexp.h
3 * Purpose: Macros for declaring DLL-imported/exported functions
4 * Author: Vadim Zeitlin
5 * Modified by:
6 * Created: 16.10.2003 (extracted from wx/defs.h)
7 * RCS-ID: $Id$
8 * Copyright: (c) 2003 Vadim Zeitlin <vadim@wxwidgets.org>
9 * Licence: wxWindows licence
10 */
11
12 /*
13 This is a C file, not C++ one, do not use C++ comments here!
14 */
15
16 #ifndef _WX_DLIMPEXP_H_
17 #define _WX_DLIMPEXP_H_
18
19 #if defined(HAVE_VISIBILITY)
20 # define WXEXPORT __attribute__ ((visibility("default")))
21 # define WXIMPORT __attribute__ ((visibility("default")))
22 #elif defined(__WINDOWS__)
23 /*
24 __declspec works in BC++ 5 and later, Watcom C++ 11.0 and later as well
25 as VC++ and gcc
26 */
27 # if defined(__VISUALC__) || defined(__BORLANDC__) || defined(__GNUC__) || defined(__WATCOMC__)
28 # define WXEXPORT __declspec(dllexport)
29 # define WXIMPORT __declspec(dllimport)
30 # else /* compiler doesn't support __declspec() */
31 # define WXEXPORT
32 # define WXIMPORT
33 # endif
34 #elif defined(__WXPM__)
35 # if defined (__WATCOMC__)
36 # define WXEXPORT __declspec(dllexport)
37 /*
38 __declspec(dllimport) prepends __imp to imported symbols. We do NOT
39 want that!
40 */
41 # define WXIMPORT
42 # elif defined(__EMX__)
43 # define WXEXPORT
44 # define WXIMPORT
45 # elif (!(defined(__VISAGECPP__) && (__IBMCPP__ < 400 || __IBMC__ < 400 )))
46 # define WXEXPORT _Export
47 # define WXIMPORT _Export
48 # endif
49 #elif defined(__WXMAC__) || defined(__WXCOCOA__)
50 # ifdef __MWERKS__
51 # define WXEXPORT __declspec(export)
52 # define WXIMPORT __declspec(import)
53 # endif
54 #elif defined(__CYGWIN__)
55 # define WXEXPORT __declspec(dllexport)
56 # define WXIMPORT __declspec(dllimport)
57 #endif
58
59 /* for other platforms/compilers we don't anything */
60 #ifndef WXEXPORT
61 # define WXEXPORT
62 # define WXIMPORT
63 #endif
64
65 /*
66 We support building wxWidgets as a set of several libraries but we don't
67 support arbitrary combinations of libs/DLLs: either we build all of them as
68 DLLs (in which case WXMAKINGDLL is defined) or none (it isn't).
69
70 However we have a problem because we need separate WXDLLIMPEXP versions for
71 different libraries as, for example, wxString class should be dllexported
72 when compiled in wxBase and dllimported otherwise, so we do define separate
73 WXMAKING/USINGDLL_XYZ constants for each component XYZ.
74 */
75 #ifdef WXMAKINGDLL
76 # if wxUSE_BASE
77 # define WXMAKINGDLL_BASE
78 # endif
79
80 # define WXMAKINGDLL_NET
81 # define WXMAKINGDLL_CORE
82 # define WXMAKINGDLL_ADV
83 # define WXMAKINGDLL_QA
84 # define WXMAKINGDLL_HTML
85 # define WXMAKINGDLL_GL
86 # define WXMAKINGDLL_XML
87 # define WXMAKINGDLL_XRC
88 # define WXMAKINGDLL_AUI
89 # define WXMAKINGDLL_PROPGRID
90 # define WXMAKINGDLL_RICHTEXT
91 # define WXMAKINGDLL_MEDIA
92 # define WXMAKINGDLL_STC
93 #endif /* WXMAKINGDLL */
94
95 /*
96 WXDLLIMPEXP_CORE maps to export declaration when building the DLL, to import
97 declaration if using it or to nothing at all if we don't use wxWin as DLL
98 */
99 #ifdef WXMAKINGDLL_BASE
100 # define WXDLLIMPEXP_BASE WXEXPORT
101 # define WXDLLIMPEXP_DATA_BASE(type) WXEXPORT type
102 # if defined(HAVE_VISIBILITY)
103 # define WXDLLIMPEXP_INLINE_BASE WXEXPORT
104 # else
105 # define WXDLLIMPEXP_INLINE_BASE
106 # endif
107 #elif defined(WXUSINGDLL)
108 # define WXDLLIMPEXP_BASE WXIMPORT
109 # define WXDLLIMPEXP_DATA_BASE(type) WXIMPORT type
110 # if defined(HAVE_VISIBILITY)
111 # define WXDLLIMPEXP_INLINE_BASE WXIMPORT
112 # else
113 # define WXDLLIMPEXP_INLINE_BASE
114 # endif
115 #else /* not making nor using DLL */
116 # define WXDLLIMPEXP_BASE
117 # define WXDLLIMPEXP_DATA_BASE(type) type
118 # define WXDLLIMPEXP_INLINE_BASE
119 #endif
120
121 #ifdef WXMAKINGDLL_NET
122 # define WXDLLIMPEXP_NET WXEXPORT
123 # define WXDLLIMPEXP_DATA_NET(type) WXEXPORT type
124 #elif defined(WXUSINGDLL)
125 # define WXDLLIMPEXP_NET WXIMPORT
126 # define WXDLLIMPEXP_DATA_NET(type) WXIMPORT type
127 #else /* not making nor using DLL */
128 # define WXDLLIMPEXP_NET
129 # define WXDLLIMPEXP_DATA_NET(type) type
130 #endif
131
132 #ifdef WXMAKINGDLL_CORE
133 # define WXDLLIMPEXP_CORE WXEXPORT
134 # define WXDLLIMPEXP_DATA_CORE(type) WXEXPORT type
135 # if defined(HAVE_VISIBILITY)
136 # define WXDLLIMPEXP_INLINE_CORE WXEXPORT
137 # else
138 # define WXDLLIMPEXP_INLINE_CORE
139 # endif
140 #elif defined(WXUSINGDLL)
141 # define WXDLLIMPEXP_CORE WXIMPORT
142 # define WXDLLIMPEXP_DATA_CORE(type) WXIMPORT type
143 # if defined(HAVE_VISIBILITY)
144 # define WXDLLIMPEXP_INLINE_CORE WXIMPORT
145 # else
146 # define WXDLLIMPEXP_INLINE_CORE
147 # endif
148 #else /* not making nor using DLL */
149 # define WXDLLIMPEXP_CORE
150 # define WXDLLIMPEXP_DATA_CORE(type) type
151 # define WXDLLIMPEXP_INLINE_CORE
152 #endif
153
154 #ifdef WXMAKINGDLL_ADV
155 # define WXDLLIMPEXP_ADV WXEXPORT
156 # define WXDLLIMPEXP_DATA_ADV(type) WXEXPORT type
157 #elif defined(WXUSINGDLL)
158 # define WXDLLIMPEXP_ADV WXIMPORT
159 # define WXDLLIMPEXP_DATA_ADV(type) WXIMPORT type
160 #else /* not making nor using DLL */
161 # define WXDLLIMPEXP_ADV
162 # define WXDLLIMPEXP_DATA_ADV(type) type
163 #endif
164
165 #ifdef WXMAKINGDLL_QA
166 # define WXDLLIMPEXP_QA WXEXPORT
167 # define WXDLLIMPEXP_DATA_QA(type) WXEXPORT type
168 #elif defined(WXUSINGDLL)
169 # define WXDLLIMPEXP_QA WXIMPORT
170 # define WXDLLIMPEXP_DATA_QA(type) WXIMPORT type
171 #else /* not making nor using DLL */
172 # define WXDLLIMPEXP_QA
173 # define WXDLLIMPEXP_DATA_QA(type) type
174 #endif
175
176 #ifdef WXMAKINGDLL_HTML
177 # define WXDLLIMPEXP_HTML WXEXPORT
178 # define WXDLLIMPEXP_DATA_HTML(type) WXEXPORT type
179 #elif defined(WXUSINGDLL)
180 # define WXDLLIMPEXP_HTML WXIMPORT
181 # define WXDLLIMPEXP_DATA_HTML(type) WXIMPORT type
182 #else /* not making nor using DLL */
183 # define WXDLLIMPEXP_HTML
184 # define WXDLLIMPEXP_DATA_HTML(type) type
185 #endif
186
187 #ifdef WXMAKINGDLL_GL
188 # define WXDLLIMPEXP_GL WXEXPORT
189 #elif defined(WXUSINGDLL)
190 # define WXDLLIMPEXP_GL WXIMPORT
191 #else /* not making nor using DLL */
192 # define WXDLLIMPEXP_GL
193 #endif
194
195 #ifdef WXMAKINGDLL_XML
196 # define WXDLLIMPEXP_XML WXEXPORT
197 #elif defined(WXUSINGDLL)
198 # define WXDLLIMPEXP_XML WXIMPORT
199 #else /* not making nor using DLL */
200 # define WXDLLIMPEXP_XML
201 #endif
202
203 #ifdef WXMAKINGDLL_XRC
204 # define WXDLLIMPEXP_XRC WXEXPORT
205 #elif defined(WXUSINGDLL)
206 # define WXDLLIMPEXP_XRC WXIMPORT
207 #else /* not making nor using DLL */
208 # define WXDLLIMPEXP_XRC
209 #endif
210
211 #ifdef WXMAKINGDLL_AUI
212 # define WXDLLIMPEXP_AUI WXEXPORT
213 #elif defined(WXUSINGDLL)
214 # define WXDLLIMPEXP_AUI WXIMPORT
215 #else /* not making nor using DLL */
216 # define WXDLLIMPEXP_AUI
217 #endif
218
219 #ifdef WXMAKINGDLL_PROPGRID
220 # define WXDLLIMPEXP_PROPGRID WXEXPORT
221 #elif defined(WXUSINGDLL)
222 # define WXDLLIMPEXP_PROPGRID WXIMPORT
223 #else /* not making nor using DLL */
224 # define WXDLLIMPEXP_PROPGRID
225 #endif
226
227 #ifdef WXMAKINGDLL_RICHTEXT
228 # define WXDLLIMPEXP_RICHTEXT WXEXPORT
229 #elif defined(WXUSINGDLL)
230 # define WXDLLIMPEXP_RICHTEXT WXIMPORT
231 #else /* not making nor using DLL */
232 # define WXDLLIMPEXP_RICHTEXT
233 #endif
234
235 #ifdef WXMAKINGDLL_MEDIA
236 # define WXDLLIMPEXP_MEDIA WXEXPORT
237 #elif defined(WXUSINGDLL)
238 # define WXDLLIMPEXP_MEDIA WXIMPORT
239 #else /* not making nor using DLL */
240 # define WXDLLIMPEXP_MEDIA
241 #endif
242
243 #ifdef WXMAKINGDLL_STC
244 #define WXDLLIMPEXP_STC WXEXPORT
245 #elif defined(WXUSINGDLL)
246 #define WXDLLIMPEXP_STC WXIMPORT
247 #else /* not making nor using DLL */
248 #define WXDLLIMPEXP_STC
249 #endif
250
251 /*
252 GCC warns about using __attribute__ (and also __declspec in mingw32 case) on
253 forward declarations while MSVC complains about forward declarations without
254 __declspec for the classes later declared with it, so we need a separate set
255 of macros for forward declarations to hide this difference:
256 */
257 #if defined(HAVE_VISIBILITY) || (defined(__WINDOWS__) && defined(__GNUC__))
258 #define WXDLLIMPEXP_FWD_BASE
259 #define WXDLLIMPEXP_FWD_NET
260 #define WXDLLIMPEXP_FWD_CORE
261 #define WXDLLIMPEXP_FWD_ADV
262 #define WXDLLIMPEXP_FWD_QA
263 #define WXDLLIMPEXP_FWD_HTML
264 #define WXDLLIMPEXP_FWD_GL
265 #define WXDLLIMPEXP_FWD_XML
266 #define WXDLLIMPEXP_FWD_XRC
267 #define WXDLLIMPEXP_FWD_AUI
268 #define WXDLLIMPEXP_FWD_PROPGRID
269 #define WXDLLIMPEXP_FWD_RICHTEXT
270 #define WXDLLIMPEXP_FWD_MEDIA
271 #define WXDLLIMPEXP_FWD_STC
272 #else
273 #define WXDLLIMPEXP_FWD_BASE WXDLLIMPEXP_BASE
274 #define WXDLLIMPEXP_FWD_NET WXDLLIMPEXP_NET
275 #define WXDLLIMPEXP_FWD_CORE WXDLLIMPEXP_CORE
276 #define WXDLLIMPEXP_FWD_ADV WXDLLIMPEXP_ADV
277 #define WXDLLIMPEXP_FWD_QA WXDLLIMPEXP_QA
278 #define WXDLLIMPEXP_FWD_HTML WXDLLIMPEXP_HTML
279 #define WXDLLIMPEXP_FWD_GL WXDLLIMPEXP_GL
280 #define WXDLLIMPEXP_FWD_XML WXDLLIMPEXP_XML
281 #define WXDLLIMPEXP_FWD_XRC WXDLLIMPEXP_XRC
282 #define WXDLLIMPEXP_FWD_AUI WXDLLIMPEXP_AUI
283 #define WXDLLIMPEXP_FWD_PROPGRID WXDLLIMPEXP_PROPGRID
284 #define WXDLLIMPEXP_FWD_RICHTEXT WXDLLIMPEXP_RICHTEXT
285 #define WXDLLIMPEXP_FWD_MEDIA WXDLLIMPEXP_MEDIA
286 #define WXDLLIMPEXP_FWD_STC WXDLLIMPEXP_STC
287 #endif
288
289 /* for backwards compatibility, define suffix-less versions too */
290 #define WXDLLEXPORT WXDLLIMPEXP_CORE
291 #define WXDLLEXPORT_DATA WXDLLIMPEXP_DATA_CORE
292
293 /*
294 MSVC up to 6.0 needs to be explicitly told to export template instantiations
295 used by the DLL clients, use this macro to do it like this:
296
297 template <typename T> class Foo { ... };
298 WXDLLIMPEXP_TEMPLATE_INSTANCE_BASE( Foo<int> )
299
300 (notice that currently we only need this for wxBase and wxCore libraries)
301 */
302 #if defined(__VISUALC__) && (__VISUALC__ <= 1200)
303 #ifdef WXMAKINGDLL_BASE
304 #define WXDLLIMPEXP_TEMPLATE_INSTANCE_BASE(decl) \
305 template class WXDLLIMPEXP_BASE decl;
306 #define WXDLLIMPEXP_TEMPLATE_INSTANCE_CORE(decl) \
307 template class WXDLLIMPEXP_CORE decl;
308 #else
309 /*
310 We need to disable this warning when using this macro, as
311 recommended by Microsoft itself:
312
313 http://support.microsoft.com/default.aspx?scid=kb%3ben-us%3b168958
314 */
315 #pragma warning(disable:4231)
316
317 #define WXDLLIMPEXP_TEMPLATE_INSTANCE_BASE(decl) \
318 extern template class WXDLLIMPEXP_BASE decl;
319 #define WXDLLIMPEXP_TEMPLATE_INSTANCE_CORE(decl) \
320 extern template class WXDLLIMPEXP_CORE decl;
321 #endif
322 #else /* not VC <= 6 */
323 #define WXDLLIMPEXP_TEMPLATE_INSTANCE_BASE(decl)
324 #define WXDLLIMPEXP_TEMPLATE_INSTANCE_CORE(decl)
325 #endif /* VC6/others */
326
327 #endif /* _WX_DLIMPEXP_H_ */
328