]>
Commit | Line | Data |
---|---|---|
ddf98968 VS |
1 | <?xml version="1.0" ?> |
2 | <!-- $Id$ --> | |
3 | <makefile> | |
4 | ||
5df6736f VS |
5 | <!-- |
6 | ||
7 | IMPORTANT: please read docs/tech/tn0016.txt before modifying this file! | |
8 | ||
9 | --> | |
21041c70 VS |
10 | |
11 | ||
ddf98968 VS |
12 | <!-- ====================================================================== |
13 | FILES | |
88f23fdd | 14 | |
ddf98968 VS |
15 | Files are listed in variables according to this scheme: |
16 | * each group has _SRC and _HDR variable, for sources and headers | |
17 | respectively | |
18 | * file groups are: | |
19 | ||
e86e1522 VS |
20 | BASE_CMN common base files (all platforms) |
21 | GUI_CMN common GUI files (all platforms) | |
22 | BASE_AND_GUI_CMN_SRC files that must be compiled both into GUI | |
23 | and base library (all platforms) | |
ddf98968 | 24 | |
a2897d43 | 25 | BASE_$(platform) base files used on platform |
e86e1522 | 26 | BASE_AND_GUI_$(platform)_SRC base & gui files used on platform |
88f23fdd | 27 | |
e86e1522 VS |
28 | $(port)LOWLEVEL low-level GUI classes |
29 | $(port) high-level files for a port | |
88f23fdd | 30 | XWIN_LOWLEVEL low-level classes for X Window System |
1f6c7c44 | 31 | ports (wxGTK, wxMotif, wxX11) |
ddf98968 | 32 | |
ca95ed8e VZ |
33 | MSW_DESKTOP files used only on desktop Windows |
34 | versions and not under Windows CE | |
35 | ||
36 | xxx_NATIVE native files not used by wxUniv (used as | |
37 | complement of LOWLEVEL when most of the | |
38 | files are lowlevel and only few are native) | |
39 | ||
e86e1522 | 40 | HTML wxHTML files |
3849327b | 41 | XRC wxXRC files |
88f23fdd | 42 | |
ddf98968 | 43 | * one file may be listed in several groups |
88f23fdd | 44 | |
ddf98968 VS |
45 | ====================================================================== --> |
46 | ||
d48f13a1 VZ |
47 | <if cond="FORMAT in ['borland','mingw','msvc','watcom']"> |
48 | <define-rule name="__mm-to-$(OBJEXT[1:])" extends="__any,compilation_rule"> | |
49 | </define-rule> | |
50 | </if> | |
ddf98968 | 51 | |
ddf98968 VS |
52 | <!-- ====================================================================== --> |
53 | <!-- wxBase --> | |
54 | <!-- ====================================================================== --> | |
55 | ||
fc480dc1 DE |
56 | <!-- =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- --> |
57 | <!-- UNIX --> | |
58 | <!-- =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- --> | |
c0bf294f VZ |
59 | |
60 | <!-- Files used on all Unix systems, including Darwin --> | |
61 | <set var="BASE_UNIX_AND_DARWIN_SRC" hints="files"> | |
b46b1d59 VZ |
62 | src/common/fdiodispatcher.cpp |
63 | src/common/selectdispatcher.cpp | |
64 | src/unix/appunix.cpp | |
420b39aa | 65 | src/unix/dir.cpp |
c0bf294f | 66 | src/unix/dlunix.cpp |
b79dfbca VZ |
67 | src/unix/epolldispatcher.cpp |
68 | src/unix/evtloopunix.cpp | |
6bcc1145 | 69 | src/unix/fdiounix.cpp |
ddf98968 | 70 | src/unix/snglinst.cpp |
b79dfbca | 71 | src/unix/stackwalk.cpp |
8e5d5108 | 72 | src/unix/stdpaths.cpp |
c2ca375c | 73 | src/unix/timerunx.cpp |
420b39aa | 74 | src/unix/threadpsx.cpp |
9d3845e8 | 75 | src/unix/utilsunx.cpp |
2ccfebab | 76 | src/unix/wakeuppipe.cpp |
6b8ef0b3 | 77 | src/unix/fswatcher_kqueue.cpp |
e86e1522 | 78 | </set> |
c0bf294f VZ |
79 | |
80 | <set var="BASE_UNIX_AND_DARWIN_HDR" hints="files"> | |
b46b1d59 | 81 | wx/unix/app.h |
ca58c9bb VS |
82 | wx/unix/apptbase.h |
83 | wx/unix/apptrait.h | |
a1873279 | 84 | wx/unix/chkconf.h |
b46b1d59 | 85 | wx/unix/evtloop.h |
5cd99866 | 86 | wx/unix/evtloopsrc.h |
ca58c9bb | 87 | wx/unix/pipe.h |
c0bf294f | 88 | wx/unix/stdpaths.h |
84503528 | 89 | wx/unix/stackwalk.h |
fa2b309e | 90 | wx/unix/tls.h |
6b8ef0b3 | 91 | wx/unix/fswatcher_kqueue.h |
c0bf294f VZ |
92 | </set> |
93 | ||
94 | <!-- | |
95 | Files used on all Unix systems, including Darwin with any port but wxMac | |
96 | (this is really an aberration, we should also use these files for wxMac, | |
97 | it's not done because of some OS 9 support leftovers only now) | |
98 | --> | |
99 | <set var="BASE_UNIX_AND_DARWIN_NOTWXMAC_SRC" hints="files"> | |
100 | $(BASE_UNIX_AND_DARWIN_SRC) | |
c0bf294f | 101 | src/unix/mimetype.cpp |
c0bf294f VZ |
102 | </set> |
103 | ||
104 | <set var="BASE_UNIX_AND_DARWIN_NOTWXMAC_HDR" hints="files"> | |
105 | $(BASE_UNIX_AND_DARWIN_HDR) | |
106 | wx/unix/execute.h | |
107 | wx/unix/mimetype.h | |
c0bf294f VZ |
108 | </set> |
109 | ||
110 | <!-- | |
111 | Files used on all non-Darwin Unix systems (because Darwin provides other, | |
112 | better, native equivalents of the functionality they implement (e.g. | |
113 | CFSocket instead of BSD sockets) or doesn't provide it at all (epoll, | |
114 | backtrace()) | |
115 | --> | |
116 | <set var="BASE_UNIX_SRC" hints="files"> | |
117 | $(BASE_UNIX_AND_DARWIN_NOTWXMAC_SRC) | |
6b8ef0b3 | 118 | src/unix/fswatcher_inotify.cpp |
c0bf294f | 119 | </set> |
c0bf294f VZ |
120 | <set var="BASE_UNIX_HDR" hints="files"> |
121 | $(BASE_UNIX_AND_DARWIN_NOTWXMAC_HDR) | |
6b8ef0b3 | 122 | wx/unix/fswatcher_inotify.h |
ddf98968 | 123 | </set> |
e86e1522 | 124 | |
fc480dc1 DE |
125 | <!-- =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- --> |
126 | <!-- Windows --> | |
127 | <!-- =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- --> | |
22d2b5bf | 128 | <set var="BASE_WIN32_SRC" hints="files"> |
9a90985d | 129 | src/msw/basemsw.cpp |
5df6736f | 130 | src/msw/crashrpt.cpp |
107d0fd4 | 131 | src/msw/debughlp.cpp |
ddf98968 VS |
132 | src/msw/dde.cpp |
133 | src/msw/dir.cpp | |
107d0fd4 | 134 | src/msw/dlmsw.cpp |
e27f5540 | 135 | src/msw/evtloopconsole.cpp |
ddf98968 | 136 | src/msw/mimetype.cpp |
3032b7b5 | 137 | src/msw/power.cpp |
ddf98968 VS |
138 | src/msw/regconf.cpp |
139 | src/msw/registry.cpp | |
140 | src/msw/snglinst.cpp | |
107d0fd4 | 141 | src/msw/stackwalk.cpp |
6d3b231a | 142 | src/msw/stdpaths.cpp |
ddf98968 | 143 | src/msw/thread.cpp |
c2ca375c | 144 | src/msw/timer.cpp |
ddf98968 VS |
145 | src/msw/utils.cpp |
146 | src/msw/utilsexc.cpp | |
6b8ef0b3 | 147 | src/msw/fswatcher.cpp |
e86e1522 | 148 | </set> |
22d2b5bf | 149 | <set var="BASE_AND_GUI_WIN32_SRC" hints="files"> |
7340bea2 | 150 | src/msw/main.cpp |
e86e1522 | 151 | src/msw/mslu.cpp |
ddf98968 VS |
152 | src/msw/volume.cpp |
153 | </set> | |
af594eca VS |
154 | <set var="BASE_WINCE_SRC" hints="files"> |
155 | <if cond="TOOLKIT=='WINCE'">src/msw/wince/time.cpp</if> | |
156 | </set> | |
22d2b5bf | 157 | <set var="BASE_WIN32_HDR" hints="files"> |
ca58c9bb VS |
158 | wx/msw/apptrait.h |
159 | wx/msw/apptbase.h | |
5df6736f VS |
160 | wx/msw/chkconf.h |
161 | wx/msw/crashrpt.h | |
ddf98968 | 162 | wx/msw/dde.h |
107d0fd4 | 163 | wx/msw/debughlp.h |
e27f5540 | 164 | wx/msw/evtloopconsole.h |
ddf98968 | 165 | wx/msw/gccpriv.h |
8bda759f | 166 | wx/msw/libraries.h |
ddf98968 | 167 | wx/msw/mimetype.h |
40b13bcf | 168 | wx/msw/mslu.h |
bee413ee | 169 | wx/msw/private.h |
4835f3be WS |
170 | wx/msw/regconf.h |
171 | wx/msw/registry.h | |
39ea2103 | 172 | wx/msw/seh.h |
107d0fd4 | 173 | wx/msw/stackwalk.h |
76c35c88 | 174 | wx/msw/stdpaths.h |
ddf98968 | 175 | wx/msw/winundef.h |
0d236fd0 | 176 | wx/msw/wrapcctl.h |
660296aa | 177 | wx/msw/wrapcdlg.h |
d7e91db2 | 178 | wx/msw/wrapwin.h |
6b8ef0b3 | 179 | wx/msw/fswatcher.h |
ddf98968 | 180 | </set> |
af594eca | 181 | <set var="BASE_WINCE_HDR" hints="files"> |
2227439b WS |
182 | <if cond="TOOLKIT=='WINCE'"> |
183 | wx/msw/wince/time.h | |
184 | wx/msw/wince/chkconf.h | |
185 | </if> | |
af594eca | 186 | </set> |
e86e1522 | 187 | |
fc480dc1 DE |
188 | <!-- =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- --> |
189 | <!-- Mac --> | |
190 | <!-- =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- --> | |
191 | ||
420b39aa | 192 | <!-- Used on Mac OS X wxMac base, and Mac OS X darwin base --> |
fc480dc1 | 193 | <set var="BASE_COREFOUNDATION_SRC" hints="files"> |
126b1df4 | 194 | src/osx/core/cfstring.cpp |
5cd99866 | 195 | src/osx/core/evtloop_cf.cpp |
126b1df4 SC |
196 | src/osx/core/stdpaths_cf.cpp |
197 | src/osx/core/strconv_cf.cpp | |
198 | src/osx/core/utilsexc_base.cpp | |
fc480dc1 DE |
199 | </set> |
200 | <set var="BASE_COREFOUNDATION_HDR" hints="files"> | |
126b1df4 SC |
201 | wx/osx/core/cfdataref.h |
202 | wx/osx/core/cfref.h | |
203 | wx/osx/core/cfstring.h | |
204 | wx/osx/core/hid.h | |
7ce6da52 | 205 | wx/osx/core/evtloop.h |
fcb9299b | 206 | wx/osx/core/objcid.h |
fa2b309e | 207 | wx/osx/core/private.h |
126b1df4 | 208 | wx/osx/core/stdpaths.h |
fc480dc1 DE |
209 | </set> |
210 | ||
2ea057f9 SC |
211 | <!-- Base files used by OS X ports (not Carbon) --> |
212 | <set var="BASE_OSX_SHARED_SRC" hints="files"> | |
fa2b309e | 213 | src/osx/core/mimetype.cpp |
fc480dc1 | 214 | $(BASE_COREFOUNDATION_SRC) |
2ea057f9 | 215 | $(BASE_UNIX_AND_DARWIN_SRC) |
fc480dc1 | 216 | </set> |
2ea057f9 | 217 | <set var="BASE_OSX_SHARED_HDR" hints="files"> |
fc480dc1 | 218 | $(BASE_COREFOUNDATION_HDR) |
2ea057f9 | 219 | $(BASE_UNIX_AND_DARWIN_HDR) |
fc480dc1 | 220 | </set> |
420b39aa | 221 | <!-- Base and GUI files used by OS X --> |
2ea057f9 | 222 | <set var="BASE_AND_GUI_OSX_CARBON_SRC" hints="files"> |
126b1df4 SC |
223 | src/osx/carbon/utils.cpp |
224 | src/osx/carbon/uma.cpp | |
8b509749 VS |
225 | </set> |
226 | ||
2ea057f9 SC |
227 | <set var="BASE_AND_GUI_OSX_COCOA_SRC" hints="files"> |
228 | src/osx/cocoa/utils.mm | |
9feb7716 | 229 | </set> |
8b509749 | 230 | |
80a12bd8 SC |
231 | <set var="BASE_AND_GUI_OSX_IPHONE_SRC" hints="files"> |
232 | src/osx/iphone/utils.mm | |
233 | </set> | |
234 | ||
fc480dc1 | 235 | <!-- Base files used by non-wxMac OS X builds --> |
2ea057f9 | 236 | <set var="BASE_OSX_NOTWXMAC_SRC" hints="files"> |
c0bf294f | 237 | $(BASE_UNIX_AND_DARWIN_NOTWXMAC_SRC) |
fc480dc1 DE |
238 | $(BASE_COREFOUNDATION_SRC) |
239 | </set> | |
2ea057f9 | 240 | <set var="BASE_OSX_NOTWXMAC_HDR" hints="files"> |
c0bf294f | 241 | $(BASE_UNIX_AND_DARWIN_NOTWXMAC_HDR) |
fc480dc1 | 242 | $(BASE_COREFOUNDATION_HDR) |
ddf98968 | 243 | </set> |
e86e1522 | 244 | |
fc480dc1 DE |
245 | <!-- =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- --> |
246 | <!-- OS/2 --> | |
247 | <!-- =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- --> | |
a986efd0 | 248 | |
22d2b5bf | 249 | <set var="BASE_OS2_SRC" hints="files"> |
9a2b64ef SN |
250 | src/common/fdiodispatcher.cpp |
251 | src/common/selectdispatcher.cpp | |
252 | src/unix/appunix.cpp | |
253 | src/unix/evtloopunix.cpp | |
62f98885 | 254 | src/unix/timerunx.cpp |
ddf98968 | 255 | src/os2/dir.cpp |
5cc55caf | 256 | src/os2/mimetype.cpp |
f0838d63 | 257 | src/os2/snglinst.cpp |
175bb578 | 258 | src/os2/stdpaths.cpp |
5cc55caf | 259 | src/os2/thread.cpp |
ddf98968 VS |
260 | src/os2/utils.cpp |
261 | src/os2/utilsexc.cpp | |
262 | </set> | |
22d2b5bf | 263 | <set var="BASE_AND_GUI_OS2_SRC" hints="files"> |
e86e1522 | 264 | </set> |
22d2b5bf | 265 | <set var="BASE_OS2_HDR" hints="files"> |
62f98885 | 266 | wx/unix/app.h |
175bb578 SN |
267 | wx/os2/apptbase.h |
268 | wx/os2/apptrait.h | |
9a2b64ef | 269 | wx/unix/evtloop.h |
175bb578 | 270 | wx/os2/mimetype.h |
e918f058 | 271 | wx/os2/private.h |
175bb578 | 272 | wx/os2/stdpaths.h |
ddc2587f | 273 | wx/os2/chkconf.h |
7e04a500 | 274 | wx/os2/wxrsc.h |
ddf98968 | 275 | </set> |
e86e1522 | 276 | |
83d8eb47 MW |
277 | <!-- =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- --> |
278 | <!-- MSDOS --> | |
279 | <!-- =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- --> | |
280 | ||
281 | <set var="BASE_MSDOS_SRC" hints="files"> | |
282 | src/msdos/dir.cpp | |
283 | src/msdos/mimetype.cpp | |
284 | src/msdos/utilsdos.cpp | |
285 | </set> | |
286 | <set var="BASE_AND_GUI_MSDOS_SRC" hints="files"> | |
287 | </set> | |
288 | <set var="BASE_MSDOS_HDR" hints="files"> | |
289 | wx/msdos/mimetype.h | |
290 | </set> | |
291 | ||
fc480dc1 DE |
292 | <!-- =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- --> |
293 | <!-- Common --> | |
294 | <!-- =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- --> | |
22d2b5bf | 295 | <set var="BASE_CMN_SRC" hints="files"> |
178c7760 | 296 | src/common/any.cpp |
9a90985d | 297 | src/common/appbase.cpp |
56d5b4b8 MW |
298 | src/common/arcall.cpp |
299 | src/common/arcfind.cpp | |
2304e5c9 | 300 | src/common/archive.cpp |
a7ea63e2 | 301 | src/common/arrstr.cpp |
4db03d26 | 302 | src/common/base64.cpp |
93a15cf1 | 303 | src/common/clntdata.cpp |
ddf98968 VS |
304 | src/common/cmdline.cpp |
305 | src/common/config.cpp | |
830f8f11 | 306 | src/common/convauto.cpp |
ddf98968 | 307 | src/common/datetime.cpp |
98919134 | 308 | src/common/datetimefmt.cpp |
ddf98968 | 309 | src/common/datstrm.cpp |
ddf98968 VS |
310 | src/common/dircmn.cpp |
311 | src/common/dynarray.cpp | |
312 | src/common/dynlib.cpp | |
313 | src/common/dynload.cpp | |
314 | src/common/encconv.cpp | |
b46b1d59 | 315 | src/common/evtloopcmn.cpp |
ddf98968 VS |
316 | src/common/extended.c |
317 | src/common/ffile.cpp | |
318 | src/common/file.cpp | |
f8f6c91a | 319 | src/common/fileback.cpp |
ddf98968 VS |
320 | src/common/fileconf.cpp |
321 | src/common/filefn.cpp | |
322 | src/common/filename.cpp | |
323 | src/common/filesys.cpp | |
166c3ef0 MW |
324 | src/common/filtall.cpp |
325 | src/common/filtfind.cpp | |
9a90985d | 326 | src/common/fmapbase.cpp |
f068697b | 327 | src/common/fs_arc.cpp |
37671b82 | 328 | src/common/fs_filter.cpp |
ddf98968 VS |
329 | src/common/hash.cpp |
330 | src/common/hashmap.cpp | |
4f4a180e | 331 | src/common/init.cpp |
ddf98968 VS |
332 | src/common/intl.cpp |
333 | src/common/ipcbase.cpp | |
ea144923 | 334 | src/common/languageinfo.cpp |
ddf98968 VS |
335 | src/common/list.cpp |
336 | src/common/log.cpp | |
337 | src/common/longlong.cpp | |
338 | src/common/memory.cpp | |
339 | src/common/mimecmn.cpp | |
340 | src/common/module.cpp | |
ddf98968 | 341 | src/common/mstream.cpp |
6686fbad | 342 | src/common/numformatter.cpp |
ddf98968 | 343 | src/common/object.cpp |
8bb6b2c0 | 344 | src/common/platinfo.cpp |
355debca | 345 | src/common/powercmn.cpp |
ddf98968 | 346 | src/common/process.cpp |
ddf98968 | 347 | src/common/regex.cpp |
8e5d5108 | 348 | src/common/stdpbase.cpp |
121fa06a | 349 | src/common/sstream.cpp |
72a7c559 | 350 | src/common/stdstream.cpp |
9a90985d | 351 | src/common/stopwatch.cpp |
ddf98968 VS |
352 | src/common/strconv.cpp |
353 | src/common/stream.cpp | |
354 | src/common/string.cpp | |
a7ea63e2 | 355 | src/common/stringimpl.cpp |
467175ab | 356 | src/common/stringops.cpp |
c9f78968 | 357 | src/common/strvararg.cpp |
ddf98968 | 358 | src/common/sysopt.cpp |
56d5b4b8 | 359 | src/common/tarstrm.cpp |
ddf98968 VS |
360 | src/common/textbuf.cpp |
361 | src/common/textfile.cpp | |
59068d79 | 362 | src/common/time.cpp |
c2ca375c VZ |
363 | src/common/timercmn.cpp |
364 | src/common/timerimpl.cpp | |
ddf98968 | 365 | src/common/tokenzr.cpp |
ea144923 | 366 | src/common/translation.cpp |
ddf98968 | 367 | src/common/txtstrm.cpp |
dd0ef332 | 368 | src/common/unichar.cpp |
dd65d8c8 | 369 | src/common/uri.cpp |
10f41d50 | 370 | src/common/ustring.cpp |
ddf98968 VS |
371 | src/common/variant.cpp |
372 | src/common/wfstream.cpp | |
dd0ef332 VS |
373 | src/common/wxcrt.cpp |
374 | src/common/wxprintf.cpp | |
6e4ae332 | 375 | src/common/xlocale.cpp |
9c6cef05 JS |
376 | src/common/xti.cpp |
377 | src/common/xtistrm.cpp | |
ddf98968 VS |
378 | src/common/zipstrm.cpp |
379 | src/common/zstream.cpp | |
6b8ef0b3 VZ |
380 | src/common/fswatchercmn.cpp |
381 | src/generic/fswatcherg.cpp | |
ddf98968 | 382 | </set> |
22d2b5bf | 383 | <set var="BASE_AND_GUI_CMN_SRC" hints="files"> |
075131fd | 384 | src/common/event.cpp |
e86e1522 VS |
385 | src/common/fs_mem.cpp |
386 | src/common/msgout.cpp | |
387 | src/common/utilscmn.cpp | |
388 | </set> | |
22d2b5bf | 389 | <set var="BASE_CMN_HDR" hints="files"> |
21041c70 | 390 | wx/afterstd.h |
178c7760 | 391 | wx/any.h |
254696bb | 392 | wx/anystr.h |
5df6736f | 393 | wx/app.h |
eb9dd149 | 394 | wx/apptrait.h |
2304e5c9 | 395 | wx/archive.h |
ddf98968 | 396 | wx/arrimpl.cpp |
5df6736f | 397 | wx/arrstr.h |
cde76cf2 | 398 | wx/atomic.h |
4db03d26 | 399 | wx/base64.h |
5df6736f | 400 | wx/beforestd.h |
ddf98968 VS |
401 | wx/buffer.h |
402 | wx/build.h | |
dd0ef332 | 403 | wx/chartype.h |
664e1314 | 404 | wx/checkeddelete.h |
ddf98968 | 405 | wx/chkconf.h |
93a15cf1 | 406 | wx/clntdata.h |
541ea80f | 407 | wx/cmdargs.h |
ddf98968 VS |
408 | wx/cmdline.h |
409 | wx/confbase.h | |
410 | wx/config.h | |
830f8f11 | 411 | wx/convauto.h |
5df6736f | 412 | wx/containr.h |
cdd8d745 | 413 | wx/cpp.h |
abde3283 | 414 | wx/crt.h |
ddf98968 | 415 | wx/datetime.h |
ddf98968 | 416 | wx/datstrm.h |
ddf98968 VS |
417 | wx/dde.h |
418 | wx/debug.h | |
419 | wx/defs.h | |
420 | wx/dir.h | |
0cc66b6c | 421 | wx/dlimpexp.h |
aef06ee1 | 422 | wx/dlist.h |
ddf98968 VS |
423 | wx/dynarray.h |
424 | wx/dynlib.h | |
425 | wx/dynload.h | |
426 | wx/encconv.h | |
427 | wx/event.h | |
58cc1587 | 428 | wx/eventfilter.h |
00237407 | 429 | wx/evtloop.h |
2524f1ce | 430 | wx/except.h |
ddf98968 | 431 | wx/features.h |
afc89ff4 | 432 | wx/flags.h |
ddf98968 VS |
433 | wx/ffile.h |
434 | wx/file.h | |
435 | wx/fileconf.h | |
436 | wx/filefn.h | |
437 | wx/filename.h | |
438 | wx/filesys.h | |
439 | wx/fontenc.h | |
440 | wx/fontmap.h | |
f068697b | 441 | wx/fs_arc.h |
37671b82 | 442 | wx/fs_filter.h |
ddf98968 | 443 | wx/fs_mem.h |
5df6736f | 444 | wx/fs_zip.h |
ddf98968 VS |
445 | wx/hash.h |
446 | wx/hashmap.h | |
ca58c9bb | 447 | wx/hashset.h |
520a495c | 448 | wx/html/forcelnk.h |
075131fd | 449 | wx/iconloc.h |
5df6736f | 450 | wx/init.h |
ddf98968 VS |
451 | wx/intl.h |
452 | wx/iosfwrap.h | |
453 | wx/ioswrap.h | |
454 | wx/ipc.h | |
455 | wx/ipcbase.h | |
3a571037 | 456 | wx/kbdstate.h |
ea144923 | 457 | wx/language.h |
6cf2fb76 | 458 | wx/link.h |
ddf98968 | 459 | wx/list.h |
5df6736f | 460 | wx/listimpl.cpp |
ddf98968 VS |
461 | wx/log.h |
462 | wx/longlong.h | |
463 | wx/math.h | |
ddf98968 | 464 | wx/memconf.h |
5df6736f | 465 | wx/memory.h |
ddf98968 VS |
466 | wx/memtext.h |
467 | wx/mimetype.h | |
468 | wx/module.h | |
3a571037 | 469 | wx/mousestate.h |
ddf98968 | 470 | wx/msgout.h |
b589082a | 471 | wx/msgqueue.h |
ddf98968 | 472 | wx/mstream.h |
6686fbad | 473 | wx/numformatter.h |
ddf98968 VS |
474 | wx/object.h |
475 | wx/platform.h | |
8bb6b2c0 | 476 | wx/platinfo.h |
355debca | 477 | wx/power.h |
ddf98968 | 478 | wx/process.h |
ca58c9bb | 479 | wx/ptr_scpd.h |
5200ca36 | 480 | wx/ptr_shrd.h |
97d16ceb | 481 | wx/recguard.h |
ddf98968 | 482 | wx/regex.h |
28953245 | 483 | wx/rtti.h |
664e1314 VZ |
484 | wx/scopedarray.h |
485 | wx/scopedptr.h | |
ca58c9bb | 486 | wx/scopeguard.h |
664e1314 | 487 | wx/sharedptr.h |
ddf98968 | 488 | wx/snglinst.h |
121fa06a | 489 | wx/sstream.h |
4048a3c8 | 490 | wx/stack.h |
107d0fd4 | 491 | wx/stackwalk.h |
8e5d5108 | 492 | wx/stdpaths.h |
72a7c559 | 493 | wx/stdstream.h |
e6cbc5e1 | 494 | wx/stockitem.h |
21c557b8 | 495 | wx/stopwatch.h |
ddf98968 VS |
496 | wx/strconv.h |
497 | wx/stream.h | |
498 | wx/string.h | |
a7ea63e2 | 499 | wx/stringimpl.h |
467175ab | 500 | wx/stringops.h |
c9f78968 | 501 | wx/strvararg.h |
ddf98968 | 502 | wx/sysopt.h |
56d5b4b8 | 503 | wx/tarstrm.h |
ddf98968 VS |
504 | wx/textbuf.h |
505 | wx/textfile.h | |
506 | wx/thread.h | |
507 | wx/thrimpl.cpp | |
59068d79 | 508 | wx/time.h |
ca58c9bb | 509 | wx/timer.h |
2f4c5d00 | 510 | wx/tls.h |
ddf98968 | 511 | wx/tokenzr.h |
db7035e4 | 512 | wx/tracker.h |
ea144923 | 513 | wx/translation.h |
ddf98968 | 514 | wx/txtstrm.h |
7db064f6 | 515 | wx/typeinfo.h |
5df6736f | 516 | wx/types.h |
dd0ef332 | 517 | wx/unichar.h |
dd65d8c8 | 518 | wx/uri.h |
10f41d50 | 519 | wx/ustring.h |
ddf98968 VS |
520 | wx/utils.h |
521 | wx/variant.h | |
522 | wx/vector.h | |
523 | wx/version.h | |
ccec9093 | 524 | wx/versioninfo.h |
ddf98968 | 525 | wx/volume.h |
db7035e4 | 526 | wx/weakref.h |
ddf98968 VS |
527 | wx/wfstream.h |
528 | wx/wx.h | |
529 | wx/wxchar.h | |
dd0ef332 | 530 | wx/wxcrt.h |
52de37c7 | 531 | wx/wxcrtbase.h |
e7308074 | 532 | wx/wxcrtvararg.h |
ddf98968 | 533 | wx/wxprec.h |
6e4ae332 | 534 | wx/xlocale.h |
9c6cef05 | 535 | wx/xti.h |
1a4bb711 | 536 | wx/xti2.h |
9c6cef05 | 537 | wx/xtistrm.h |
28953245 SC |
538 | wx/xtictor.h |
539 | wx/xtihandler.h | |
540 | wx/xtiprop.h | |
541 | wx/xtitypes.h | |
ddf98968 VS |
542 | wx/zipstrm.h |
543 | wx/zstream.h | |
0fb0ecc4 | 544 | wx/meta/convertible.h |
987ae041 | 545 | wx/meta/if.h |
a5247580 | 546 | wx/meta/implicitconversion.h |
0fb0ecc4 | 547 | wx/meta/int2type.h |
987ae041 | 548 | wx/meta/movable.h |
109e2ca4 | 549 | wx/meta/pod.h |
32753ae9 | 550 | wx/meta/removeref.h |
6b8ef0b3 VZ |
551 | wx/fswatcher.h |
552 | wx/generic/fswatcher.h | |
7c4728f6 VS |
553 | </set> |
554 | ||
555 | ||
556 | <!-- ====================================================================== --> | |
557 | <!-- wxNet (part of wxBase) --> | |
558 | <!-- ====================================================================== --> | |
559 | ||
560 | <set var="NET_UNIX_SRC" hints="files"> | |
86c5b12b | 561 | src/common/socketiohandler.cpp |
60913641 | 562 | src/unix/sockunix.cpp |
7c4728f6 VS |
563 | </set> |
564 | ||
51fe4b60 | 565 | <set var="NET_OSX_SRC" hints="files"> |
60913641 | 566 | src/osx/core/sockosx.cpp |
51fe4b60 VZ |
567 | </set> |
568 | ||
7c4728f6 | 569 | <set var="NET_WIN32_SRC" hints="files"> |
bb20575e | 570 | src/msw/sockmsw.cpp |
25959b95 | 571 | src/msw/urlmsw.cpp |
7c4728f6 | 572 | </set> |
78c36934 | 573 | <set var="NET_WIN32_HDR" hints="files"> |
78c36934 | 574 | </set> |
7c4728f6 | 575 | |
af594eca VS |
576 | <set var="NET_WINCE_SRC" hints="files"> |
577 | <if cond="TOOLKIT=='WINCE'">src/msw/wince/net.cpp</if> | |
578 | </set> | |
78c36934 VZ |
579 | <set var="NET_WINCE_HDR" hints="files"> |
580 | <if cond="TOOLKIT=='WINCE'">wx/msw/wince/net.h</if> | |
581 | </set> | |
af594eca | 582 | |
7c4728f6 | 583 | <set var="NET_OS2_SRC" hints="files"> |
60913641 | 584 | src/unix/sockunix.cpp |
7c4728f6 VS |
585 | </set> |
586 | ||
587 | <set var="NET_CMN_SRC" hints="files"> | |
588 | src/common/fs_inet.cpp | |
589 | src/common/ftp.cpp | |
590 | src/common/http.cpp | |
591 | src/common/protocol.cpp | |
7c4728f6 | 592 | src/common/sckaddr.cpp |
5df6736f | 593 | src/common/sckfile.cpp |
7c4728f6 VS |
594 | src/common/sckipc.cpp |
595 | src/common/sckstrm.cpp | |
596 | src/common/socket.cpp | |
5df6736f | 597 | src/common/url.cpp |
7c4728f6 VS |
598 | </set> |
599 | <set var="NET_CMN_HDR" hints="files"> | |
600 | wx/fs_inet.h | |
5df6736f VS |
601 | wx/protocol/file.h |
602 | wx/protocol/ftp.h | |
603 | wx/protocol/http.h | |
0576cd9e | 604 | wx/protocol/log.h |
5df6736f | 605 | wx/protocol/protocol.h |
7c4728f6 VS |
606 | wx/sckaddr.h |
607 | wx/sckipc.h | |
608 | wx/sckstrm.h | |
609 | wx/socket.h | |
5df6736f | 610 | wx/url.h |
ddf98968 VS |
611 | </set> |
612 | ||
61639efb VZ |
613 | <!-- ====================================================================== --> |
614 | <!-- wxQA (non GUI library) --> | |
615 | <!-- ====================================================================== --> | |
ddf98968 | 616 | |
61639efb VZ |
617 | <set var="QA_SRC" hints="files"> |
618 | src/common/debugrpt.cpp | |
619 | src/generic/dbgrptg.cpp | |
620 | </set> | |
621 | ||
622 | <set var="QA_HDR" hints="files"> | |
4ed30bab | 623 | wx/debugrpt.h |
61639efb | 624 | </set> |
ddf98968 VS |
625 | |
626 | <!-- ====================================================================== --> | |
627 | <!-- Common GUI files --> | |
628 | <!-- ====================================================================== --> | |
629 | ||
22d2b5bf | 630 | <set var="GUI_CMN_SRC" hints="files"> |
c36d4774 | 631 | src/common/accelcmn.cpp |
ddf98968 | 632 | src/common/accesscmn.cpp |
72045d57 | 633 | src/common/anidecod.cpp |
0e5d4c38 | 634 | src/common/affinematrix2d.cpp |
5df6736f | 635 | src/common/appcmn.cpp |
ddf98968 VS |
636 | src/common/artprov.cpp |
637 | src/common/artstd.cpp | |
c1d2466a | 638 | src/common/arttango.cpp |
ddf98968 | 639 | src/common/bmpbase.cpp |
28953245 | 640 | src/common/bmpbtncmn.cpp |
16aa9c84 | 641 | src/common/bookctrl.cpp |
94aff5ff | 642 | src/common/btncmn.cpp |
fd220f13 | 643 | src/common/cairo.cpp |
28953245 SC |
644 | src/common/checkboxcmn.cpp |
645 | src/common/checklstcmn.cpp | |
ddf98968 VS |
646 | src/common/choiccmn.cpp |
647 | src/common/clipcmn.cpp | |
ec376c8f | 648 | src/common/clrpickercmn.cpp |
40989e46 | 649 | src/common/colourcmn.cpp |
081d8d96 | 650 | src/common/colourdata.cpp |
a340b80d | 651 | src/common/combocmn.cpp |
ddf98968 VS |
652 | src/common/cmdproc.cpp |
653 | src/common/cmndata.cpp | |
654 | src/common/containr.cpp | |
655 | src/common/cshelp.cpp | |
656 | src/common/ctrlcmn.cpp | |
657 | src/common/ctrlsub.cpp | |
ddf98968 | 658 | src/common/dcbase.cpp |
2e992e06 | 659 | src/common/dcbufcmn.cpp |
e642beb2 | 660 | src/common/dcgraph.cpp |
54429bb3 | 661 | src/common/dcsvg.cpp |
28953245 | 662 | src/common/dirctrlcmn.cpp |
ddf98968 VS |
663 | src/common/dlgcmn.cpp |
664 | src/common/dndcmn.cpp | |
665 | src/common/dobjcmn.cpp | |
666 | src/common/docmdi.cpp | |
667 | src/common/docview.cpp | |
668 | src/common/dpycmn.cpp | |
669 | src/common/dseldlg.cpp | |
670 | src/common/effects.cpp | |
671 | src/common/fddlgcmn.cpp | |
0cf3e587 | 672 | src/common/filectrlcmn.cpp |
a0219e45 | 673 | src/common/filehistorycmn.cpp |
ec376c8f VZ |
674 | src/common/filepickercmn.cpp |
675 | src/common/fontpickercmn.cpp | |
7e7336a7 | 676 | src/common/fldlgcmn.cpp |
ddf98968 | 677 | src/common/fontcmn.cpp |
081d8d96 | 678 | src/common/fontdata.cpp |
f82b7036 | 679 | src/generic/graphicc.cpp |
6540132f | 680 | src/common/fontenumcmn.cpp |
5df6736f | 681 | src/common/fontmap.cpp |
c3a58b24 | 682 | src/common/fontutilcmn.cpp |
ddf98968 | 683 | src/common/framecmn.cpp |
ddf98968 | 684 | src/common/gaugecmn.cpp |
20b35a69 | 685 | src/common/gbsizer.cpp |
ddf98968 VS |
686 | src/common/gdicmn.cpp |
687 | src/common/geometry.cpp | |
688 | src/common/gifdecod.cpp | |
f43426c1 | 689 | src/common/graphcmn.cpp |
56873923 VZ |
690 | src/common/headercolcmn.cpp |
691 | src/common/headerctrlcmn.cpp | |
ddf98968 VS |
692 | src/common/helpbase.cpp |
693 | src/common/iconbndl.cpp | |
694 | src/common/imagall.cpp | |
695 | src/common/imagbmp.cpp | |
696 | src/common/image.cpp | |
5df6736f | 697 | src/common/imagfill.cpp |
ddf98968 VS |
698 | src/common/imaggif.cpp |
699 | src/common/imagiff.cpp | |
700 | src/common/imagjpeg.cpp | |
701 | src/common/imagpcx.cpp | |
702 | src/common/imagpng.cpp | |
703 | src/common/imagpnm.cpp | |
3af706cc | 704 | src/common/imagtga.cpp |
ddf98968 VS |
705 | src/common/imagtiff.cpp |
706 | src/common/imagxpm.cpp | |
707 | src/common/layout.cpp | |
708 | src/common/lboxcmn.cpp | |
e2bc1d69 | 709 | src/common/listctrlcmn.cpp |
9bb9964e | 710 | src/common/markupparser.cpp |
ddf98968 VS |
711 | src/common/matrix.cpp |
712 | src/common/menucmn.cpp | |
691745ab | 713 | src/common/modalhook.cpp |
bca8c756 | 714 | src/common/mousemanager.cpp |
ddf98968 | 715 | src/common/nbkbase.cpp |
30c841c8 | 716 | src/common/overlaycmn.cpp |
98fbab9e | 717 | src/common/ownerdrwcmn.cpp |
ddf98968 | 718 | src/common/paper.cpp |
28953245 | 719 | src/common/panelcmn.cpp |
0fa541e8 | 720 | src/common/persist.cpp |
ec376c8f | 721 | src/common/pickerbase.cpp |
ddf98968 | 722 | src/common/popupcmn.cpp |
2aab96f5 | 723 | src/common/preferencescmn.cpp |
ddf98968 VS |
724 | src/common/prntbase.cpp |
725 | src/common/quantize.cpp | |
28953245 | 726 | src/common/radiobtncmn.cpp |
ddf98968 | 727 | src/common/radiocmn.cpp |
af67f39d | 728 | src/common/rearrangectrl.cpp |
4a9cba9e | 729 | src/common/rendcmn.cpp |
ddf98968 | 730 | src/common/rgncmn.cpp |
28953245 | 731 | src/common/scrolbarcmn.cpp |
ddf98968 VS |
732 | src/common/settcmn.cpp |
733 | src/common/sizer.cpp | |
28953245 SC |
734 | src/common/slidercmn.cpp |
735 | src/common/spinbtncmn.cpp | |
3c778901 | 736 | src/common/spinctrlcmn.cpp |
3f7f284d | 737 | src/common/srchcmn.cpp |
ddf98968 | 738 | src/common/statbar.cpp |
28953245 SC |
739 | src/common/statbmpcmn.cpp |
740 | src/common/statboxcmn.cpp | |
741 | src/common/statlinecmn.cpp | |
39bc0347 | 742 | src/common/stattextcmn.cpp |
401e3b6e | 743 | src/common/stockitem.cpp |
ddf98968 VS |
744 | src/common/tbarbase.cpp |
745 | src/common/textcmn.cpp | |
0ec1179b | 746 | src/common/textentrycmn.cpp |
8cd79b7a | 747 | src/common/textmeasurecmn.cpp |
5df6736f | 748 | src/common/toplvcmn.cpp |
ddf98968 | 749 | src/common/treebase.cpp |
a02a5cfc | 750 | src/common/uiactioncmn.cpp |
ddf98968 VS |
751 | src/common/valgen.cpp |
752 | src/common/validate.cpp | |
753 | src/common/valtext.cpp | |
a54cf371 | 754 | src/common/valnum.cpp |
ddf98968 | 755 | src/common/wincmn.cpp |
cf2810aa | 756 | src/common/windowid.cpp |
13a38887 | 757 | src/common/wrapsizer.cpp |
ddf98968 | 758 | src/common/xpmdecod.cpp |
5df6736f | 759 | src/generic/busyinfo.cpp |
e328812d | 760 | src/generic/buttonbar.cpp |
5df6736f | 761 | src/generic/choicdgg.cpp |
f5e0b4bc | 762 | src/generic/choicbkg.cpp |
a340b80d | 763 | src/generic/combog.cpp |
5df6736f VS |
764 | src/generic/dcpsg.cpp |
765 | src/generic/dirctrlg.cpp | |
766 | src/generic/dragimgg.cpp | |
0cf3e587 | 767 | src/generic/filectrlg.cpp |
56873923 | 768 | src/generic/headerctrlg.cpp |
742df992 | 769 | src/generic/infobar.cpp |
16aa9c84 | 770 | src/generic/listbkg.cpp |
5df6736f | 771 | src/generic/logg.cpp |
c27126c7 | 772 | src/generic/markuptext.cpp |
a1bdd4ab | 773 | src/generic/msgdlgg.cpp |
5df6736f | 774 | src/generic/numdlgg.cpp |
5df6736f | 775 | src/generic/progdlgg.cpp |
2aab96f5 | 776 | src/generic/preferencesg.cpp |
e32f4869 | 777 | src/generic/printps.cpp |
5df6736f | 778 | src/generic/renderg.cpp |
a1bdd4ab | 779 | src/generic/richmsgdlgg.cpp |
5df6736f VS |
780 | src/generic/scrlwing.cpp |
781 | src/generic/selstore.cpp | |
782 | src/generic/spinctlg.cpp | |
5df6736f | 783 | src/generic/splitter.cpp |
3f7f284d | 784 | src/generic/srchctlg.cpp |
a30e7029 | 785 | src/generic/statbmpg.cpp |
916eabe6 | 786 | src/generic/stattextg.cpp |
5df6736f | 787 | src/generic/textdlgg.cpp |
5df6736f | 788 | src/generic/tipwin.cpp |
7dcea26b | 789 | src/generic/toolbkg.cpp |
5df6736f | 790 | src/generic/treectlg.cpp |
eca15c0d | 791 | src/generic/treebkg.cpp |
5df6736f VS |
792 | src/generic/vlbox.cpp |
793 | src/generic/vscroll.cpp | |
a3b9c43b | 794 | src/xrc/xmlreshandler.cpp |
ddf98968 | 795 | </set> |
22d2b5bf | 796 | <set var="GUI_CMN_HDR" hints="files"> |
0e5d4c38 VZ |
797 | wx/affinematrix2dbase.h |
798 | wx/affinematrix2d.h | |
b4354db1 | 799 | wx/anybutton.h |
5df6736f VS |
800 | wx/bmpbuttn.h |
801 | wx/brush.h | |
802 | wx/button.h | |
803 | wx/checkbox.h | |
804 | wx/checklst.h | |
805 | wx/choicdlg.h | |
806 | wx/choice.h | |
807 | wx/cmndata.h | |
3c6fa826 | 808 | wx/collpane.h |
a340b80d | 809 | wx/combo.h |
5df6736f | 810 | wx/combobox.h |
a9e41db7 | 811 | wx/compositewin.h |
5df6736f VS |
812 | wx/control.h |
813 | wx/ctrlsub.h | |
d7e91db2 | 814 | wx/cursor.h |
bbcf2821 | 815 | wx/custombgwin.h |
d7e91db2 VS |
816 | wx/dc.h |
817 | wx/dcclient.h | |
f629895c | 818 | wx/dcgraph.h |
d7e91db2 VS |
819 | wx/dcmemory.h |
820 | wx/dcprint.h | |
821 | wx/dcscreen.h | |
54429bb3 | 822 | wx/dcsvg.h |
d7e91db2 | 823 | wx/dialog.h |
d7e91db2 | 824 | wx/dirdlg.h |
13cb46e0 | 825 | wx/dragimag.h |
e770e665 | 826 | wx/encinfo.h |
d7e91db2 | 827 | wx/filedlg.h |
5df6736f VS |
828 | wx/frame.h |
829 | wx/gauge.h | |
20b35a69 | 830 | wx/gbsizer.h |
5df6736f | 831 | wx/gdicmn.h |
ddf98968 | 832 | wx/generic/accel.h |
e328812d | 833 | wx/generic/buttonbar.h |
ddf98968 VS |
834 | wx/generic/choicdgg.h |
835 | wx/generic/colrdlgg.h | |
a340b80d | 836 | wx/generic/combo.h |
bbcf2821 | 837 | wx/generic/custombgwin.h |
ddf98968 VS |
838 | wx/generic/dcpsg.h |
839 | wx/generic/dirctrlg.h | |
13cb46e0 | 840 | wx/generic/dragimgg.h |
0cf3e587 | 841 | wx/generic/filectrlg.h |
5fb2ea66 | 842 | wx/generic/headerctrlg.h |
742df992 | 843 | wx/generic/infobar.h |
5df6736f | 844 | wx/generic/logg.h |
ddf98968 | 845 | wx/generic/msgdlgg.h |
aca6b1d7 | 846 | wx/generic/numdlgg.h |
ddf98968 VS |
847 | wx/generic/notebook.h |
848 | wx/generic/panelg.h | |
849 | wx/generic/prntdlgg.h | |
e32f4869 | 850 | wx/generic/printps.h |
ddf98968 | 851 | wx/generic/progdlgg.h |
a1bdd4ab | 852 | wx/generic/richmsgdlgg.h |
ddf98968 VS |
853 | wx/generic/scrolwin.h |
854 | wx/generic/spinctlg.h | |
ddf98968 | 855 | wx/generic/splitter.h |
3f7f284d | 856 | wx/generic/srchctlg.h |
a30e7029 | 857 | wx/generic/statbmpg.h |
916eabe6 | 858 | wx/generic/stattextg.h |
ddf98968 | 859 | wx/generic/textdlgg.h |
ddf98968 | 860 | wx/generic/treectlg.h |
f43426c1 | 861 | wx/graphics.h |
56873923 VZ |
862 | wx/headercol.h |
863 | wx/headerctrl.h | |
5df6736f VS |
864 | wx/helphtml.h |
865 | wx/icon.h | |
742df992 | 866 | wx/infobar.h |
87df1c87 | 867 | wx/itemid.h |
5df6736f VS |
868 | wx/layout.h |
869 | wx/listbox.h | |
870 | wx/mdi.h | |
871 | wx/menu.h | |
691745ab | 872 | wx/modalhook.h |
bca8c756 | 873 | wx/mousemanager.h |
5df6736f | 874 | wx/msgdlg.h |
dfba244c | 875 | wx/nativewin.h |
aca6b1d7 | 876 | wx/numdlg.h |
30c841c8 | 877 | wx/overlay.h |
5df6736f VS |
878 | wx/palette.h |
879 | wx/panel.h | |
880 | wx/pen.h | |
97660d42 | 881 | wx/position.h |
5df6736f VS |
882 | wx/radiobox.h |
883 | wx/radiobut.h | |
1a4bb711 | 884 | wx/range.h |
af67f39d | 885 | wx/rearrangectrl.h |
5df6736f | 886 | wx/renderer.h |
a1bdd4ab | 887 | wx/richmsgdlg.h |
5df6736f VS |
888 | wx/scrolbar.h |
889 | wx/scrolbar.h | |
890 | wx/scrolwin.h | |
891 | wx/selstore.h | |
892 | wx/settings.h | |
893 | wx/sizer.h | |
894 | wx/slider.h | |
895 | wx/statbmp.h | |
896 | wx/statbox.h | |
897 | wx/stattext.h | |
898 | wx/statusbr.h | |
ea98f11c | 899 | wx/textcompleter.h |
5df6736f VS |
900 | wx/textctrl.h |
901 | wx/textdlg.h | |
0ec1179b | 902 | wx/textentry.h |
255c07b4 | 903 | wx/textwrapper.h |
5df6736f VS |
904 | wx/toolbar.h |
905 | wx/validate.h | |
906 | wx/valtext.h | |
a54cf371 | 907 | wx/valnum.h |
5df6736f | 908 | wx/window.h |
cf2810aa | 909 | wx/windowid.h |
abfdefed | 910 | wx/withimages.h |
13a38887 | 911 | wx/wrapsizer.h |
4efdec45 | 912 | wx/wupdlock.h |
88f23fdd | 913 | |
88f23fdd RD |
914 | wx/accel.h |
915 | wx/access.h | |
72045d57 | 916 | wx/anidecod.h |
beff65bf | 917 | wx/animdecod.h |
88f23fdd | 918 | wx/artprov.h |
88f23fdd | 919 | wx/bitmap.h |
16aa9c84 | 920 | wx/bookctrl.h |
88f23fdd | 921 | wx/busyinfo.h |
b7ba00e7 | 922 | wx/generic/busyinfo.h |
88f23fdd | 923 | wx/caret.h |
f5e0b4bc | 924 | wx/choicebk.h |
88f23fdd | 925 | wx/clipbrd.h |
ec376c8f | 926 | wx/clrpicker.h |
88f23fdd RD |
927 | wx/cmdproc.h |
928 | wx/colordlg.h | |
929 | wx/colour.h | |
081d8d96 | 930 | wx/colourdata.h |
88f23fdd RD |
931 | wx/cshelp.h |
932 | wx/dataobj.h | |
e4a7bbfc | 933 | wx/dcmirror.h |
88f23fdd RD |
934 | wx/dcps.h |
935 | wx/dialup.h | |
936 | wx/dirctrl.h | |
937 | wx/display.h | |
4efdec45 | 938 | wx/display_impl.h |
88f23fdd RD |
939 | wx/dnd.h |
940 | wx/docmdi.h | |
941 | wx/docview.h | |
88f23fdd | 942 | wx/effects.h |
5cd99866 | 943 | wx/evtloopsrc.h |
88f23fdd | 944 | wx/fdrepdlg.h |
0cf3e587 | 945 | wx/filectrl.h |
a0219e45 | 946 | wx/filehistory.h |
ec376c8f VZ |
947 | wx/filepicker.h |
948 | wx/fontpicker.h | |
88f23fdd RD |
949 | wx/fmappriv.h |
950 | wx/font.h | |
081d8d96 | 951 | wx/fontdata.h |
88f23fdd RD |
952 | wx/fontdlg.h |
953 | wx/fontenum.h | |
954 | wx/fontutil.h | |
955 | wx/gdiobj.h | |
956 | wx/geometry.h | |
957 | wx/gifdecod.h | |
88f23fdd RD |
958 | wx/help.h |
959 | wx/helpbase.h | |
960 | wx/helpwin.h | |
961 | wx/iconbndl.h | |
88f23fdd RD |
962 | wx/imagbmp.h |
963 | wx/image.h | |
964 | wx/imaggif.h | |
965 | wx/imagiff.h | |
966 | wx/imagjpeg.h | |
967 | wx/imaglist.h | |
968 | wx/imagpcx.h | |
969 | wx/imagpng.h | |
970 | wx/imagpnm.h | |
3af706cc | 971 | wx/imagtga.h |
88f23fdd RD |
972 | wx/imagtiff.h |
973 | wx/imagxpm.h | |
88f23fdd | 974 | wx/listbase.h |
16aa9c84 | 975 | wx/listbook.h |
88f23fdd RD |
976 | wx/listctrl.h |
977 | wx/matrix.h | |
978 | wx/menuitem.h | |
979 | wx/metafile.h | |
980 | wx/minifram.h | |
42b0d8b9 | 981 | wx/nonownedwnd.h |
88f23fdd RD |
982 | wx/notebook.h |
983 | wx/ownerdrw.h | |
984 | wx/paper.h | |
0fa541e8 VZ |
985 | wx/persist.h |
986 | wx/persist/bookctrl.h | |
d6397a9f | 987 | wx/persist/splitter.h |
0fa541e8 VZ |
988 | wx/persist/toplevel.h |
989 | wx/persist/treebook.h | |
990 | wx/persist/window.h | |
2c52450c | 991 | wx/pickerbase.h |
88f23fdd RD |
992 | wx/popupwin.h |
993 | wx/print.h | |
582f07c2 | 994 | wx/printdlg.h |
88f23fdd RD |
995 | wx/prntbase.h |
996 | wx/progdlg.h | |
88f23fdd RD |
997 | wx/quantize.h |
998 | wx/rawbmp.h | |
999 | wx/region.h | |
88f23fdd | 1000 | wx/scopeguard.h |
cc699de8 | 1001 | wx/simplebook.h |
88f23fdd RD |
1002 | wx/spinbutt.h |
1003 | wx/spinctrl.h | |
88f23fdd | 1004 | wx/splitter.h |
3f7f284d | 1005 | wx/srchctrl.h |
88f23fdd | 1006 | wx/statline.h |
88f23fdd | 1007 | wx/tbarbase.h |
88f23fdd | 1008 | wx/tglbtn.h |
88f23fdd | 1009 | wx/tipwin.h |
7dcea26b | 1010 | wx/toolbook.h |
88f23fdd RD |
1011 | wx/tooltip.h |
1012 | wx/toplevel.h | |
1013 | wx/treebase.h | |
eca15c0d | 1014 | wx/treebook.h |
88f23fdd | 1015 | wx/treectrl.h |
a02a5cfc | 1016 | wx/uiaction.h |
88f23fdd | 1017 | wx/valgen.h |
4048a3c8 | 1018 | wx/vidmode.h |
88f23fdd RD |
1019 | wx/vlbox.h |
1020 | wx/vms_x_fix.h | |
1021 | wx/vscroll.h | |
88f23fdd RD |
1022 | wx/xpmdecod.h |
1023 | wx/xpmhand.h | |
a3b9c43b | 1024 | wx/xrc/xmlreshandler.h |
ddf98968 VS |
1025 | </set> |
1026 | ||
9d3845e8 VZ |
1027 | <!-- ====================================================================== --> |
1028 | <!-- Common Unix files: --> | |
1029 | <!-- ====================================================================== --> | |
1030 | ||
1031 | <set var="UNIX_SRC" hints="files"> | |
1032 | src/unix/apptraits.cpp | |
1033 | </set> | |
ddf98968 VS |
1034 | |
1035 | <!-- ====================================================================== --> | |
1036 | <!-- Common X11 code: --> | |
1037 | <!-- ====================================================================== --> | |
1038 | ||
22d2b5bf | 1039 | <set var="XWIN_LOWLEVEL_SRC" hints="files"> |
c1eb1389 | 1040 | src/generic/caret.cpp |
d4d680e6 | 1041 | src/generic/imaglist.cpp |
e86e1522 | 1042 | src/unix/dialup.cpp |
a02a5cfc | 1043 | src/unix/displayx11.cpp |
5df6736f VS |
1044 | src/unix/fontenum.cpp |
1045 | src/unix/fontutil.cpp | |
a02a5cfc | 1046 | src/unix/uiactionx11.cpp |
5df6736f | 1047 | src/unix/utilsx11.cpp |
ddf98968 | 1048 | </set> |
22d2b5bf | 1049 | <set var="XWIN_LOWLEVEL_HDR" hints="files"> |
5df6736f | 1050 | wx/generic/caret.h |
d4d680e6 | 1051 | wx/generic/imaglist.h |
ddf98968 | 1052 | wx/unix/fontutil.h |
5df6736f | 1053 | wx/unix/utilsx11.h |
ddf98968 VS |
1054 | </set> |
1055 | ||
1056 | ||
1057 | <!-- ====================================================================== --> | |
1058 | <!-- wxGTK --> | |
1059 | <!-- ====================================================================== --> | |
1060 | ||
d48f13a1 VZ |
1061 | <set var="GTK_WIN32_SRC" hints="files"> |
1062 | src/generic/caret.cpp | |
1063 | src/generic/imaglist.cpp | |
1064 | src/msw/ole/automtn.cpp | |
1065 | src/msw/ole/oleutils.cpp | |
1066 | src/msw/ole/safearray.cpp | |
1067 | src/msw/ole/uuid.cpp | |
1068 | src/msw/dialup.cpp | |
1069 | src/msw/dib.cpp | |
1070 | src/msw/display.cpp | |
1071 | src/msw/utilswin.cpp | |
1072 | src/unix/fontenum.cpp | |
1073 | src/unix/fontutil.cpp | |
1074 | </set> | |
1075 | <set var="GTK_WIN32_HDR" hints="files"> | |
1076 | wx/generic/caret.h | |
1077 | wx/generic/imaglist.h | |
1078 | wx/msw/ole/automtn.h | |
1079 | wx/msw/ole/oleutils.h | |
1080 | wx/msw/ole/safearray.h | |
1081 | wx/msw/ole/uuid.h | |
1082 | wx/msw/dib.h | |
1083 | wx/unix/fontutil.h | |
1084 | </set> | |
3dd30495 VZ |
1085 | <set var="GTK_PLATFORM_SRC" hints="files"> |
1086 | <if cond="PLATFORM_UNIX=='1'">$(XWIN_LOWLEVEL_SRC)</if> | |
eff9d7f5 | 1087 | <if cond="PLATFORM_MACOSX=='1'">$(XWIN_LOWLEVEL_SRC)</if> |
d48f13a1 | 1088 | <if cond="PLATFORM_WIN32=='1'">$(GTK_WIN32_SRC)</if> |
3dd30495 VZ |
1089 | </set> |
1090 | <set var="GTK_PLATFORM_HDR" hints="files"> | |
1091 | <if cond="PLATFORM_UNIX=='1'">$(XWIN_LOWLEVEL_HDR)</if> | |
eff9d7f5 | 1092 | <if cond="PLATFORM_MACOSX=='1'">$(XWIN_LOWLEVEL_HDR)</if> |
d48f13a1 | 1093 | <if cond="PLATFORM_WIN32=='1'">$(GTK_WIN32_HDR)</if> |
3dd30495 | 1094 | </set> |
22d2b5bf | 1095 | <set var="GTK_LOWLEVEL_SRC" hints="files"> |
3dd30495 | 1096 | $(GTK_PLATFORM_SRC) |
71451a6d | 1097 | src/generic/icon.cpp |
5df6736f | 1098 | src/generic/paletteg.cpp |
ddf98968 | 1099 | src/gtk/app.cpp |
a481bbc3 | 1100 | src/gtk/assertdlg_gtk.cpp |
ddf98968 VS |
1101 | src/gtk/bitmap.cpp |
1102 | src/gtk/brush.cpp | |
1103 | src/gtk/clipbrd.cpp | |
1104 | src/gtk/colour.cpp | |
1105 | src/gtk/cursor.cpp | |
ddf98968 VS |
1106 | src/gtk/dataobj.cpp |
1107 | src/gtk/dc.cpp | |
ddf98968 VS |
1108 | src/gtk/dnd.cpp |
1109 | src/gtk/evtloop.cpp | |
0cf3e587 | 1110 | src/gtk/filectrl.cpp |
690ddfec | 1111 | src/gtk/filehistory.cpp |
ddf98968 | 1112 | src/gtk/font.cpp |
60913641 | 1113 | src/gtk/sockgtk.cpp |
5a98fd8d | 1114 | src/gtk/minifram.cpp |
a82afab3 | 1115 | src/gtk/nonownedwnd.cpp |
ddf98968 VS |
1116 | src/gtk/pen.cpp |
1117 | src/gtk/popupwin.cpp | |
e8759560 | 1118 | src/gtk/private.cpp |
ddf98968 | 1119 | src/gtk/region.cpp |
2479d149 | 1120 | src/gtk/renderer.cpp |
ddf98968 | 1121 | src/gtk/settings.cpp |
8cd79b7a | 1122 | src/gtk/textmeasure.cpp |
ddf98968 VS |
1123 | src/gtk/timer.cpp |
1124 | src/gtk/tooltip.cpp | |
5df6736f | 1125 | src/gtk/toplevel.cpp |
ddf98968 | 1126 | src/gtk/utilsgtk.cpp |
08f53168 | 1127 | src/gtk/win_gtk.cpp |
ddf98968 | 1128 | src/gtk/window.cpp |
ddf98968 | 1129 | </set> |
9dc44eff PC |
1130 | <set var="GTK2_LOWLEVEL_SRC" hints="files"> |
1131 | $(GTK_LOWLEVEL_SRC) | |
1132 | src/gtk/dcclient.cpp | |
1133 | src/gtk/dcmemory.cpp | |
1134 | src/gtk/dcscreen.cpp | |
1135 | </set> | |
22d2b5bf | 1136 | <set var="GTK_LOWLEVEL_HDR" hints="files"> |
3dd30495 | 1137 | $(GTK_PLATFORM_HDR) |
71451a6d | 1138 | wx/generic/icon.h |
eb9dd149 | 1139 | wx/generic/paletteg.h |
b521a84a | 1140 | wx/gtk/app.h |
588f4100 | 1141 | wx/gtk/assertdlg_gtk.h |
b521a84a VZ |
1142 | wx/gtk/bitmap.h |
1143 | wx/gtk/brush.h | |
1144 | wx/gtk/clipbrd.h | |
1145 | wx/gtk/colour.h | |
1146 | wx/gtk/cursor.h | |
1147 | wx/gtk/dataform.h | |
1148 | wx/gtk/dataobj.h | |
1149 | wx/gtk/dataobj2.h | |
b521a84a | 1150 | wx/gtk/dnd.h |
564c7fc4 | 1151 | wx/gtk/evtloop.h |
5cd99866 | 1152 | wx/gtk/evtloopsrc.h |
b521a84a | 1153 | wx/gtk/font.h |
690ddfec | 1154 | wx/gtk/filehistory.h |
b521a84a | 1155 | wx/gtk/minifram.h |
a82afab3 | 1156 | wx/gtk/nonownedwnd.h |
b521a84a VZ |
1157 | wx/gtk/pen.h |
1158 | wx/gtk/popupwin.h | |
1159 | wx/gtk/region.h | |
b521a84a VZ |
1160 | wx/gtk/tooltip.h |
1161 | wx/gtk/toplevel.h | |
b521a84a | 1162 | wx/gtk/window.h |
ddf98968 | 1163 | </set> |
22d2b5bf | 1164 | <set var="GTK_SRC" hints="files"> |
ddf98968 | 1165 | <!-- Generic implementations used by wxGTK: --> |
5df6736f | 1166 | src/generic/accel.cpp |
ddf98968 | 1167 | src/generic/fdrepdlg.cpp |
773623f2 VZ |
1168 | <!-- Needed as long as we support GTK+ < 2.6 --> |
1169 | src/generic/filepickerg.cpp | |
5df6736f | 1170 | src/generic/listctrl.cpp |
5df6736f | 1171 | src/generic/prntdlgg.cpp |
ddf98968 VS |
1172 | src/generic/statusbr.cpp |
1173 | <!-- GTK+ specific files: --> | |
b4354db1 | 1174 | src/gtk/anybutton.cpp |
7bebedd8 | 1175 | src/gtk/artgtk.cpp |
ddf98968 VS |
1176 | src/gtk/bmpbuttn.cpp |
1177 | src/gtk/button.cpp | |
1178 | src/gtk/checkbox.cpp | |
1179 | src/gtk/checklst.cpp | |
1180 | src/gtk/choice.cpp | |
3c6fa826 | 1181 | src/gtk/collpane.cpp |
274ad000 | 1182 | src/gtk/colordlg.cpp |
ddf98968 VS |
1183 | src/gtk/combobox.cpp |
1184 | src/gtk/control.cpp | |
ec376c8f | 1185 | src/gtk/clrpicker.cpp |
ddf98968 | 1186 | src/gtk/dialog.cpp |
ec376c8f VZ |
1187 | src/gtk/fontpicker.cpp |
1188 | src/gtk/filepicker.cpp | |
4d5beb1c | 1189 | src/gtk/dirdlg.cpp |
9755e73b | 1190 | src/gtk/filedlg.cpp |
ddf98968 VS |
1191 | src/gtk/fontdlg.cpp |
1192 | src/gtk/frame.cpp | |
1193 | src/gtk/gauge.cpp | |
2b850ae1 | 1194 | src/gtk/gnome/gvfs.cpp |
742df992 | 1195 | src/gtk/infobar.cpp |
ddf98968 VS |
1196 | src/gtk/listbox.cpp |
1197 | src/gtk/mdi.cpp | |
1198 | src/gtk/menu.cpp | |
b1f17bf0 | 1199 | src/gtk/mnemonics.cpp |
ddf98968 | 1200 | src/gtk/msgdlg.cpp |
dfba244c | 1201 | src/gtk/nativewin.cpp |
ddf98968 | 1202 | src/gtk/notebook.cpp |
742df992 | 1203 | src/gtk/print.cpp |
ddf98968 VS |
1204 | src/gtk/radiobox.cpp |
1205 | src/gtk/radiobut.cpp | |
1206 | src/gtk/scrolbar.cpp | |
1207 | src/gtk/scrolwin.cpp | |
1208 | src/gtk/slider.cpp | |
1209 | src/gtk/spinbutt.cpp | |
1210 | src/gtk/spinctrl.cpp | |
1211 | src/gtk/statbmp.cpp | |
1212 | src/gtk/statbox.cpp | |
1213 | src/gtk/statline.cpp | |
1214 | src/gtk/stattext.cpp | |
0b83552a | 1215 | src/gtk/toolbar.cpp |
ddf98968 | 1216 | src/gtk/textctrl.cpp |
0ec1179b | 1217 | src/gtk/textentry.cpp |
ddf98968 | 1218 | src/gtk/tglbtn.cpp |
4a46cbe8 | 1219 | src/gtk/treeentry_gtk.c |
ddf98968 | 1220 | </set> |
efaad1f0 PC |
1221 | <set var="GTK2_SRC" hints="files"> |
1222 | $(GTK_SRC) | |
1223 | <!-- Generic implementations used by wxGPE: --> | |
1224 | src/generic/fontdlgg.cpp | |
1225 | <!-- GTK+ specific files: --> | |
1226 | src/gtk/gnome/gprint.cpp | |
1227 | </set> | |
22d2b5bf | 1228 | <set var="GTK_HDR" hints="files"> |
5df6736f | 1229 | wx/generic/fdrepdlg.h |
773623f2 | 1230 | wx/generic/filepickerg.h |
5df6736f VS |
1231 | wx/generic/listctrl.h |
1232 | wx/generic/statusbr.h | |
ddf98968 | 1233 | wx/gtk/accel.h |
b4354db1 | 1234 | wx/gtk/anybutton.h |
ddf98968 | 1235 | wx/gtk/bmpbuttn.h |
ddf98968 VS |
1236 | wx/gtk/button.h |
1237 | wx/gtk/checkbox.h | |
1238 | wx/gtk/checklst.h | |
6619edf0 | 1239 | wx/gtk/chkconf.h |
3c6fa826 | 1240 | wx/gtk/collpane.h |
274ad000 | 1241 | wx/gtk/colordlg.h |
ddf98968 | 1242 | wx/gtk/choice.h |
ddf98968 VS |
1243 | wx/gtk/combobox.h |
1244 | wx/gtk/control.h | |
ec376c8f | 1245 | wx/gtk/clrpicker.h |
ddf98968 | 1246 | wx/gtk/dialog.h |
4d5beb1c | 1247 | wx/gtk/dirdlg.h |
0cf3e587 | 1248 | wx/gtk/filectrl.h |
ddf98968 | 1249 | wx/gtk/filedlg.h |
ec376c8f VZ |
1250 | wx/gtk/fontpicker.h |
1251 | wx/gtk/filepicker.h | |
ddf98968 VS |
1252 | wx/gtk/fontdlg.h |
1253 | wx/gtk/frame.h | |
ddf98968 | 1254 | wx/gtk/gauge.h |
2b850ae1 | 1255 | wx/gtk/gnome/gvfs.h |
742df992 | 1256 | wx/gtk/infobar.h |
ddf98968 VS |
1257 | wx/gtk/listbox.h |
1258 | wx/gtk/mdi.h | |
1259 | wx/gtk/menu.h | |
1260 | wx/gtk/menuitem.h | |
ddf98968 VS |
1261 | wx/gtk/msgdlg.h |
1262 | wx/gtk/notebook.h | |
742df992 | 1263 | wx/gtk/print.h |
ddf98968 VS |
1264 | wx/gtk/radiobox.h |
1265 | wx/gtk/radiobut.h | |
ddf98968 VS |
1266 | wx/gtk/scrolbar.h |
1267 | wx/gtk/scrolwin.h | |
1268 | wx/gtk/slider.h | |
1269 | wx/gtk/spinbutt.h | |
1270 | wx/gtk/spinctrl.h | |
1271 | wx/gtk/statbmp.h | |
1272 | wx/gtk/statbox.h | |
1273 | wx/gtk/statline.h | |
1274 | wx/gtk/stattext.h | |
0b83552a | 1275 | wx/gtk/toolbar.h |
ddf98968 | 1276 | wx/gtk/textctrl.h |
0ec1179b | 1277 | wx/gtk/textentry.h |
ddf98968 | 1278 | wx/gtk/tglbtn.h |
ddf98968 | 1279 | </set> |
efaad1f0 | 1280 | <set var="GTK2_HDR" hints="files"> |
37e8713e | 1281 | $(GTK_HDR) |
efaad1f0 PC |
1282 | wx/generic/fontdlgg.h |
1283 | wx/gtk/gnome/gprint.h | |
1284 | </set> | |
ddf98968 VS |
1285 | |
1286 | ||
8ff12d3d MR |
1287 | <!-- ====================================================================== --> |
1288 | <!-- wxGTK1 --> | |
1289 | <!-- ====================================================================== --> | |
1290 | ||
1291 | <set var="GTK1_LOWLEVEL_SRC" hints="files"> | |
1292 | $(XWIN_LOWLEVEL_SRC) | |
71451a6d | 1293 | src/generic/icon.cpp |
8ff12d3d | 1294 | src/generic/paletteg.cpp |
8cd79b7a | 1295 | src/generic/textmeasure.cpp |
8ff12d3d MR |
1296 | src/gtk1/app.cpp |
1297 | src/gtk1/bitmap.cpp | |
1298 | src/gtk1/brush.cpp | |
1299 | src/gtk1/clipbrd.cpp | |
1300 | src/gtk1/colour.cpp | |
1301 | src/gtk1/cursor.cpp | |
1302 | src/gtk1/data.cpp | |
1303 | src/gtk1/dataobj.cpp | |
1304 | src/gtk1/dc.cpp | |
1305 | src/gtk1/dcclient.cpp | |
1306 | src/gtk1/dcmemory.cpp | |
1307 | src/gtk1/dcscreen.cpp | |
1308 | src/gtk1/dnd.cpp | |
1309 | src/gtk1/evtloop.cpp | |
1310 | src/gtk1/font.cpp | |
60913641 | 1311 | src/gtk1/sockgtk.cpp |
8ff12d3d MR |
1312 | src/gtk1/main.cpp |
1313 | src/gtk1/minifram.cpp | |
1314 | src/gtk1/pen.cpp | |
1315 | src/gtk1/popupwin.cpp | |
1316 | src/gtk1/region.cpp | |
1317 | src/gtk1/renderer.cpp | |
1318 | src/gtk1/settings.cpp | |
1319 | src/gtk1/timer.cpp | |
1320 | src/gtk1/tooltip.cpp | |
1321 | src/gtk1/toplevel.cpp | |
1322 | src/gtk1/utilsgtk.cpp | |
1323 | src/gtk1/win_gtk.c | |
1324 | src/gtk1/window.cpp | |
1325 | </set> | |
1326 | <set var="GTK1_LOWLEVEL_HDR" hints="files"> | |
1327 | $(XWIN_LOWLEVEL_HDR) | |
71451a6d | 1328 | wx/generic/icon.h |
8ff12d3d MR |
1329 | wx/generic/paletteg.h |
1330 | wx/gtk1/app.h | |
1331 | wx/gtk1/bitmap.h | |
1332 | wx/gtk1/brush.h | |
1333 | wx/gtk1/clipbrd.h | |
1334 | wx/gtk1/colour.h | |
1335 | wx/gtk1/cursor.h | |
1336 | wx/gtk1/dataform.h | |
1337 | wx/gtk1/dataobj.h | |
1338 | wx/gtk1/dataobj2.h | |
1339 | wx/gtk1/dc.h | |
1340 | wx/gtk1/dcclient.h | |
1341 | wx/gtk1/dcmemory.h | |
1342 | wx/gtk1/dcscreen.h | |
1343 | wx/gtk1/dnd.h | |
1344 | wx/gtk1/font.h | |
8ff12d3d MR |
1345 | wx/gtk1/minifram.h |
1346 | wx/gtk1/pen.h | |
1347 | wx/gtk1/popupwin.h | |
1348 | wx/gtk1/region.h | |
8ff12d3d MR |
1349 | wx/gtk1/tooltip.h |
1350 | wx/gtk1/toplevel.h | |
1351 | wx/gtk1/win_gtk.h | |
1352 | wx/gtk1/window.h | |
1353 | </set> | |
1354 | <set var="GTK1_SRC" hints="files"> | |
1355 | <!-- Generic implementations used by wxGTK1: --> | |
1356 | src/generic/accel.cpp | |
773623f2 VZ |
1357 | src/generic/clrpickerg.cpp |
1358 | src/generic/collpaneg.cpp | |
8ff12d3d MR |
1359 | src/generic/colrdlgg.cpp |
1360 | src/generic/dirdlgg.cpp | |
1361 | src/generic/fdrepdlg.cpp | |
1362 | src/generic/filedlgg.cpp | |
773623f2 VZ |
1363 | src/generic/filepickerg.cpp |
1364 | src/generic/fontdlgg.cpp | |
1365 | src/generic/fontpickerg.cpp | |
8ff12d3d | 1366 | src/generic/listctrl.cpp |
8ff12d3d MR |
1367 | src/generic/prntdlgg.cpp |
1368 | src/generic/statusbr.cpp | |
8ff12d3d MR |
1369 | <!-- GTK1 specific files: --> |
1370 | src/gtk1/bmpbuttn.cpp | |
1371 | src/gtk1/button.cpp | |
1372 | src/gtk1/checkbox.cpp | |
1373 | src/gtk1/checklst.cpp | |
1374 | src/gtk1/choice.cpp | |
1375 | src/gtk1/combobox.cpp | |
1376 | src/gtk1/control.cpp | |
1377 | src/gtk1/dialog.cpp | |
1378 | src/gtk1/filedlg.cpp | |
1379 | src/gtk1/fontdlg.cpp | |
1380 | src/gtk1/frame.cpp | |
1381 | src/gtk1/gauge.cpp | |
1382 | src/gtk1/listbox.cpp | |
1383 | src/gtk1/mdi.cpp | |
1384 | src/gtk1/menu.cpp | |
818eb276 | 1385 | src/gtk1/mnemonics.cpp |
8ff12d3d MR |
1386 | src/gtk1/notebook.cpp |
1387 | src/gtk1/radiobox.cpp | |
1388 | src/gtk1/radiobut.cpp | |
1389 | src/gtk1/scrolbar.cpp | |
1390 | src/gtk1/scrolwin.cpp | |
1391 | src/gtk1/slider.cpp | |
1392 | src/gtk1/spinbutt.cpp | |
1393 | src/gtk1/spinctrl.cpp | |
1394 | src/gtk1/statbmp.cpp | |
1395 | src/gtk1/statbox.cpp | |
1396 | src/gtk1/statline.cpp | |
1397 | src/gtk1/stattext.cpp | |
be2b08eb | 1398 | src/gtk1/toolbar.cpp |
8ff12d3d MR |
1399 | src/gtk1/textctrl.cpp |
1400 | src/gtk1/tglbtn.cpp | |
8ff12d3d MR |
1401 | </set> |
1402 | <set var="GTK1_HDR" hints="files"> | |
773623f2 VZ |
1403 | wx/generic/clrpickerg.h |
1404 | wx/generic/collpaneg.h | |
8ff12d3d MR |
1405 | wx/generic/colrdlgg.h |
1406 | wx/generic/dirdlgg.h | |
1407 | wx/generic/fdrepdlg.h | |
773623f2 VZ |
1408 | wx/generic/filedlgg.h |
1409 | wx/generic/filepickerg.h | |
1410 | wx/generic/fontdlgg.h | |
1411 | wx/generic/fontpickerg.h | |
8ff12d3d MR |
1412 | wx/generic/listctrl.h |
1413 | wx/generic/statusbr.h | |
8ff12d3d MR |
1414 | wx/gtk1/accel.h |
1415 | wx/gtk1/bmpbuttn.h | |
1416 | wx/gtk1/button.h | |
1417 | wx/gtk1/checkbox.h | |
1418 | wx/gtk1/checklst.h | |
1419 | wx/gtk1/choice.h | |
1420 | wx/gtk1/combobox.h | |
1421 | wx/gtk1/control.h | |
1422 | wx/gtk1/dialog.h | |
1423 | wx/gtk1/filedlg.h | |
1424 | wx/gtk1/fontdlg.h | |
1425 | wx/gtk1/frame.h | |
1426 | wx/gtk1/gauge.h | |
1427 | wx/gtk1/listbox.h | |
1428 | wx/gtk1/mdi.h | |
1429 | wx/gtk1/menu.h | |
1430 | wx/gtk1/menuitem.h | |
1431 | wx/gtk1/msgdlg.h | |
1432 | wx/gtk1/notebook.h | |
1433 | wx/gtk1/radiobox.h | |
1434 | wx/gtk1/radiobut.h | |
1435 | wx/gtk1/scrolbar.h | |
1436 | wx/gtk1/scrolwin.h | |
1437 | wx/gtk1/slider.h | |
1438 | wx/gtk1/spinbutt.h | |
1439 | wx/gtk1/spinctrl.h | |
1440 | wx/gtk1/statbmp.h | |
1441 | wx/gtk1/statbox.h | |
1442 | wx/gtk1/statline.h | |
1443 | wx/gtk1/stattext.h | |
be2b08eb | 1444 | wx/gtk1/toolbar.h |
8ff12d3d MR |
1445 | wx/gtk1/textctrl.h |
1446 | wx/gtk1/tglbtn.h | |
1447 | wx/gtk1/treectrl.h | |
1448 | </set> | |
1449 | ||
1450 | ||
ddf98968 VS |
1451 | <!-- ====================================================================== --> |
1452 | <!-- wxMotif --> | |
1453 | <!-- ====================================================================== --> | |
1454 | ||
22d2b5bf | 1455 | <set var="MOTIF_LOWLEVEL_SRC" hints="files"> |
ddf98968 | 1456 | $(XWIN_LOWLEVEL_SRC) |
8cd79b7a | 1457 | src/generic/textmeasure.cpp |
ddf98968 | 1458 | src/x11/bitmap.cpp |
5df6736f | 1459 | src/x11/brush.cpp |
61845585 | 1460 | src/x11/palette.cpp |
5df6736f VS |
1461 | src/x11/pen.cpp |
1462 | src/x11/region.cpp | |
ddf98968 VS |
1463 | src/x11/utilsx.cpp |
1464 | </set> | |
22d2b5bf | 1465 | <set var="MOTIF_LOWLEVEL_HDR" hints="files"> |
ddf98968 | 1466 | $(XWIN_LOWLEVEL_HDR) |
e6a14306 MB |
1467 | wx/x11/bitmap.h |
1468 | wx/x11/brush.h | |
61845585 | 1469 | wx/x11/palette.h |
e6a14306 MB |
1470 | wx/x11/pen.h |
1471 | wx/x11/region.h | |
ddf98968 | 1472 | </set> |
22d2b5bf | 1473 | <set var="MOTIF_SRC" hints="files"> |
ddf98968 VS |
1474 | src/motif/accel.cpp |
1475 | src/motif/app.cpp | |
1476 | src/motif/bmpbuttn.cpp | |
1477 | src/motif/bmpmotif.cpp | |
1478 | src/motif/button.cpp | |
1479 | src/motif/checkbox.cpp | |
1480 | src/motif/checklst.cpp | |
1481 | src/motif/choice.cpp | |
1482 | src/motif/clipbrd.cpp | |
1483 | src/motif/colour.cpp | |
1484 | src/motif/combobox.cpp | |
1485 | src/motif/combobox_native.cpp | |
1486 | src/motif/control.cpp | |
1487 | src/motif/cursor.cpp | |
1488 | src/motif/data.cpp | |
1489 | src/motif/dataobj.cpp | |
1490 | src/motif/dc.cpp | |
1491 | src/motif/dcclient.cpp | |
1492 | src/motif/dcmemory.cpp | |
1493 | src/motif/dcscreen.cpp | |
1494 | src/motif/dialog.cpp | |
1495 | src/motif/evtloop.cpp | |
1496 | src/motif/filedlg.cpp | |
1497 | src/motif/font.cpp | |
1498 | src/motif/frame.cpp | |
1499 | src/motif/gauge.cpp | |
60913641 | 1500 | src/motif/sockmot.cpp |
ddf98968 VS |
1501 | src/motif/icon.cpp |
1502 | src/motif/listbox.cpp | |
1503 | src/motif/main.cpp | |
ddf98968 VS |
1504 | src/motif/menu.cpp |
1505 | src/motif/menuitem.cpp | |
1506 | src/motif/minifram.cpp | |
1507 | src/motif/msgdlg.cpp | |
833a51f6 | 1508 | src/motif/popupwin.cpp |
ddf98968 VS |
1509 | src/motif/radiobox.cpp |
1510 | src/motif/radiobut.cpp | |
1511 | src/motif/scrolbar.cpp | |
1512 | src/motif/settings.cpp | |
1513 | src/motif/slider.cpp | |
1514 | src/motif/spinbutt.cpp | |
1515 | src/motif/statbmp.cpp | |
1516 | src/motif/statbox.cpp | |
1517 | src/motif/stattext.cpp | |
ddf98968 | 1518 | src/motif/textctrl.cpp |
978c6e41 | 1519 | src/motif/textentry.cpp |
ddf98968 | 1520 | src/motif/timer.cpp |
5df6736f | 1521 | src/motif/toolbar.cpp |
ddf98968 VS |
1522 | src/motif/toplevel.cpp |
1523 | src/motif/utils.cpp | |
1524 | src/motif/window.cpp | |
f4a3e0a9 | 1525 | src/motif/xmcombo/xmcombo.c |
ddf98968 | 1526 | <!-- Generic files used by wxMotif: --> |
773623f2 VZ |
1527 | src/generic/clrpickerg.cpp |
1528 | src/generic/collpaneg.cpp | |
5df6736f VS |
1529 | src/generic/colrdlgg.cpp |
1530 | src/generic/dirdlgg.cpp | |
ddf98968 | 1531 | src/generic/fdrepdlg.cpp |
773623f2 | 1532 | src/generic/filepickerg.cpp |
5df6736f | 1533 | src/generic/fontdlgg.cpp |
773623f2 | 1534 | src/generic/fontpickerg.cpp |
5df6736f | 1535 | src/generic/listctrl.cpp |
d2824cdb | 1536 | src/generic/mdig.cpp |
ddf98968 | 1537 | src/generic/notebook.cpp |
ddf98968 | 1538 | src/generic/prntdlgg.cpp |
5df6736f | 1539 | src/generic/statline.cpp |
ddf98968 | 1540 | src/generic/statusbr.cpp |
eed80e5e | 1541 | src/generic/tabg.cpp |
ddf98968 | 1542 | </set> |
22d2b5bf | 1543 | <set var="MOTIF_HDR" hints="files"> |
773623f2 VZ |
1544 | wx/generic/clrpickerg.h |
1545 | wx/generic/collpaneg.h | |
5df6736f | 1546 | wx/generic/colrdlgg.h |
a236aa20 | 1547 | wx/generic/ctrlsub.h |
5df6736f VS |
1548 | wx/generic/dirdlgg.h |
1549 | wx/generic/fdrepdlg.h | |
773623f2 | 1550 | wx/generic/filepickerg.h |
5df6736f | 1551 | wx/generic/fontdlgg.h |
773623f2 | 1552 | wx/generic/fontpickerg.h |
5df6736f | 1553 | wx/generic/listctrl.h |
d2824cdb | 1554 | wx/generic/mdig.h |
5df6736f VS |
1555 | wx/generic/notebook.h |
1556 | wx/generic/prntdlgg.h | |
1557 | wx/generic/statline.h | |
1558 | wx/generic/statusbr.h | |
eed80e5e | 1559 | wx/generic/tabg.h |
ddf98968 VS |
1560 | wx/motif/accel.h |
1561 | wx/motif/app.h | |
1562 | wx/motif/bmpbuttn.h | |
1563 | wx/motif/bmpmotif.h | |
1564 | wx/motif/button.h | |
1565 | wx/motif/checkbox.h | |
1566 | wx/motif/checklst.h | |
b45f79ec | 1567 | wx/motif/chkconf.h |
ddf98968 VS |
1568 | wx/motif/choice.h |
1569 | wx/motif/clipbrd.h | |
1570 | wx/motif/colour.h | |
1571 | wx/motif/combobox.h | |
1572 | wx/motif/control.h | |
a236aa20 | 1573 | wx/motif/ctrlsub.h |
ddf98968 VS |
1574 | wx/motif/cursor.h |
1575 | wx/motif/dataform.h | |
1576 | wx/motif/dataobj.h | |
d0b02878 | 1577 | wx/motif/dataobj2.h |
ddf98968 VS |
1578 | wx/motif/dc.h |
1579 | wx/motif/dcclient.h | |
1580 | wx/motif/dcmemory.h | |
1581 | wx/motif/dcprint.h | |
1582 | wx/motif/dcscreen.h | |
1583 | wx/motif/dialog.h | |
1584 | wx/motif/dnd.h | |
1585 | wx/motif/filedlg.h | |
1586 | wx/motif/font.h | |
1587 | wx/motif/frame.h | |
1588 | wx/motif/gauge.h | |
ddf98968 VS |
1589 | wx/motif/icon.h |
1590 | wx/motif/listbox.h | |
ddf98968 VS |
1591 | wx/motif/menu.h |
1592 | wx/motif/menuitem.h | |
1593 | wx/motif/minifram.h | |
1594 | wx/motif/msgdlg.h | |
833a51f6 | 1595 | wx/motif/popupwin.h |
ddf98968 VS |
1596 | wx/motif/print.h |
1597 | wx/motif/private.h | |
1598 | wx/motif/radiobox.h | |
1599 | wx/motif/radiobut.h | |
ddf98968 | 1600 | wx/motif/scrolbar.h |
ddf98968 VS |
1601 | wx/motif/slider.h |
1602 | wx/motif/spinbutt.h | |
1603 | wx/motif/statbmp.h | |
1604 | wx/motif/statbox.h | |
1605 | wx/motif/stattext.h | |
1606 | wx/motif/textctrl.h | |
978c6e41 | 1607 | wx/motif/textentry.h |
ddf98968 | 1608 | wx/motif/tglbtn.h |
ddf98968 VS |
1609 | wx/motif/toolbar.h |
1610 | wx/motif/toplevel.h | |
1611 | wx/motif/window.h | |
ddf98968 VS |
1612 | </set> |
1613 | ||
1614 | ||
1615 | <!-- ====================================================================== --> | |
1616 | <!-- wxX11 --> | |
1617 | <!-- ====================================================================== --> | |
1618 | ||
1619 | ||
22d2b5bf | 1620 | <set var="X11_LOWLEVEL_SRC" hints="files"> |
ddf98968 | 1621 | $(XWIN_LOWLEVEL_SRC) |
71451a6d | 1622 | src/generic/icon.cpp |
8cd79b7a | 1623 | src/generic/textmeasure.cpp |
5df6736f | 1624 | src/generic/timer.cpp |
ddf98968 VS |
1625 | src/x11/app.cpp |
1626 | src/x11/bitmap.cpp | |
1627 | src/x11/brush.cpp | |
1628 | src/x11/clipbrd.cpp | |
1629 | src/x11/colour.cpp | |
1630 | src/x11/cursor.cpp | |
1631 | src/x11/data.cpp | |
1632 | src/x11/dataobj.cpp | |
1633 | src/x11/dc.cpp | |
1634 | src/x11/dcclient.cpp | |
1635 | src/x11/dcmemory.cpp | |
1636 | src/x11/dcscreen.cpp | |
1637 | src/x11/evtloop.cpp | |
1638 | src/x11/font.cpp | |
ddf98968 | 1639 | src/x11/minifram.cpp |
5df6736f | 1640 | src/x11/nanox.c |
ddf98968 VS |
1641 | src/x11/palette.cpp |
1642 | src/x11/pen.cpp | |
1643 | src/x11/popupwin.cpp | |
1644 | src/x11/region.cpp | |
1645 | src/x11/reparent.cpp | |
1646 | src/x11/settings.cpp | |
1647 | src/x11/toplevel.cpp | |
1648 | src/x11/utils.cpp | |
1649 | src/x11/utilsx.cpp | |
1650 | src/x11/window.cpp | |
ddf98968 | 1651 | </set> |
22d2b5bf | 1652 | <set var="X11_LOWLEVEL_HDR" hints="files"> |
ddf98968 | 1653 | $(XWIN_LOWLEVEL_HDR) |
71451a6d | 1654 | wx/generic/icon.h |
ddf98968 VS |
1655 | wx/x11/app.h |
1656 | wx/x11/bitmap.h | |
1657 | wx/x11/brush.h | |
05024233 | 1658 | wx/x11/chkconf.h |
ddf98968 VS |
1659 | wx/x11/clipbrd.h |
1660 | wx/x11/colour.h | |
1661 | wx/x11/cursor.h | |
1662 | wx/x11/dataform.h | |
1663 | wx/x11/dataobj.h | |
1664 | wx/x11/dataobj2.h | |
1665 | wx/x11/dc.h | |
1666 | wx/x11/dcclient.h | |
1667 | wx/x11/dcmemory.h | |
1668 | wx/x11/dcprint.h | |
1669 | wx/x11/dcscreen.h | |
1670 | wx/x11/dnd.h | |
1671 | wx/x11/font.h | |
ddf98968 VS |
1672 | wx/x11/minifram.h |
1673 | wx/x11/palette.h | |
1674 | wx/x11/pen.h | |
7fcf27da | 1675 | wx/x11/popupwin.h |
ddf98968 VS |
1676 | wx/x11/print.h |
1677 | wx/x11/private.h | |
1678 | wx/x11/privx.h | |
1679 | wx/x11/region.h | |
1680 | wx/x11/reparent.h | |
1681 | wx/x11/textctrl.h | |
1682 | wx/x11/toplevel.h | |
1683 | wx/x11/window.h | |
ddf98968 VS |
1684 | </set> |
1685 | ||
1686 | ||
1687 | ||
1688 | <!-- ====================================================================== --> | |
1689 | <!-- wxMSW --> | |
1690 | <!-- ====================================================================== --> | |
1691 | ||
22d2b5bf | 1692 | <set var="MSW_LOWLEVEL_SRC" hints="files"> |
fa245b25 | 1693 | src/msw/ole/activex.cpp |
ddf98968 VS |
1694 | src/msw/app.cpp |
1695 | src/msw/bitmap.cpp | |
1696 | src/msw/brush.cpp | |
1697 | src/msw/caret.cpp | |
1698 | src/msw/clipbrd.cpp | |
1699 | src/msw/colour.cpp | |
1700 | src/msw/cursor.cpp | |
1701 | src/msw/data.cpp | |
1702 | src/msw/dc.cpp | |
1703 | src/msw/dcclient.cpp | |
1704 | src/msw/dcmemory.cpp | |
1705 | src/msw/dcprint.cpp | |
1706 | src/msw/dcscreen.cpp | |
1707 | src/msw/dialup.cpp | |
1708 | src/msw/dib.cpp | |
ddf98968 VS |
1709 | src/msw/display.cpp |
1710 | src/msw/enhmeta.cpp | |
ddf98968 VS |
1711 | src/msw/font.cpp |
1712 | src/msw/fontenum.cpp | |
1713 | src/msw/fontutil.cpp | |
1714 | src/msw/gdiimage.cpp | |
1715 | src/msw/gdiobj.cpp | |
fa5f72b3 | 1716 | src/msw/gdiplus.cpp |
f43426c1 | 1717 | src/msw/graphics.cpp |
ddf98968 | 1718 | src/msw/icon.cpp |
9cd7a3f7 | 1719 | src/msw/imaglist.cpp |
ddf98968 | 1720 | src/msw/minifram.cpp |
5bd0ee99 | 1721 | src/msw/nonownedwnd.cpp |
5df6736f VS |
1722 | src/msw/ole/dataobj.cpp |
1723 | src/msw/ole/dropsrc.cpp | |
1724 | src/msw/ole/droptgt.cpp | |
1725 | src/msw/ole/oleutils.cpp | |
226fa6db | 1726 | src/msw/ole/safearray.cpp |
ddf98968 VS |
1727 | src/msw/palette.cpp |
1728 | src/msw/pen.cpp | |
1729 | src/msw/popupwin.cpp | |
e32f4869 JS |
1730 | src/msw/printdlg.cpp |
1731 | src/msw/printwin.cpp | |
ddf98968 | 1732 | src/msw/region.cpp |
2479d149 | 1733 | src/msw/renderer.cpp |
ddf98968 | 1734 | src/msw/settings.cpp |
8cd79b7a | 1735 | src/msw/textmeasure.cpp |
ddf98968 VS |
1736 | src/msw/tooltip.cpp |
1737 | src/msw/toplevel.cpp | |
0c3ae94c | 1738 | src/msw/uiaction.cpp |
9a90985d | 1739 | src/msw/utilsgui.cpp |
5146904d | 1740 | src/msw/utilswin.cpp |
1b7031bc | 1741 | src/msw/uxtheme.cpp |
ddf98968 | 1742 | src/msw/window.cpp |
ddf98968 | 1743 | </set> |
22d2b5bf | 1744 | <set var="MSW_LOWLEVEL_HDR" hints="files"> |
5bd0ee99 | 1745 | wx/msw/nonownedwnd.h |
fa245b25 | 1746 | wx/msw/ole/activex.h |
23e42d9d | 1747 | wx/msw/popupwin.h |
51fb93f1 | 1748 | wx/msw/uxtheme.h |
68c675a6 JS |
1749 | wx/msw/uxthemep.h |
1750 | wx/msw/htmlhelp.h | |
ddf98968 | 1751 | </set> |
f9c4805a | 1752 | |
ca95ed8e | 1753 | <set var="MSW_DESKTOP_LOWLEVEL_SRC" hints="files"> |
de20cd5f VZ |
1754 | src/msw/helpchm.cpp |
1755 | src/msw/helpwin.cpp | |
89220840 | 1756 | src/msw/ole/automtn.cpp |
37699af5 | 1757 | src/msw/ole/uuid.cpp |
de20cd5f VZ |
1758 | </set> |
1759 | ||
ca95ed8e | 1760 | <set var="MSW_DESKTOP_LOWLEVEL_HDR" hints="files"> |
de20cd5f VZ |
1761 | wx/msw/helpchm.h |
1762 | wx/msw/helpwin.h | |
f9c4805a VS |
1763 | </set> |
1764 | ||
22d2b5bf | 1765 | <set var="MSW_SRC" hints="files"> |
773623f2 VZ |
1766 | src/generic/clrpickerg.cpp |
1767 | src/generic/collpaneg.cpp | |
1768 | src/generic/filepickerg.cpp | |
1769 | src/generic/fontpickerg.cpp | |
cdc0282e | 1770 | src/generic/statusbr.cpp |
94d04b7e | 1771 | src/generic/prntdlgg.cpp |
ddf98968 | 1772 | src/msw/accel.cpp |
b4354db1 | 1773 | src/msw/anybutton.cpp |
a158acac | 1774 | src/msw/artmsw.cpp |
ddf98968 VS |
1775 | src/msw/bmpbuttn.cpp |
1776 | src/msw/button.cpp | |
1777 | src/msw/checkbox.cpp | |
ddf98968 VS |
1778 | src/msw/choice.cpp |
1779 | src/msw/colordlg.cpp | |
a340b80d | 1780 | src/msw/combo.cpp |
ddf98968 VS |
1781 | src/msw/combobox.cpp |
1782 | src/msw/control.cpp | |
1783 | src/msw/dialog.cpp | |
de20cd5f | 1784 | src/msw/dirdlg.cpp |
ddf98968 | 1785 | src/msw/dragimag.cpp |
e27f5540 | 1786 | src/msw/evtloop.cpp |
ddf98968 | 1787 | src/msw/filedlg.cpp |
ddf98968 | 1788 | src/msw/frame.cpp |
936f6353 | 1789 | src/msw/gauge.cpp |
56873923 | 1790 | src/msw/headerctrl.cpp |
ddf98968 VS |
1791 | src/msw/iniconf.cpp |
1792 | src/msw/listbox.cpp | |
1793 | src/msw/listctrl.cpp | |
1794 | src/msw/mdi.cpp | |
1795 | src/msw/menu.cpp | |
1796 | src/msw/menuitem.cpp | |
1797 | src/msw/metafile.cpp | |
1798 | src/msw/msgdlg.cpp | |
ddf98968 | 1799 | src/msw/nativdlg.cpp |
dfba244c | 1800 | src/msw/nativewin.cpp |
ddf98968 | 1801 | src/msw/notebook.cpp |
5df6736f | 1802 | src/msw/ole/access.cpp |
ddf98968 | 1803 | src/msw/ownerdrw.cpp |
6e793355 | 1804 | src/msw/panel.cpp |
c31d9c7f | 1805 | src/msw/progdlg.cpp |
ddf98968 VS |
1806 | src/msw/radiobox.cpp |
1807 | src/msw/radiobut.cpp | |
a1bdd4ab | 1808 | src/msw/richmsgdlg.cpp |
ddf98968 | 1809 | src/msw/scrolbar.cpp |
936f6353 | 1810 | src/msw/slider.cpp |
ddf98968 VS |
1811 | src/msw/spinbutt.cpp |
1812 | src/msw/spinctrl.cpp | |
1813 | src/msw/statbmp.cpp | |
1814 | src/msw/statbox.cpp | |
936f6353 | 1815 | src/msw/statusbar.cpp |
ddf98968 VS |
1816 | src/msw/statline.cpp |
1817 | src/msw/stattext.cpp | |
936f6353 | 1818 | src/msw/toolbar.cpp |
ddf98968 | 1819 | src/msw/textctrl.cpp |
30e62fdc | 1820 | src/msw/textentry.cpp |
ddf98968 VS |
1821 | src/msw/tglbtn.cpp |
1822 | src/msw/treectrl.cpp | |
ddf98968 | 1823 | </set> |
22d2b5bf | 1824 | <set var="MSW_HDR" hints="files"> |
000cdd5e | 1825 | wx/generic/clrpickerg.h |
773623f2 | 1826 | wx/generic/collpaneg.h |
000cdd5e | 1827 | wx/generic/filepickerg.h |
773623f2 | 1828 | wx/generic/fontpickerg.h |
ddf98968 | 1829 | wx/msw/accel.h |
b4354db1 | 1830 | wx/msw/anybutton.h |
ddf98968 VS |
1831 | wx/msw/app.h |
1832 | wx/msw/bitmap.h | |
1833 | wx/msw/bmpbuttn.h | |
1834 | wx/msw/brush.h | |
1835 | wx/msw/button.h | |
1836 | wx/msw/caret.h | |
1837 | wx/msw/checkbox.h | |
ddf98968 VS |
1838 | wx/msw/choice.h |
1839 | wx/msw/clipbrd.h | |
1840 | wx/msw/colordlg.h | |
1841 | wx/msw/colour.h | |
a340b80d | 1842 | wx/msw/combo.h |
ddf98968 VS |
1843 | wx/msw/combobox.h |
1844 | wx/msw/control.h | |
a236aa20 | 1845 | wx/msw/ctrlsub.h |
ddf98968 | 1846 | wx/msw/cursor.h |
bbcf2821 | 1847 | wx/msw/custombgwin.h |
ddf98968 VS |
1848 | wx/msw/dc.h |
1849 | wx/msw/dcclient.h | |
1850 | wx/msw/dcmemory.h | |
1851 | wx/msw/dcprint.h | |
1852 | wx/msw/dcscreen.h | |
1853 | wx/msw/dialog.h | |
1854 | wx/msw/dib.h | |
1855 | wx/msw/dirdlg.h | |
1856 | wx/msw/dragimag.h | |
1857 | wx/msw/enhmeta.h | |
de20cd5f | 1858 | wx/msw/evtloop.h |
ddf98968 VS |
1859 | wx/msw/filedlg.h |
1860 | wx/msw/font.h | |
ddf98968 | 1861 | wx/msw/frame.h |
936f6353 | 1862 | wx/msw/gauge.h |
ddf98968 | 1863 | wx/msw/gdiimage.h |
56873923 | 1864 | wx/msw/headerctrl.h |
ddf98968 VS |
1865 | wx/msw/icon.h |
1866 | wx/msw/imaglist.h | |
1867 | wx/msw/iniconf.h | |
26cdd42d | 1868 | wx/msw/init.h |
ddf98968 VS |
1869 | wx/msw/listbox.h |
1870 | wx/msw/listctrl.h | |
1871 | wx/msw/mdi.h | |
1872 | wx/msw/menu.h | |
1873 | wx/msw/menuitem.h | |
1874 | wx/msw/metafile.h | |
1875 | wx/msw/minifram.h | |
1876 | wx/msw/missing.h | |
1877 | wx/msw/msgdlg.h | |
ddf98968 VS |
1878 | wx/msw/msvcrt.h |
1879 | wx/msw/notebook.h | |
5df6736f | 1880 | wx/msw/ole/access.h |
5df6736f VS |
1881 | wx/msw/ole/dataform.h |
1882 | wx/msw/ole/dataobj.h | |
1883 | wx/msw/ole/dataobj2.h | |
1884 | wx/msw/ole/dropsrc.h | |
1885 | wx/msw/ole/droptgt.h | |
1886 | wx/msw/ole/oleutils.h | |
226fa6db | 1887 | wx/msw/ole/safearray.h |
98fbab9e | 1888 | wx/msw/ownerdrw.h |
ddf98968 | 1889 | wx/msw/palette.h |
6e793355 | 1890 | wx/msw/panel.h |
ddf98968 VS |
1891 | wx/msw/pen.h |
1892 | wx/msw/printdlg.h | |
1893 | wx/msw/printwin.h | |
c31d9c7f | 1894 | wx/msw/progdlg.h |
ddf98968 VS |
1895 | wx/msw/radiobox.h |
1896 | wx/msw/radiobut.h | |
ddf98968 | 1897 | wx/msw/region.h |
c8d58531 | 1898 | wx/msw/rcdefs.h |
a1bdd4ab | 1899 | wx/msw/richmsgdlg.h |
ddf98968 | 1900 | wx/msw/scrolbar.h |
936f6353 | 1901 | wx/msw/slider.h |
ddf98968 | 1902 | wx/msw/spinbutt.h |
5df6736f | 1903 | wx/msw/spinctrl.h |
ddf98968 VS |
1904 | wx/msw/statbmp.h |
1905 | wx/msw/statbox.h | |
936f6353 | 1906 | wx/msw/statusbar.h |
ddf98968 VS |
1907 | wx/msw/statline.h |
1908 | wx/msw/stattext.h | |
936f6353 | 1909 | wx/msw/toolbar.h |
ddf98968 | 1910 | wx/msw/textctrl.h |
30e62fdc | 1911 | wx/msw/textentry.h |
ddf98968 | 1912 | wx/msw/tglbtn.h |
ddf98968 VS |
1913 | wx/msw/tooltip.h |
1914 | wx/msw/toplevel.h | |
1915 | wx/msw/treectrl.h | |
ddf98968 | 1916 | wx/msw/window.h |
8a7b0583 | 1917 | |
5df6736f | 1918 | <!-- Resources must be installed together with headers: --> |
5df6736f | 1919 | wx/msw/wx.manifest |
8bda759f MW |
1920 | wx/msw/amd64.manifest |
1921 | wx/msw/ia64.manifest | |
5df6736f VS |
1922 | wx/msw/wx.rc |
1923 | <!-- bitmaps --> | |
8a7b0583 VS |
1924 | wx/msw/colours.bmp |
1925 | wx/msw/csquery.bmp | |
5df6736f | 1926 | <!-- cursors --> |
8a7b0583 VS |
1927 | wx/msw/blank.cur |
1928 | wx/msw/bullseye.cur | |
8055b744 | 1929 | wx/msw/cross.cur |
8a7b0583 | 1930 | wx/msw/hand.cur |
8a7b0583 | 1931 | wx/msw/magnif1.cur |
8a7b0583 VS |
1932 | wx/msw/pbrush.cur |
1933 | wx/msw/pencil.cur | |
1934 | wx/msw/pntleft.cur | |
1935 | wx/msw/pntright.cur | |
8a7b0583 | 1936 | wx/msw/roller.cur |
5df6736f | 1937 | <!-- icons --> |
8a7b0583 VS |
1938 | wx/msw/cdrom.ico |
1939 | wx/msw/child.ico | |
1940 | wx/msw/computer.ico | |
1941 | wx/msw/drive.ico | |
8a7b0583 VS |
1942 | wx/msw/file1.ico |
1943 | wx/msw/floppy.ico | |
1944 | wx/msw/folder1.ico | |
1945 | wx/msw/folder2.ico | |
8a7b0583 VS |
1946 | wx/msw/mdi.ico |
1947 | wx/msw/question.ico | |
1948 | wx/msw/removble.ico | |
1949 | wx/msw/std.ico | |
ddf98968 VS |
1950 | </set> |
1951 | ||
ba9e5bc4 | 1952 | <!-- Files used only by desktop MSW port, but *not* WindowsCE one: --> |
ca95ed8e | 1953 | <set var="MSW_DESKTOP_SRC" hints="files"> |
31618973 | 1954 | src/msw/checklst.cpp |
ba9e5bc4 VS |
1955 | src/msw/fdrepdlg.cpp |
1956 | src/msw/fontdlg.cpp | |
ba9e5bc4 | 1957 | </set> |
ca95ed8e | 1958 | <set var="MSW_DESKTOP_HDR" hints="files"> |
31618973 | 1959 | wx/msw/checklst.h |
ba9e5bc4 VS |
1960 | wx/msw/fdrepdlg.h |
1961 | wx/msw/fontdlg.h | |
89220840 | 1962 | wx/msw/ole/automtn.h |
ba9e5bc4 VS |
1963 | wx/msw/ole/uuid.h |
1964 | </set> | |
1965 | ||
1966 | <!-- Files used by WindowsCE port but not by desktop MSW port: --> | |
af594eca | 1967 | <set var="WINCE_SRC" hints="files"> |
f9c4805a | 1968 | src/generic/dirdlgg.cpp |
ba9e5bc4 | 1969 | src/generic/fdrepdlg.cpp |
818f3946 | 1970 | src/generic/filedlgg.cpp |
ba9e5bc4 | 1971 | src/generic/fontdlgg.cpp |
31618973 | 1972 | src/msw/wince/checklst.cpp |
302e251b | 1973 | src/msw/wince/choicece.cpp |
e3bf2e8c | 1974 | src/msw/wince/crt.cpp |
af594eca | 1975 | src/msw/wince/filedlgwce.cpp |
a4e391f8 | 1976 | src/msw/wince/filefnwce.cpp |
af594eca | 1977 | src/msw/wince/helpwce.cpp |
fb8a56b7 | 1978 | src/msw/wince/menuce.cpp |
1550d5f8 | 1979 | src/msw/wince/tbarwce.cpp |
302e251b | 1980 | src/msw/wince/textctrlce.cpp |
af594eca VS |
1981 | </set> |
1982 | <set var="WINCE_HDR" hints="files"> | |
ba9e5bc4 | 1983 | wx/generic/fdrepdlg.h |
818f3946 | 1984 | wx/generic/filedlgg.h |
ba9e5bc4 | 1985 | wx/generic/fontdlgg.h |
31618973 | 1986 | wx/msw/wince/checklst.h |
302e251b | 1987 | wx/msw/wince/choicece.h |
af594eca | 1988 | wx/msw/wince/helpwce.h |
eddb3250 | 1989 | wx/msw/wince/libraries.h |
af594eca VS |
1990 | wx/msw/wince/missing.h |
1991 | wx/msw/wince/tbarwce.h | |
302e251b | 1992 | wx/msw/wince/textctrlce.h |
fb8a56b7 | 1993 | wx/msw/wince/resources.h |
af594eca VS |
1994 | </set> |
1995 | ||
ddf98968 | 1996 | |
b3c86150 VS |
1997 | <!-- ====================================================================== --> |
1998 | <!-- wxDFB --> | |
1999 | <!-- ====================================================================== --> | |
2000 | ||
2001 | <set var="DFB_LOWLEVEL_SRC" hints="files"> | |
d7ae4a62 | 2002 | src/common/fontmgrcmn.cpp |
4353a8df VZ |
2003 | src/generic/caret.cpp |
2004 | src/generic/colour.cpp | |
2005 | src/generic/icon.cpp | |
2006 | src/generic/imaglist.cpp | |
87f83ac8 | 2007 | src/generic/mask.cpp |
8cd79b7a | 2008 | src/generic/textmeasure.cpp |
b3c86150 VS |
2009 | src/dfb/app.cpp |
2010 | src/dfb/bitmap.cpp | |
2011 | src/dfb/brush.cpp | |
2012 | src/dfb/cursor.cpp | |
2013 | <!-- src/dfb/data.cpp --> | |
2014 | src/dfb/dc.cpp | |
2015 | src/dfb/dcclient.cpp | |
2016 | src/dfb/dcmemory.cpp | |
2017 | src/dfb/dcscreen.cpp | |
2018 | src/dfb/evtloop.cpp | |
2019 | src/dfb/font.cpp | |
2020 | src/dfb/fontenum.cpp | |
d7ae4a62 | 2021 | src/dfb/fontmgr.cpp |
42b0d8b9 | 2022 | src/dfb/nonownedwnd.cpp |
30c841c8 | 2023 | src/dfb/overlay.cpp |
b3c86150 VS |
2024 | src/dfb/pen.cpp |
2025 | src/dfb/region.cpp | |
2026 | src/dfb/settings.cpp | |
2027 | src/dfb/toplevel.cpp | |
2028 | src/dfb/utils.cpp | |
2029 | src/dfb/window.cpp | |
52c8d32a | 2030 | src/dfb/wrapdfb.cpp |
b3c86150 VS |
2031 | </set> |
2032 | <set var="DFB_LOWLEVEL_HDR" hints="files"> | |
4353a8df VZ |
2033 | wx/generic/caret.h |
2034 | wx/generic/colour.h | |
2035 | wx/generic/icon.h | |
2036 | wx/generic/imaglist.h | |
87f83ac8 | 2037 | wx/generic/mask.h |
b3c86150 VS |
2038 | wx/dfb/app.h |
2039 | wx/dfb/bitmap.h | |
2040 | wx/dfb/brush.h | |
2041 | wx/dfb/chkconf.h | |
2042 | wx/dfb/cursor.h | |
2043 | wx/dfb/dc.h | |
2044 | wx/dfb/dcclient.h | |
2045 | wx/dfb/dcmemory.h | |
2046 | wx/dfb/dcscreen.h | |
52c8d32a | 2047 | wx/dfb/dfbptr.h |
b3c86150 VS |
2048 | wx/dfb/evtloop.h |
2049 | wx/dfb/font.h | |
42b0d8b9 | 2050 | wx/dfb/nonownedwnd.h |
b3c86150 | 2051 | wx/dfb/pen.h |
42b0d8b9 | 2052 | wx/dfb/popupwin.h |
b3c86150 VS |
2053 | wx/dfb/private.h |
2054 | wx/dfb/region.h | |
2055 | wx/dfb/toplevel.h | |
2056 | wx/dfb/window.h | |
52c8d32a | 2057 | wx/dfb/wrapdfb.h |
b3c86150 VS |
2058 | </set> |
2059 | ||
2060 | ||
ddf98968 VS |
2061 | <!-- ====================================================================== --> |
2062 | <!-- wxOS/2 --> | |
2063 | <!-- ====================================================================== --> | |
2064 | ||
22d2b5bf | 2065 | <set var="OS2_LOWLEVEL_SRC" hints="files"> |
d4d680e6 | 2066 | <!-- wxUniv builds not supported under OS/2 --> |
ddf98968 | 2067 | </set> |
22d2b5bf | 2068 | <set var="OS2_LOWLEVEL_HDR" hints="files"> |
ddf98968 | 2069 | </set> |
22d2b5bf | 2070 | <set var="OS2_SRC" hints="files"> |
a318e447 | 2071 | <!-- Generic implementations used by wxOS2: --> |
5df6736f | 2072 | src/generic/caret.cpp |
773623f2 VZ |
2073 | src/generic/clrpickerg.cpp |
2074 | src/generic/collpaneg.cpp | |
a318e447 SN |
2075 | src/generic/colrdlgg.cpp |
2076 | src/generic/dirdlgg.cpp | |
2077 | src/generic/fdrepdlg.cpp | |
773623f2 VZ |
2078 | src/generic/filepickerg.cpp |
2079 | src/generic/fontpickerg.cpp | |
a318e447 | 2080 | src/generic/imaglist.cpp |
dd133a20 | 2081 | src/generic/listctrl.cpp |
f4a917a7 | 2082 | src/generic/mdig.cpp |
a318e447 SN |
2083 | src/generic/prntdlgg.cpp |
2084 | src/generic/statusbr.cpp | |
8cd79b7a | 2085 | src/generic/textmeasure.cpp |
a318e447 | 2086 | <!-- OS/2 specific files: --> |
ddf98968 VS |
2087 | src/os2/accel.cpp |
2088 | src/os2/app.cpp | |
2089 | src/os2/bitmap.cpp | |
2090 | src/os2/bmpbuttn.cpp | |
2091 | src/os2/brush.cpp | |
2092 | src/os2/button.cpp | |
2093 | src/os2/checkbox.cpp | |
2094 | src/os2/checklst.cpp | |
2095 | src/os2/choice.cpp | |
2096 | src/os2/clipbrd.cpp | |
2097 | src/os2/colour.cpp | |
2098 | src/os2/combobox.cpp | |
2099 | src/os2/control.cpp | |
2100 | src/os2/cursor.cpp | |
2101 | src/os2/data.cpp | |
2102 | src/os2/dataobj.cpp | |
2103 | src/os2/dc.cpp | |
2104 | src/os2/dcclient.cpp | |
2105 | src/os2/dcmemory.cpp | |
2106 | src/os2/dcprint.cpp | |
2107 | src/os2/dcscreen.cpp | |
2108 | src/os2/dialog.cpp | |
2109 | src/os2/dnd.cpp | |
d7a8eaca | 2110 | src/os2/evtloop.cpp |
ddf98968 VS |
2111 | src/os2/filedlg.cpp |
2112 | src/os2/font.cpp | |
2113 | src/os2/fontdlg.cpp | |
2114 | src/os2/fontenum.cpp | |
2115 | src/os2/fontutil.cpp | |
2116 | src/os2/frame.cpp | |
2117 | src/os2/gauge.cpp | |
2118 | src/os2/gdiimage.cpp | |
60913641 | 2119 | src/os2/sockpm.cpp |
ddf98968 VS |
2120 | src/os2/helpwin.cpp |
2121 | src/os2/icon.cpp | |
2122 | src/os2/iniconf.cpp | |
ddf98968 VS |
2123 | src/os2/listbox.cpp |
2124 | src/os2/main.cpp | |
2125 | src/os2/menu.cpp | |
2126 | src/os2/menuitem.cpp | |
2127 | src/os2/metafile.cpp | |
47ac374e | 2128 | src/os2/minifram.cpp |
ddf98968 VS |
2129 | src/os2/msgdlg.cpp |
2130 | src/os2/nativdlg.cpp | |
2131 | src/os2/notebook.cpp | |
2132 | src/os2/ownerdrw.cpp | |
2133 | src/os2/palette.cpp | |
2134 | src/os2/pen.cpp | |
1dba7b4c | 2135 | src/os2/popupwin.cpp |
ddf98968 VS |
2136 | src/os2/print.cpp |
2137 | src/os2/radiobox.cpp | |
2138 | src/os2/radiobut.cpp | |
2139 | src/os2/region.cpp | |
2140 | src/os2/scrolbar.cpp | |
2141 | src/os2/settings.cpp | |
2142 | src/os2/slider.cpp | |
2143 | src/os2/spinbutt.cpp | |
2144 | src/os2/spinctrl.cpp | |
2145 | src/os2/statbmp.cpp | |
2146 | src/os2/statbox.cpp | |
2147 | src/os2/statline.cpp | |
2148 | src/os2/stattext.cpp | |
ddf98968 | 2149 | src/os2/textctrl.cpp |
9a3a5e5e | 2150 | src/os2/textentry.cpp |
fbe2ca43 | 2151 | src/os2/tglbtn.cpp |
5df6736f | 2152 | src/os2/timer.cpp |
ddf98968 VS |
2153 | src/os2/toolbar.cpp |
2154 | src/os2/tooltip.cpp | |
2155 | src/os2/toplevel.cpp | |
bd3b171d | 2156 | src/os2/utilsgui.cpp |
ddf98968 | 2157 | src/os2/window.cpp |
ddf98968 | 2158 | </set> |
22d2b5bf | 2159 | <set var="OS2_HDR" hints="files"> |
5df6736f | 2160 | wx/generic/caret.h |
773623f2 VZ |
2161 | wx/generic/clrpickerg.h |
2162 | wx/generic/collpaneg.h | |
a318e447 SN |
2163 | wx/generic/colrdlgg.h |
2164 | wx/generic/dirdlgg.h | |
2165 | wx/generic/fdrepdlg.h | |
dd133a20 | 2166 | wx/generic/listctrl.h |
f4a917a7 | 2167 | wx/generic/mdig.h |
a318e447 | 2168 | wx/generic/statusbr.h |
ddf98968 | 2169 | wx/os2/accel.h |
ddf98968 | 2170 | wx/os2/app.h |
ddf98968 | 2171 | wx/os2/bitmap.h |
5df6736f VS |
2172 | wx/os2/bmpbuttn.h |
2173 | wx/os2/brush.h | |
2174 | wx/os2/button.h | |
2175 | wx/os2/checkbox.h | |
2176 | wx/os2/checklst.h | |
2177 | wx/os2/choice.h | |
2178 | wx/os2/clipbrd.h | |
2179 | wx/os2/colour.h | |
2180 | wx/os2/combobox.h | |
2181 | wx/os2/control.h | |
2182 | wx/os2/cursor.h | |
2183 | wx/os2/dataform.h | |
2184 | wx/os2/dataobj.h | |
2185 | wx/os2/dataobj2.h | |
ddf98968 | 2186 | wx/os2/dc.h |
ddf98968 | 2187 | wx/os2/dcclient.h |
ddf98968 | 2188 | wx/os2/dcmemory.h |
ddf98968 | 2189 | wx/os2/dcprint.h |
ddf98968 | 2190 | wx/os2/dcscreen.h |
ddf98968 | 2191 | wx/os2/dialog.h |
ddf98968 | 2192 | wx/os2/dnd.h |
ddf98968 | 2193 | wx/os2/filedlg.h |
ddf98968 | 2194 | wx/os2/font.h |
ddf98968 | 2195 | wx/os2/fontdlg.h |
ddf98968 | 2196 | wx/os2/frame.h |
ddf98968 | 2197 | wx/os2/gauge.h |
ddf98968 | 2198 | wx/os2/gdiimage.h |
5df6736f VS |
2199 | wx/os2/helpwin.h |
2200 | wx/os2/icon.h | |
2201 | wx/os2/iniconf.h | |
5df6736f VS |
2202 | wx/os2/listbox.h |
2203 | wx/os2/menu.h | |
2204 | wx/os2/menuitem.h | |
2205 | wx/os2/metafile.h | |
2206 | wx/os2/minifram.h | |
2207 | wx/os2/msgdlg.h | |
2208 | wx/os2/notebook.h | |
98fbab9e | 2209 | wx/os2/ownerdrw.h |
5df6736f | 2210 | wx/os2/palette.h |
ddf98968 | 2211 | wx/os2/pen.h |
5df6736f VS |
2212 | wx/os2/pnghand.h |
2213 | wx/os2/pngread.h | |
2214 | wx/os2/print.h | |
5df6736f VS |
2215 | wx/os2/radiobox.h |
2216 | wx/os2/radiobut.h | |
2217 | wx/os2/region.h | |
2218 | wx/os2/scrolbar.h | |
2219 | wx/os2/settings.h | |
5df6736f VS |
2220 | wx/os2/slider.h |
2221 | wx/os2/spinbutt.h | |
ddf98968 VS |
2222 | wx/os2/spinctrl.h |
2223 | wx/os2/statbmp.h | |
ddf98968 | 2224 | wx/os2/statbox.h |
5df6736f VS |
2225 | wx/os2/statline.h |
2226 | wx/os2/stattext.h | |
5df6736f | 2227 | wx/os2/textctrl.h |
9a3a5e5e | 2228 | wx/os2/textentry.h |
fbe2ca43 | 2229 | wx/os2/tglbtn.h |
5df6736f VS |
2230 | wx/os2/toolbar.h |
2231 | wx/os2/tooltip.h | |
ddf98968 | 2232 | wx/os2/toplevel.h |
5df6736f | 2233 | wx/os2/window.h |
ddf98968 VS |
2234 | </set> |
2235 | ||
2236 | ||
2237 | ||
2238 | <!-- ====================================================================== --> | |
80a12bd8 | 2239 | <!-- wxOSX Common --> |
ddf98968 VS |
2240 | <!-- ====================================================================== --> |
2241 | ||
2ea057f9 | 2242 | <set var="OSX_LOWLEVEL_SRC" hints="files"> |
fc480dc1 | 2243 | <!-- Shared wxMac and wxCocoa files --> |
2ea057f9 | 2244 | <if cond="PLATFORM_MACOSX=='1'"> |
71b37ee6 | 2245 | src/osx/artmac.cpp |
fa2b309e | 2246 | src/osx/brush.cpp |
fa2b309e KO |
2247 | src/osx/dialog_osx.cpp |
2248 | src/osx/fontutil.cpp | |
fa2b309e | 2249 | src/osx/imaglist.cpp |
fa2b309e KO |
2250 | src/osx/minifram.cpp |
2251 | src/osx/nonownedwnd_osx.cpp | |
fa2b309e KO |
2252 | src/osx/palette.cpp |
2253 | src/osx/pen.cpp | |
fa2b309e | 2254 | src/osx/toplevel_osx.cpp |
0c3ae94c | 2255 | src/osx/uiaction_osx.cpp |
fa2b309e KO |
2256 | src/osx/utils_osx.cpp |
2257 | <!-- src/osx/treectrl.cpp --> | |
2258 | src/osx/window_osx.cpp | |
2259 | ||
2260 | src/osx/core/bitmap.cpp | |
2261 | src/osx/core/colour.cpp | |
2262 | src/osx/core/dcmemory.cpp | |
2263 | src/osx/core/display.cpp | |
2264 | src/osx/core/fontenum.cpp | |
126b1df4 | 2265 | src/osx/core/hid.cpp |
fa2b309e KO |
2266 | src/osx/core/printmac.cpp |
2267 | src/osx/core/timer.cpp | |
126b1df4 | 2268 | src/osx/core/utilsexc_cf.cpp |
2ea057f9 | 2269 | </if> |
fc480dc1 DE |
2270 | </set> |
2271 | ||
2ea057f9 | 2272 | <set var="OSX_LOWLEVEL_HDR" hints="files"> |
4cb1d3da RN |
2273 | </set> |
2274 | ||
2ea057f9 SC |
2275 | <!-- |
2276 | <set var="OSX_LOWLEVEL_SRC" hints="files"> | |
2277 | <if cond="PLATFORM_MACOSX=='1'">$(OSX_LOWLEVEL_SRC)</if> | |
ddf98968 | 2278 | </set> |
2ea057f9 SC |
2279 | <set var="OSX_LOWLEVEL_HDR" hints="files"> |
2280 | <if cond="PLATFORM_MACOSX=='1'">$(OSX_LOWLEVEL_HDR)</if> | |
ddf98968 | 2281 | </set> |
2ea057f9 | 2282 | --> |
fc480dc1 | 2283 | |
2ea057f9 | 2284 | <set var="OSX_CARBON_COCOA_SRC" hints="files"> |
0334f97f | 2285 | <if cond="PLATFORM_MACOSX=='1'"> |
adc27ddc | 2286 | <!-- Common controls implementation --> |
b4354db1 | 2287 | src/osx/anybutton_osx.cpp |
adc27ddc VZ |
2288 | src/osx/bmpbuttn_osx.cpp |
2289 | src/osx/button_osx.cpp | |
2290 | src/osx/checkbox_osx.cpp | |
2291 | src/osx/checklst_osx.cpp | |
2292 | src/osx/choice_osx.cpp | |
f941a30b | 2293 | src/osx/combobox_osx.cpp |
7dab9892 | 2294 | src/osx/dnd_osx.cpp |
adc27ddc VZ |
2295 | src/osx/gauge_osx.cpp |
2296 | src/osx/listbox_osx.cpp | |
2297 | src/osx/menu_osx.cpp | |
2298 | src/osx/menuitem_osx.cpp | |
2299 | src/osx/notebook_osx.cpp | |
2300 | src/osx/printdlg_osx.cpp | |
2301 | src/osx/radiobox_osx.cpp | |
2302 | src/osx/radiobut_osx.cpp | |
2303 | src/osx/scrolbar_osx.cpp | |
2304 | src/osx/slider_osx.cpp | |
2305 | src/osx/spinbutt_osx.cpp | |
adc27ddc VZ |
2306 | src/osx/srchctrl_osx.cpp |
2307 | src/osx/statbox_osx.cpp | |
2308 | src/osx/statline_osx.cpp | |
2309 | src/osx/stattext_osx.cpp | |
c84030e0 | 2310 | src/osx/textentry_osx.cpp |
adc27ddc VZ |
2311 | src/osx/textctrl_osx.cpp |
2312 | src/osx/tglbtn_osx.cpp | |
2313 | src/osx/toolbar_osx.cpp | |
0334f97f | 2314 | <!-- wxWebKit files --> |
1e5b27dd | 2315 | src/html/htmlctrl/webkit/webkit.mm |
356c775f | 2316 | <!-- Native color/font dialogs --> |
126b1df4 | 2317 | src/osx/carbon/colordlgosx.mm |
2ea057f9 SC |
2318 | src/osx/carbon/fontdlgosx.mm |
2319 | <!-- other shared files --> | |
adc27ddc | 2320 | src/osx/accel.cpp |
2ea057f9 SC |
2321 | src/osx/carbon/clipbrd.cpp |
2322 | src/osx/carbon/cursor.cpp | |
2323 | src/osx/carbon/fontdlg.cpp | |
2324 | src/osx/carbon/gdiobj.cpp | |
2325 | src/osx/carbon/icon.cpp | |
2326 | src/osx/carbon/app.cpp | |
2327 | src/osx/carbon/combobox.cpp | |
2328 | src/osx/carbon/control.cpp | |
2329 | src/osx/carbon/dataobj.cpp | |
2330 | src/osx/carbon/dcclient.cpp | |
2331 | src/osx/carbon/dcprint.cpp | |
2332 | src/osx/carbon/dcscreen.cpp | |
22a927e4 | 2333 | src/osx/core/glgrab.cpp |
2ea057f9 | 2334 | src/osx/carbon/graphics.cpp |
2ea057f9 SC |
2335 | src/osx/carbon/font.cpp |
2336 | src/osx/carbon/frame.cpp | |
d2e6c141 | 2337 | src/osx/carbon/mdi.cpp |
2ea057f9 SC |
2338 | src/osx/carbon/metafile.cpp |
2339 | src/osx/carbon/overlay.cpp | |
2340 | src/osx/carbon/popupwin.cpp | |
2ea057f9 SC |
2341 | src/osx/carbon/renderer.cpp |
2342 | src/osx/carbon/settings.cpp | |
2343 | src/osx/carbon/statbrma.cpp | |
5398a2e0 | 2344 | src/osx/carbon/region.cpp |
6257c726 | 2345 | <!-- cocoa bridge --> |
126b1df4 | 2346 | src/osx/carbon/utilscocoa.mm |
1e5b27dd SC |
2347 | <!-- Generic implementations used by wxOSX: --> |
2348 | src/generic/caret.cpp | |
2349 | src/generic/clrpickerg.cpp | |
2350 | src/generic/collpaneg.cpp | |
2351 | src/generic/colrdlgg.cpp | |
2352 | src/generic/dirdlgg.cpp | |
2353 | src/generic/fdrepdlg.cpp | |
2354 | src/generic/filedlgg.cpp | |
2355 | src/generic/filepickerg.cpp | |
2356 | src/generic/fontdlgg.cpp | |
2357 | src/generic/fontpickerg.cpp | |
2358 | src/generic/listctrl.cpp | |
2359 | src/generic/prntdlgg.cpp | |
2360 | src/generic/statusbr.cpp | |
8cd79b7a | 2361 | src/generic/textmeasure.cpp |
0334f97f DE |
2362 | </if> |
2363 | </set> | |
2364 | ||
126b1df4 | 2365 | <!-- Header files like wx/osx/foo.h which include wx/osx/carbon/foo.h --> |
2ea057f9 | 2366 | <set var="OSX_SHARED_HDR" hints="files"> |
1e5b27dd SC |
2367 | <!-- wxWebKit headers --> |
2368 | wx/html/webkit.h | |
2369 | <!-- other shared headers --> | |
126b1df4 | 2370 | wx/osx/accel.h |
b4354db1 | 2371 | wx/osx/anybutton.h |
126b1df4 SC |
2372 | wx/osx/app.h |
2373 | wx/osx/bitmap.h | |
2374 | wx/osx/bmpbuttn.h | |
2375 | wx/osx/brush.h | |
2376 | wx/osx/button.h | |
2377 | wx/osx/checkbox.h | |
2378 | wx/osx/checklst.h | |
2379 | wx/osx/chkconf.h | |
2380 | wx/osx/choice.h | |
2381 | wx/osx/clipbrd.h | |
2382 | wx/osx/colordlg.h | |
2383 | wx/osx/colour.h | |
2384 | wx/osx/combobox.h | |
2385 | wx/osx/control.h | |
2386 | wx/osx/cursor.h | |
2387 | wx/osx/dataform.h | |
2388 | wx/osx/dataobj.h | |
2389 | wx/osx/dataobj2.h | |
2390 | wx/osx/dc.h | |
2391 | wx/osx/dcclient.h | |
2392 | wx/osx/dcmemory.h | |
2393 | wx/osx/dcprint.h | |
2394 | wx/osx/dcscreen.h | |
2395 | wx/osx/dialog.h | |
2396 | wx/osx/dirdlg.h | |
2397 | wx/osx/dnd.h | |
2398 | wx/osx/evtloop.h | |
5cd99866 | 2399 | wx/osx/evtloopsrc.h |
126b1df4 SC |
2400 | wx/osx/filedlg.h |
2401 | wx/osx/font.h | |
2402 | wx/osx/fontdlg.h | |
2403 | wx/osx/frame.h | |
2404 | wx/osx/gauge.h | |
2405 | wx/osx/helpxxxx.h | |
2406 | wx/osx/icon.h | |
2407 | wx/osx/imaglist.h | |
2408 | wx/osx/listbox.h | |
2409 | wx/osx/listctrl.h | |
2410 | wx/osx/mdi.h | |
2411 | wx/osx/menu.h | |
2412 | wx/osx/menuitem.h | |
2413 | wx/osx/metafile.h | |
2414 | wx/osx/mimetype.h | |
2415 | wx/osx/minifram.h | |
2416 | wx/osx/msgdlg.h | |
2417 | wx/osx/nonownedwnd.h | |
2418 | wx/osx/notebook.h | |
2419 | wx/osx/palette.h | |
2420 | wx/osx/pen.h | |
2421 | wx/osx/popupwin.h | |
2422 | wx/osx/pnghand.h | |
2423 | wx/osx/pngread.h | |
2424 | wx/osx/printdlg.h | |
2425 | wx/osx/printmac.h | |
2426 | wx/osx/private.h | |
2427 | wx/osx/radiobox.h | |
2428 | wx/osx/radiobut.h | |
2429 | wx/osx/region.h | |
2430 | wx/osx/scrolbar.h | |
2431 | wx/osx/slider.h | |
2432 | wx/osx/spinbutt.h | |
126b1df4 SC |
2433 | wx/osx/srchctrl.h |
2434 | wx/osx/statbmp.h | |
2435 | wx/osx/statbox.h | |
2436 | wx/osx/statline.h | |
2437 | wx/osx/stattext.h | |
2438 | wx/osx/statusbr.h | |
126b1df4 SC |
2439 | wx/osx/taskbarosx.h |
2440 | wx/osx/textctrl.h | |
a7bb4dcb | 2441 | wx/osx/textentry.h |
126b1df4 SC |
2442 | wx/osx/tglbtn.h |
2443 | wx/osx/toolbar.h | |
2444 | wx/osx/tooltip.h | |
2445 | wx/osx/toplevel.h | |
2446 | wx/osx/treectrl.h | |
2447 | wx/osx/uma.h | |
2448 | wx/osx/window.h | |
1e5b27dd SC |
2449 | <!-- Generic implementations used by wxOSX: --> |
2450 | wx/generic/caret.h | |
2451 | wx/generic/clrpickerg.h | |
2452 | wx/generic/collpaneg.h | |
2453 | wx/generic/colrdlgg.h | |
2454 | wx/generic/dirdlgg.h | |
2455 | wx/generic/fdrepdlg.h | |
2456 | wx/generic/filedlgg.h | |
2457 | wx/generic/filepickerg.h | |
2458 | wx/generic/fontdlgg.h | |
2459 | wx/generic/fontpickerg.h | |
2460 | wx/generic/listctrl.h | |
2461 | wx/generic/prntdlgg.h | |
2462 | wx/generic/statusbr.h | |
23ffcdc4 | 2463 | </set> |
80a12bd8 SC |
2464 | |
2465 | <!-- ====================================================================== --> | |
2466 | <!-- wxOSX/Carbon --> | |
2467 | <!-- ====================================================================== --> | |
2468 | ||
2469 | <set var="OSX_CARBON_SRC" hints="files"> | |
2470 | <!-- carbon files --> | |
2471 | $(OSX_CARBON_COCOA_SRC) | |
b4354db1 | 2472 | src/osx/carbon/anybutton.cpp |
80a12bd8 SC |
2473 | src/osx/carbon/bmpbuttn.cpp |
2474 | src/osx/carbon/button.cpp | |
2475 | src/osx/carbon/checkbox.cpp | |
2476 | src/osx/carbon/choice.cpp | |
2477 | src/osx/carbon/colordlg.cpp | |
2478 | src/osx/carbon/dialog.cpp | |
2479 | src/osx/carbon/dirdlg.cpp | |
2480 | src/osx/carbon/dnd.cpp | |
2481 | src/osx/carbon/evtloop.cpp | |
2482 | src/osx/carbon/filedlg.cpp | |
2483 | src/osx/carbon/gauge.cpp | |
2484 | src/osx/carbon/listbox.cpp | |
2485 | src/osx/carbon/listctrl_mac.cpp | |
2486 | src/osx/carbon/menu.cpp | |
2487 | src/osx/carbon/menuitem.cpp | |
2488 | src/osx/carbon/msgdlg.cpp | |
2489 | src/osx/carbon/nonownedwnd.cpp | |
2490 | src/osx/carbon/notebmac.cpp | |
2491 | src/osx/carbon/printdlg.cpp | |
2492 | src/osx/carbon/radiobut.cpp | |
2493 | src/osx/carbon/scrolbar.cpp | |
2494 | src/osx/carbon/slider.cpp | |
2495 | src/osx/carbon/spinbutt.cpp | |
2496 | src/osx/carbon/srchctrl.cpp | |
2497 | src/osx/carbon/statbmp.cpp | |
2498 | src/osx/carbon/statbox.cpp | |
2499 | src/osx/carbon/statlmac.cpp | |
2500 | src/osx/carbon/stattext.cpp | |
2501 | src/osx/carbon/textctrl.cpp | |
2502 | src/osx/carbon/tglbtn.cpp | |
2503 | src/osx/carbon/toolbar.cpp | |
2504 | src/osx/carbon/tooltip.cpp | |
2505 | src/osx/carbon/window.cpp | |
2506 | </set> | |
2507 | ||
23ffcdc4 | 2508 | <!-- wxMac Carbon header files --> |
2ea057f9 | 2509 | <set var="OSX_CARBON_HDR" hints="files"> |
7fd9ac06 SC |
2510 | <!-- core files --> |
2511 | wx/osx/core/colour.h | |
2512 | <!-- carbon files --> | |
126b1df4 | 2513 | wx/osx/carbon/chkconf.h |
126b1df4 | 2514 | wx/osx/carbon/evtloop.h |
126b1df4 | 2515 | wx/osx/carbon/private.h |
126b1df4 | 2516 | wx/osx/carbon/region.h |
126b1df4 | 2517 | wx/osx/carbon/statbmp.h |
126b1df4 | 2518 | wx/osx/carbon/uma.h |
ddf98968 VS |
2519 | </set> |
2520 | ||
2ea057f9 | 2521 | <!-- ====================================================================== --> |
80a12bd8 | 2522 | <!-- wxOSX/Cocoa --> |
2ea057f9 SC |
2523 | <!-- ====================================================================== --> |
2524 | ||
2525 | <set var="OSX_COCOA_SRC" hints="files"> | |
2526 | $(OSX_CARBON_COCOA_SRC) | |
b4354db1 | 2527 | src/osx/cocoa/anybutton.mm |
2ea057f9 SC |
2528 | src/osx/cocoa/button.mm |
2529 | src/osx/cocoa/checkbox.mm | |
2530 | src/osx/cocoa/choice.mm | |
b478f242 | 2531 | src/osx/cocoa/colour.mm |
f941a30b | 2532 | src/osx/cocoa/combobox.mm |
2ea057f9 SC |
2533 | src/osx/cocoa/dialog.mm |
2534 | src/osx/cocoa/dirdlg.mm | |
7dab9892 | 2535 | src/osx/cocoa/dnd.mm |
2ea057f9 SC |
2536 | src/osx/cocoa/evtloop.mm |
2537 | src/osx/cocoa/filedlg.mm | |
2538 | src/osx/cocoa/gauge.mm | |
2ea057f9 SC |
2539 | src/osx/cocoa/listbox.mm |
2540 | src/osx/cocoa/menu.mm | |
2541 | src/osx/cocoa/menuitem.mm | |
2542 | src/osx/cocoa/msgdlg.mm | |
2543 | src/osx/cocoa/nonownedwnd.mm | |
2544 | src/osx/cocoa/notebook.mm | |
2545 | src/osx/cocoa/radiobut.mm | |
2aab96f5 | 2546 | src/osx/cocoa/preferences.mm |
f9af19d2 | 2547 | src/osx/cocoa/printdlg.mm |
2ea057f9 SC |
2548 | src/osx/cocoa/scrolbar.mm |
2549 | src/osx/cocoa/slider.mm | |
2550 | src/osx/cocoa/spinbutt.mm | |
2551 | src/osx/cocoa/srchctrl.mm | |
2552 | src/osx/cocoa/statbox.mm | |
2553 | src/osx/cocoa/statline.mm | |
2554 | src/osx/cocoa/stattext.mm | |
2555 | src/osx/cocoa/textctrl.mm | |
2556 | src/osx/cocoa/tglbtn.mm | |
2557 | src/osx/cocoa/toolbar.mm | |
78d99015 | 2558 | src/osx/cocoa/tooltip.mm |
2ea057f9 | 2559 | src/osx/cocoa/window.mm |
2ea057f9 SC |
2560 | </set> |
2561 | <set var="OSX_COCOA_HDR" hints="files"> | |
d2e6c141 | 2562 | wx/osx/cocoa/chkconf.h |
91407318 | 2563 | wx/osx/cocoa/evtloop.h |
d2e6c141 KO |
2564 | wx/osx/cocoa/private.h |
2565 | $(OSX_CARBON_HDR) <!-- FIXME: these headers need moved somewhere shared... --> | |
2566 | wx/generic/region.h | |
2ea057f9 SC |
2567 | </set> |
2568 | ||
2569 | <!-- ====================================================================== --> | |
80a12bd8 | 2570 | <!-- wxOSX/iPhone --> |
2ea057f9 SC |
2571 | <!-- ====================================================================== --> |
2572 | ||
2573 | <set var="OSX_IPHONE_SRC" hints="files"> | |
80a12bd8 SC |
2574 | $(OSX_CARBON_COCOA_SRC) |
2575 | src/generic/regiong.cpp | |
2576 | src/generic/icon.cpp | |
2577 | <!-- iphone files --> | |
b4354db1 | 2578 | src/osx/iphone/anybutton.mm |
80a12bd8 SC |
2579 | src/osx/iphone/button.mm |
2580 | src/osx/iphone/checkbox.mm | |
2581 | src/osx/iphone/dialog.mm | |
2582 | src/osx/iphone/evtloop.mm | |
2583 | src/osx/iphone/gauge.mm | |
80a12bd8 SC |
2584 | src/osx/iphone/msgdlg.mm |
2585 | src/osx/iphone/nonownedwnd.mm | |
2586 | src/osx/iphone/scrolbar.mm | |
2587 | src/osx/iphone/slider.mm | |
2588 | src/osx/iphone/stattext.mm | |
2589 | src/osx/iphone/textctrl.mm | |
2590 | src/osx/iphone/toolbar.mm | |
2591 | src/osx/iphone/utils.mm | |
2592 | src/osx/iphone/window.mm | |
2593 | </set> | |
2594 | ||
2595 | <set var="OSX_IPHONE_HDR" hints="files"> | |
2596 | wx/osx/iphone/chkconf.h | |
2597 | wx/osx/iphone/evtloop.h | |
2598 | wx/osx/iphone/private.h | |
2599 | $(OSX_CARBON_HDR) <!-- FIXME: these headers need moved somewhere shared... --> | |
2600 | wx/generic/region.h | |
2ea057f9 | 2601 | </set> |
ddf98968 VS |
2602 | |
2603 | <!-- ====================================================================== --> | |
2604 | <!-- wxCocoa --> | |
2605 | <!-- ====================================================================== --> | |
2606 | ||
22d2b5bf | 2607 | <set var="COCOA_LOWLEVEL_SRC" hints="files"> |
fc480dc1 | 2608 | <!-- Shared wxMac and wxCocoa files --> |
126b1df4 SC |
2609 | src/osx/core/hid.cpp |
2610 | src/osx/core/utilsexc_cf.cpp | |
ddf98968 | 2611 | </set> |
22d2b5bf | 2612 | <set var="COCOA_LOWLEVEL_HDR" hints="files"> |
ddf98968 | 2613 | </set> |
22d2b5bf | 2614 | <set var="COCOA_SRC" hints="files"> |
ddf98968 VS |
2615 | src/cocoa/NSBox.mm |
2616 | src/cocoa/NSButton.mm | |
2617 | src/cocoa/NSControl.mm | |
2618 | src/cocoa/NSMenu.mm | |
2619 | src/cocoa/NSPanel.mm | |
5369a054 | 2620 | src/cocoa/NSScroller.mm |
90f6792f | 2621 | src/cocoa/NSSlider.mm |
0754a4b3 | 2622 | src/cocoa/NSTabView.mm |
9f5fd077 | 2623 | src/cocoa/NSTableView.mm |
ddf98968 VS |
2624 | src/cocoa/NSTextField.mm |
2625 | src/cocoa/NSView.mm | |
2626 | src/cocoa/NSWindow.mm | |
8ac77595 | 2627 | src/cocoa/ObjcRef.mm |
ddf98968 | 2628 | src/cocoa/app.mm |
ddf98968 | 2629 | src/cocoa/bitmap.mm |
5df6736f | 2630 | src/cocoa/bmpbuttn.mm |
f162a338 | 2631 | src/cocoa/brush.mm |
ddf98968 VS |
2632 | src/cocoa/button.mm |
2633 | src/cocoa/checkbox.mm | |
2634 | src/cocoa/checklst.mm | |
2635 | src/cocoa/choice.mm | |
374eabc1 | 2636 | src/cocoa/clipbrd.mm |
dcb68102 | 2637 | src/cocoa/colordlg.mm |
af515aad | 2638 | src/cocoa/colour.mm |
01a16fce | 2639 | src/cocoa/combobox.mm |
ddf98968 VS |
2640 | src/cocoa/control.mm |
2641 | src/cocoa/cursor.mm | |
2642 | src/cocoa/data.cpp | |
374eabc1 | 2643 | src/cocoa/dataobj.mm |
ddf98968 VS |
2644 | src/cocoa/dc.mm |
2645 | src/cocoa/dcclient.mm | |
fc1852c1 | 2646 | src/cocoa/dcmemory.mm |
ddf98968 VS |
2647 | src/cocoa/dcscreen.cpp |
2648 | src/cocoa/dialog.mm | |
937f314d | 2649 | src/cocoa/dirdlg.mm |
dcb68102 RN |
2650 | src/cocoa/display.mm |
2651 | src/cocoa/drawer.mm | |
8897ca05 | 2652 | src/cocoa/evtloop.mm |
f31424db | 2653 | src/cocoa/filedlg.mm |
9d31c239 | 2654 | src/cocoa/font.mm |
dcb68102 | 2655 | src/cocoa/fontdlg.mm |
4a5f4703 | 2656 | src/cocoa/fontenum.mm |
ddf98968 VS |
2657 | src/cocoa/fontutil.cpp |
2658 | src/cocoa/frame.mm | |
ec35ed7c | 2659 | src/cocoa/gauge.mm |
b5df4fc7 | 2660 | src/cocoa/icon.mm |
ddf98968 VS |
2661 | src/cocoa/listbox.mm |
2662 | src/cocoa/main.cpp | |
1a249e04 | 2663 | src/cocoa/mbarman.mm |
9de2e75a | 2664 | src/cocoa/mdi.mm |
ddf98968 VS |
2665 | src/cocoa/menu.mm |
2666 | src/cocoa/menuitem.mm | |
dcb68102 | 2667 | src/cocoa/msgdlg.mm |
0754a4b3 | 2668 | src/cocoa/notebook.mm |
0a0d1a61 | 2669 | src/cocoa/pen.mm |
ddf98968 VS |
2670 | src/cocoa/radiobox.mm |
2671 | src/cocoa/radiobut.mm | |
53dbce23 | 2672 | src/cocoa/region.mm |
5369a054 | 2673 | src/cocoa/scrolbar.mm |
888c4e8f | 2674 | src/cocoa/settings.mm |
af515aad | 2675 | src/cocoa/slider.mm |
dcb68102 | 2676 | src/cocoa/sound.mm |
36b46e25 | 2677 | src/cocoa/spinbutt.mm |
ddf98968 VS |
2678 | src/cocoa/statbmp.mm |
2679 | src/cocoa/statbox.mm | |
2680 | src/cocoa/statline2.mm | |
2681 | src/cocoa/stattext.mm | |
2682 | src/cocoa/textctrl.mm | |
2fcd7f64 | 2683 | src/cocoa/timer.mm |
715c1da4 | 2684 | src/cocoa/toolbar.mm |
3e90a0ab | 2685 | src/cocoa/tooltip.mm |
ddf98968 | 2686 | src/cocoa/toplevel.mm |
c24937e4 | 2687 | src/cocoa/utils.mm |
dcb68102 | 2688 | src/cocoa/utilsexc.mm |
ddf98968 | 2689 | src/cocoa/window.mm |
1936dc8b | 2690 | <!-- Generic implementations used by wxCocoa: --> |
5df6736f VS |
2691 | src/generic/accel.cpp |
2692 | src/generic/caret.cpp | |
773623f2 VZ |
2693 | src/generic/clrpickerg.cpp |
2694 | src/generic/collpaneg.cpp | |
31d20b58 | 2695 | src/generic/colrdlgg.cpp |
5df6736f | 2696 | src/generic/fdrepdlg.cpp |
773623f2 | 2697 | src/generic/filepickerg.cpp |
5df6736f | 2698 | src/generic/fontdlgg.cpp |
773623f2 | 2699 | src/generic/fontpickerg.cpp |
5df6736f VS |
2700 | src/generic/imaglist.cpp |
2701 | src/generic/listctrl.cpp | |
31d20b58 | 2702 | src/generic/paletteg.cpp |
53dbce23 | 2703 | src/generic/regiong.cpp |
5df6736f | 2704 | src/generic/statusbr.cpp |
8cd79b7a | 2705 | src/generic/textmeasure.cpp |
ddf98968 | 2706 | </set> |
22d2b5bf | 2707 | <set var="COCOA_HDR" hints="files"> |
c15ffb3b | 2708 | wx/cocoa/NSApplication.h |
ddf98968 VS |
2709 | wx/cocoa/NSBox.h |
2710 | wx/cocoa/NSButton.h | |
2711 | wx/cocoa/NSControl.h | |
2712 | wx/cocoa/NSMenu.h | |
2713 | wx/cocoa/NSPanel.h | |
5369a054 | 2714 | wx/cocoa/NSScroller.h |
90f6792f | 2715 | wx/cocoa/NSSlider.h |
0754a4b3 | 2716 | wx/cocoa/NSTabView.h |
9f5fd077 | 2717 | wx/cocoa/NSTableView.h |
ddf98968 VS |
2718 | wx/cocoa/NSTextField.h |
2719 | wx/cocoa/NSView.h | |
2720 | wx/cocoa/NSWindow.h | |
2721 | wx/cocoa/ObjcAssociate.h | |
2722 | wx/cocoa/ObjcPose.h | |
8ac77595 | 2723 | wx/cocoa/ObjcRef.h |
ddf98968 VS |
2724 | wx/cocoa/app.h |
2725 | wx/cocoa/bitmap.h | |
2726 | wx/cocoa/bmpbuttn.h | |
2727 | wx/cocoa/brush.h | |
2728 | wx/cocoa/button.h | |
2729 | wx/cocoa/checkbox.h | |
2730 | wx/cocoa/checklst.h | |
2731 | wx/cocoa/choice.h | |
374eabc1 | 2732 | wx/cocoa/clipbrd.h |
dcb68102 | 2733 | wx/cocoa/colordlg.h |
ddf98968 | 2734 | wx/cocoa/colour.h |
01a16fce | 2735 | wx/cocoa/combobox.h |
ddf98968 VS |
2736 | wx/cocoa/control.h |
2737 | wx/cocoa/cursor.h | |
374eabc1 DE |
2738 | wx/cocoa/dataform.h |
2739 | wx/cocoa/dataobj.h | |
2740 | wx/cocoa/dataobj2.h | |
ddf98968 VS |
2741 | wx/cocoa/dc.h |
2742 | wx/cocoa/dcclient.h | |
2743 | wx/cocoa/dcmemory.h | |
2744 | wx/cocoa/dcscreen.h | |
2745 | wx/cocoa/dialog.h | |
937f314d | 2746 | wx/cocoa/dirdlg.h |
dcb68102 | 2747 | wx/cocoa/drawer.h |
1df4b194 | 2748 | wx/cocoa/evtloop.h |
f31424db | 2749 | wx/cocoa/filedlg.h |
ddf98968 | 2750 | wx/cocoa/font.h |
dcb68102 | 2751 | wx/cocoa/fontdlg.h |
ddf98968 | 2752 | wx/cocoa/frame.h |
ec35ed7c | 2753 | wx/cocoa/gauge.h |
ddf98968 VS |
2754 | wx/cocoa/icon.h |
2755 | wx/cocoa/listbox.h | |
3d3600c9 | 2756 | wx/cocoa/log.h |
1a249e04 | 2757 | wx/cocoa/mbarman.h |
9de2e75a | 2758 | wx/cocoa/mdi.h |
ddf98968 VS |
2759 | wx/cocoa/menu.h |
2760 | wx/cocoa/menuitem.h | |
dcb68102 | 2761 | wx/cocoa/msgdlg.h |
0754a4b3 | 2762 | wx/cocoa/notebook.h |
ddf98968 VS |
2763 | wx/cocoa/pen.h |
2764 | wx/cocoa/radiobox.h | |
2765 | wx/cocoa/radiobut.h | |
2766 | wx/cocoa/region.h | |
5369a054 | 2767 | wx/cocoa/scrolbar.h |
c15ffb3b | 2768 | wx/cocoa/slider.h |
dcb68102 | 2769 | wx/cocoa/sound.h |
36b46e25 | 2770 | wx/cocoa/spinbutt.h |
ddf98968 VS |
2771 | wx/cocoa/statbmp.h |
2772 | wx/cocoa/statbox.h | |
2773 | wx/cocoa/statline.h | |
2774 | wx/cocoa/stattext.h | |
2775 | wx/cocoa/textctrl.h | |
715c1da4 | 2776 | wx/cocoa/toolbar.h |
a970aa7a | 2777 | wx/cocoa/tooltip.h |
ddf98968 VS |
2778 | wx/cocoa/toplevel.h |
2779 | wx/cocoa/window.h | |
6c67fde0 DE |
2780 | <!-- Semi-private headers --> |
2781 | wx/cocoa/objc/objc_uniquifying.h | |
d1d83c9b | 2782 | <!-- Generic implementations used by wxCocoa: --> |
5df6736f | 2783 | wx/generic/caret.h |
773623f2 VZ |
2784 | wx/generic/clrpickerg.h |
2785 | wx/generic/collpaneg.h | |
5df6736f | 2786 | wx/generic/fdrepdlg.h |
d1d83c9b | 2787 | wx/generic/fontdlgg.h |
773623f2 | 2788 | wx/generic/fontpickerg.h |
d1d83c9b VS |
2789 | wx/generic/imaglist.h |
2790 | wx/generic/listctrl.h | |
eb9dd149 | 2791 | wx/generic/paletteg.h |
53dbce23 | 2792 | wx/generic/region.h |
5df6736f | 2793 | wx/generic/statusbr.h |
ddf98968 VS |
2794 | </set> |
2795 | ||
2796 | ||
2797 | ||
2798 | <!-- ====================================================================== --> | |
2799 | <!-- wxUniversal --> | |
2800 | <!-- ====================================================================== --> | |
2801 | ||
88f23fdd | 2802 | |
22d2b5bf | 2803 | <set var="UNIV_THEMES_SRC" hints="files"> |
ddf98968 | 2804 | src/univ/themes/gtk.cpp |
ddf98968 | 2805 | src/univ/themes/metal.cpp |
3a01afec | 2806 | src/univ/themes/mono.cpp |
5df6736f | 2807 | src/univ/themes/win32.cpp |
ddf98968 VS |
2808 | </set> |
2809 | ||
03c12669 VZ |
2810 | <set var="UNIV_PLATFORM_SRC" hints="files"> |
2811 | <if cond="TOOLKIT=='MSW'"> | |
2812 | src/msw/evtloop.cpp | |
2813 | </if> | |
2814 | </set> | |
2815 | <set var="UNIV_PLATFORM_HDR" hints="files"> | |
2816 | <if cond="TOOLKIT=='MSW'"> | |
2817 | wx/msw/evtloop.h | |
2818 | </if> | |
2819 | </set> | |
2820 | ||
22d2b5bf | 2821 | <set var="UNIV_SRC" hints="files"> |
03c12669 | 2822 | $(UNIV_PLATFORM_SRC) |
5df6736f | 2823 | src/generic/accel.cpp |
773623f2 VZ |
2824 | src/generic/clrpickerg.cpp |
2825 | src/generic/collpaneg.cpp | |
5df6736f VS |
2826 | src/generic/colrdlgg.cpp |
2827 | src/generic/dirdlgg.cpp | |
2828 | src/generic/fdrepdlg.cpp | |
2829 | src/generic/filedlgg.cpp | |
773623f2 | 2830 | src/generic/filepickerg.cpp |
5df6736f | 2831 | src/generic/fontdlgg.cpp |
773623f2 | 2832 | src/generic/fontpickerg.cpp |
5df6736f VS |
2833 | src/generic/listctrl.cpp |
2834 | src/generic/mdig.cpp | |
5df6736f | 2835 | src/generic/prntdlgg.cpp |
ddf98968 VS |
2836 | src/univ/bmpbuttn.cpp |
2837 | src/univ/button.cpp | |
2838 | src/univ/checkbox.cpp | |
2839 | src/univ/checklst.cpp | |
2840 | src/univ/choice.cpp | |
ddf98968 VS |
2841 | src/univ/combobox.cpp |
2842 | src/univ/control.cpp | |
2479d149 | 2843 | src/univ/ctrlrend.cpp |
ddf98968 VS |
2844 | src/univ/dialog.cpp |
2845 | src/univ/framuniv.cpp | |
ddf98968 VS |
2846 | src/univ/gauge.cpp |
2847 | src/univ/inpcons.cpp | |
2848 | src/univ/inphand.cpp | |
2849 | src/univ/listbox.cpp | |
2850 | src/univ/menu.cpp | |
2851 | src/univ/notebook.cpp | |
2852 | src/univ/radiobox.cpp | |
2853 | src/univ/radiobut.cpp | |
ddf98968 VS |
2854 | src/univ/scrarrow.cpp |
2855 | src/univ/scrolbar.cpp | |
2856 | src/univ/scrthumb.cpp | |
d2f3b085 | 2857 | src/univ/settingsuniv.cpp |
ddf98968 VS |
2858 | src/univ/slider.cpp |
2859 | src/univ/spinbutt.cpp | |
2860 | src/univ/statbmp.cpp | |
2861 | src/univ/statbox.cpp | |
2862 | src/univ/statline.cpp | |
2863 | src/univ/stattext.cpp | |
2864 | src/univ/statusbr.cpp | |
147b8a4a | 2865 | src/univ/stdrend.cpp |
c4836bee | 2866 | src/univ/textctrl.cpp |
43be3c33 | 2867 | src/univ/tglbtn.cpp |
ddf98968 | 2868 | src/univ/theme.cpp |
5df6736f VS |
2869 | src/univ/toolbar.cpp |
2870 | src/univ/topluniv.cpp | |
ddf98968 | 2871 | src/univ/winuniv.cpp |
ddf98968 | 2872 | </set> |
22d2b5bf | 2873 | <set var="UNIV_HDR" hints="files"> |
03c12669 | 2874 | $(UNIV_PLATFORM_HDR) |
5df6736f | 2875 | wx/generic/accel.h |
773623f2 VZ |
2876 | wx/generic/animate.h |
2877 | wx/generic/clrpickerg.h | |
2878 | wx/generic/collpaneg.h | |
a236aa20 | 2879 | wx/generic/ctrlsub.h |
5df6736f VS |
2880 | wx/generic/dirdlgg.h |
2881 | wx/generic/fdrepdlg.h | |
773623f2 VZ |
2882 | wx/generic/filedlgg.h |
2883 | wx/generic/filepickerg.h | |
5df6736f | 2884 | wx/generic/fontdlgg.h |
773623f2 | 2885 | wx/generic/fontpickerg.h |
5df6736f VS |
2886 | wx/generic/listctrl.h |
2887 | wx/generic/mdig.h | |
2888 | wx/generic/statusbr.h | |
f4308cf5 | 2889 | wx/univ/anybutton.h |
ddf98968 VS |
2890 | wx/univ/app.h |
2891 | wx/univ/bmpbuttn.h | |
2892 | wx/univ/button.h | |
2893 | wx/univ/checkbox.h | |
2894 | wx/univ/checklst.h | |
4353a8df | 2895 | wx/univ/chkconf.h |
ddf98968 VS |
2896 | wx/univ/choice.h |
2897 | wx/univ/colschem.h | |
2898 | wx/univ/combobox.h | |
2899 | wx/univ/control.h | |
bbcf2821 | 2900 | wx/univ/custombgwin.h |
ddf98968 VS |
2901 | wx/univ/dialog.h |
2902 | wx/univ/frame.h | |
ddf98968 VS |
2903 | wx/univ/gauge.h |
2904 | wx/univ/inpcons.h | |
2905 | wx/univ/inphand.h | |
2906 | wx/univ/listbox.h | |
2907 | wx/univ/menu.h | |
2908 | wx/univ/menuitem.h | |
2909 | wx/univ/notebook.h | |
5b87bd6c | 2910 | wx/univ/panel.h |
ddf98968 VS |
2911 | wx/univ/radiobox.h |
2912 | wx/univ/radiobut.h | |
2913 | wx/univ/renderer.h | |
2914 | wx/univ/scrarrow.h | |
2915 | wx/univ/scrolbar.h | |
2916 | wx/univ/scrthumb.h | |
2917 | wx/univ/scrtimer.h | |
ddf98968 VS |
2918 | wx/univ/slider.h |
2919 | wx/univ/spinbutt.h | |
2920 | wx/univ/statbmp.h | |
2921 | wx/univ/statbox.h | |
2922 | wx/univ/statline.h | |
2923 | wx/univ/stattext.h | |
2924 | wx/univ/statusbr.h | |
147b8a4a | 2925 | wx/univ/stdrend.h |
ddf98968 VS |
2926 | wx/univ/textctrl.h |
2927 | wx/univ/theme.h | |
35c63208 | 2928 | wx/univ/tglbtn.h |
ddf98968 | 2929 | wx/univ/toolbar.h |
5df6736f | 2930 | wx/univ/toplevel.h |
ddf98968 | 2931 | wx/univ/window.h |
ddf98968 VS |
2932 | </set> |
2933 | ||
13cb46e0 VS |
2934 | <!-- ====================================================================== --> |
2935 | <!-- wxAdvanced --> | |
2936 | <!-- ====================================================================== --> | |
2937 | ||
13cb46e0 | 2938 | <set var="ADVANCED_CMN_SRC" hints="files"> |
72045d57 | 2939 | src/common/animatecmn.cpp |
f696015c | 2940 | src/common/bmpcboxcmn.cpp |
628e155d | 2941 | src/common/calctrlcmn.cpp |
a78d8dd0 | 2942 | src/common/datavcmn.cpp |
232e8075 | 2943 | src/common/gridcmn.cpp |
c105dda0 | 2944 | src/common/hyperlnkcmn.cpp |
232e8075 | 2945 | src/common/odcombocmn.cpp |
e520c3f7 | 2946 | src/common/richtooltipcmn.cpp |
fd3f8f5c | 2947 | src/generic/aboutdlgg.cpp |
ea11bf3a | 2948 | src/generic/bannerwindow.cpp |
e17b6377 | 2949 | src/generic/bmpcboxg.cpp |
628e155d | 2950 | src/generic/calctrlg.cpp |
3571e1ad | 2951 | src/generic/commandlinkbuttong.cpp |
4ed7af08 | 2952 | src/generic/datavgen.cpp |
d9876615 | 2953 | src/generic/datectlg.cpp |
806ad819 | 2954 | src/generic/editlbox.cpp |
13cb46e0 VS |
2955 | src/generic/grid.cpp |
2956 | src/generic/gridctrl.cpp | |
29efc6e4 | 2957 | src/generic/grideditors.cpp |
13cb46e0 VS |
2958 | src/generic/gridsel.cpp |
2959 | src/generic/helpext.cpp | |
c105dda0 | 2960 | src/generic/hyperlinkg.cpp |
13cb46e0 | 2961 | src/generic/laywin.cpp |
e36a1739 | 2962 | src/generic/notifmsgg.cpp |
a340b80d | 2963 | src/generic/odcombo.cpp |
3c9287bb | 2964 | src/generic/propdlg.cpp |
00405b6c | 2965 | src/generic/richtooltipg.cpp |
13cb46e0 VS |
2966 | src/generic/sashwin.cpp |
2967 | src/generic/splash.cpp | |
c28a4e5f | 2968 | src/generic/timectrlg.cpp |
13cb46e0 | 2969 | src/generic/tipdlg.cpp |
524cb040 | 2970 | src/generic/treelist.cpp |
13cb46e0 VS |
2971 | src/generic/wizard.cpp |
2972 | </set> | |
2973 | ||
2974 | <set var="ADVANCED_CMN_HDR" hints="files"> | |
819d77af | 2975 | wx/aboutdlg.h |
72045d57 | 2976 | wx/animate.h |
ea11bf3a | 2977 | wx/bannerwindow.h |
e17b6377 | 2978 | wx/bmpcbox.h |
13cb46e0 | 2979 | wx/calctrl.h |
3571e1ad | 2980 | wx/commandlinkbutton.h |
a78d8dd0 | 2981 | wx/dataview.h |
79d8e80f | 2982 | wx/datectrl.h |
feb72429 | 2983 | wx/dateevt.h |
05f4dfa7 | 2984 | wx/datetimectrl.h |
13cb46e0 | 2985 | wx/dcbuffer.h |
6eec70b9 | 2986 | wx/dvrenderers.h |
806ad819 | 2987 | wx/editlbox.h |
fd3f8f5c | 2988 | wx/generic/aboutdlgg.h |
e17b6377 | 2989 | wx/generic/bmpcbox.h |
628e155d | 2990 | wx/generic/calctrlg.h |
d9876615 | 2991 | wx/generic/datectrl.h |
4ed7af08 | 2992 | wx/generic/dataview.h |
6eec70b9 VZ |
2993 | wx/generic/dvrenderer.h |
2994 | wx/generic/dvrenderers.h | |
13cb46e0 VS |
2995 | wx/generic/grid.h |
2996 | wx/generic/gridctrl.h | |
29efc6e4 | 2997 | wx/generic/grideditors.h |
13cb46e0 VS |
2998 | wx/generic/gridsel.h |
2999 | wx/generic/helpext.h | |
c105dda0 | 3000 | wx/generic/hyperlink.h |
13cb46e0 | 3001 | wx/generic/laywin.h |
e36a1739 | 3002 | wx/generic/notifmsg.h |
3c9287bb | 3003 | wx/generic/propdlg.h |
13cb46e0 VS |
3004 | wx/generic/sashwin.h |
3005 | wx/generic/splash.h | |
569c7d8c | 3006 | wx/generic/timectrl.h |
13cb46e0 VS |
3007 | wx/generic/wizard.h |
3008 | wx/grid.h | |
17e91437 | 3009 | wx/hyperlink.h |
131f235d | 3010 | wx/joystick.h |
13cb46e0 | 3011 | wx/laywin.h |
e36a1739 | 3012 | wx/notifmsg.h |
a340b80d | 3013 | wx/odcombo.h |
3c9287bb | 3014 | wx/propdlg.h |
e520c3f7 | 3015 | wx/richtooltip.h |
13cb46e0 | 3016 | wx/sashwin.h |
c79241a2 | 3017 | wx/sound.h |
13cb46e0 | 3018 | wx/splash.h |
131f235d | 3019 | wx/taskbar.h |
569c7d8c | 3020 | wx/timectrl.h |
13cb46e0 | 3021 | wx/tipdlg.h |
524cb040 | 3022 | wx/treelist.h |
13cb46e0 VS |
3023 | wx/wizard.h |
3024 | </set> | |
3025 | ||
131f235d VS |
3026 | <set var="ADVANCED_MSW_SRC" hints="files"> |
3027 | src/common/taskbarcmn.cpp | |
fd3f8f5c | 3028 | src/msw/aboutdlg.cpp |
98f3ec0f | 3029 | src/msw/notifmsg.cpp |
e520c3f7 | 3030 | src/msw/richtooltip.cpp |
315ebf68 | 3031 | src/msw/sound.cpp |
131f235d | 3032 | src/msw/taskbar.cpp |
131f235d VS |
3033 | </set> |
3034 | <set var="ADVANCED_MSW_HDR" hints="files"> | |
98f3ec0f | 3035 | wx/msw/notifmsg.h |
315ebf68 | 3036 | wx/msw/sound.h |
131f235d | 3037 | wx/msw/taskbar.h |
131f235d | 3038 | </set> |
ca95ed8e VZ |
3039 | |
3040 | <!-- not used with wxUniv --> | |
3041 | <set var="ADVANCED_MSW_NATIVE_SRC" hints="files"> | |
5d2d4a2e | 3042 | src/generic/animateg.cpp |
f696015c | 3043 | src/msw/bmpcbox.cpp |
51317496 | 3044 | src/msw/calctrl.cpp |
0b0bed0f | 3045 | src/msw/commandlinkbutton.cpp |
51317496 | 3046 | src/msw/datecontrols.cpp |
ca95ed8e | 3047 | src/msw/datectrl.cpp |
8957e55e | 3048 | src/msw/datetimectrl.cpp |
218697e2 | 3049 | src/msw/hyperlink.cpp |
569c7d8c | 3050 | src/msw/timectrl.cpp |
ca95ed8e VZ |
3051 | </set> |
3052 | <set var="ADVANCED_MSW_NATIVE_HDR" hints="files"> | |
5d2d4a2e | 3053 | wx/generic/animate.h |
f696015c | 3054 | wx/msw/bmpcbox.h |
0b0bed0f | 3055 | wx/msw/commandlinkbutton.h |
51317496 | 3056 | wx/msw/calctrl.h |
ca95ed8e | 3057 | wx/msw/datectrl.h |
8957e55e | 3058 | wx/msw/datetimectrl.h |
218697e2 | 3059 | wx/msw/hyperlink.h |
569c7d8c | 3060 | wx/msw/timectrl.h |
ca95ed8e VZ |
3061 | </set> |
3062 | ||
ba9e5bc4 | 3063 | <!-- not built on WindowsCE: --> |
ca95ed8e | 3064 | <set var="ADVANCED_MSW_DESKTOP_SRC" hints="files"> |
ba9e5bc4 VS |
3065 | src/msw/joystick.cpp |
3066 | </set> | |
ca95ed8e | 3067 | <set var="ADVANCED_MSW_DESKTOP_HDR" hints="files"> |
ba9e5bc4 VS |
3068 | wx/msw/joystick.h |
3069 | </set> | |
131f235d | 3070 | |
2ea057f9 | 3071 | <set var="ADVANCED_OSX_CARBON_SRC" hints="files"> |
3e17bc3f | 3072 | src/common/taskbarcmn.cpp |
773623f2 | 3073 | src/generic/animateg.cpp |
126b1df4 SC |
3074 | src/osx/carbon/aboutdlg.cpp |
3075 | src/osx/carbon/drawer.cpp | |
d23d3b70 | 3076 | src/osx/dataview_osx.cpp |
126b1df4 | 3077 | src/osx/carbon/dataview.cpp |
2ed52e2c | 3078 | src/osx/sound_osx.cpp |
126b1df4 SC |
3079 | src/osx/carbon/sound.cpp |
3080 | src/osx/carbon/taskbar.cpp | |
3081 | src/osx/core/hidjoystick.cpp | |
131f235d | 3082 | </set> |
2ea057f9 SC |
3083 | |
3084 | <set var="ADVANCED_OSX_CARBON_HDR" hints="files"> | |
773623f2 | 3085 | wx/generic/animate.h |
126b1df4 | 3086 | wx/osx/dataview.h |
6eec70b9 VZ |
3087 | wx/osx/dvrenderer.h |
3088 | wx/osx/dvrenderers.h | |
126b1df4 SC |
3089 | wx/osx/joystick.h |
3090 | wx/osx/sound.h | |
71b37ee6 | 3091 | wx/osx/taskbarosx.h |
126b1df4 SC |
3092 | wx/osx/carbon/drawer.h |
3093 | wx/osx/carbon/dataview.h | |
126b1df4 | 3094 | wx/osx/core/joystick.h |
131f235d VS |
3095 | </set> |
3096 | ||
2ea057f9 SC |
3097 | <set var="ADVANCED_OSX_COCOA_SRC" hints="files"> |
3098 | src/common/taskbarcmn.cpp | |
3099 | src/generic/animateg.cpp | |
fceac6bb VZ |
3100 | src/osx/datetimectrl_osx.cpp |
3101 | src/osx/datectrl_osx.cpp | |
2ed52e2c | 3102 | src/osx/sound_osx.cpp |
fceac6bb | 3103 | src/osx/timectrl_osx.cpp |
71b37ee6 | 3104 | src/osx/carbon/sound.cpp |
2ed52e2c | 3105 | src/osx/core/sound.cpp |
2ea057f9 | 3106 | src/osx/cocoa/aboutdlg.mm |
d23d3b70 | 3107 | src/osx/dataview_osx.cpp |
e86edab0 | 3108 | src/osx/cocoa/dataview.mm |
fceac6bb | 3109 | src/osx/cocoa/datetimectrl.mm |
01250f9b | 3110 | src/osx/cocoa/taskbar.mm |
2ea057f9 SC |
3111 | src/osx/core/hidjoystick.cpp |
3112 | </set> | |
3113 | ||
3114 | <set var="ADVANCED_OSX_COCOA_HDR" hints="files"> | |
3115 | wx/generic/animate.h | |
3116 | wx/osx/dataview.h | |
fceac6bb VZ |
3117 | wx/osx/datectrl.h |
3118 | wx/osx/datetimectrl.h | |
6eec70b9 VZ |
3119 | wx/osx/dvrenderer.h |
3120 | wx/osx/dvrenderers.h | |
2ea057f9 SC |
3121 | wx/osx/joystick.h |
3122 | wx/osx/sound.h | |
0b9dcf0a | 3123 | wx/osx/taskbarosx.h |
fceac6bb | 3124 | wx/osx/timectrl.h |
2ea057f9 | 3125 | wx/osx/core/joystick.h |
e86edab0 | 3126 | wx/osx/cocoa/dataview.h |
2ea057f9 SC |
3127 | </set> |
3128 | ||
80a12bd8 SC |
3129 | <set var="ADVANCED_OSX_IPHONE_SRC" hints="files"> |
3130 | src/generic/animateg.cpp | |
3131 | src/osx/sound_osx.cpp | |
3132 | src/osx/core/sound.cpp | |
3133 | </set> | |
3134 | ||
3135 | <set var="ADVANCED_OSX_IPHONE_HDR" hints="files"> | |
3136 | wx/generic/animate.h | |
3137 | wx/osx/sound.h | |
3138 | </set> | |
3139 | ||
f1d9e1ec DE |
3140 | <set var="ADVANCED_COCOA_SRC" hints="files"> |
3141 | src/cocoa/taskbar.mm | |
3142 | src/common/taskbarcmn.cpp | |
773623f2 | 3143 | src/generic/animateg.cpp |
126b1df4 | 3144 | src/osx/core/hidjoystick.cpp |
f1d9e1ec | 3145 | </set> |
2ea057f9 | 3146 | |
f1d9e1ec | 3147 | <set var="ADVANCED_COCOA_HDR" hints="files"> |
0ec6ec32 | 3148 | wx/cocoa/taskbar.h |
773623f2 | 3149 | wx/generic/animate.h |
126b1df4 | 3150 | wx/osx/core/joystick.h |
f1d9e1ec DE |
3151 | </set> |
3152 | ||
131f235d | 3153 | <set var="ADVANCED_OS2_SRC" hints="files"> |
773623f2 | 3154 | src/generic/animateg.cpp |
131f235d | 3155 | src/os2/joystick.cpp |
315ebf68 | 3156 | src/os2/sound.cpp |
131f235d VS |
3157 | </set> |
3158 | <set var="ADVANCED_OS2_HDR" hints="files"> | |
773623f2 | 3159 | wx/generic/animate.h |
131f235d | 3160 | wx/os2/joystick.h |
315ebf68 | 3161 | wx/os2/sound.h |
131f235d VS |
3162 | </set> |
3163 | ||
3164 | <set var="ADVANCED_UNIX_SRC" hints="files"> | |
3165 | src/common/taskbarcmn.cpp | |
3166 | src/unix/joystick.cpp | |
c79241a2 | 3167 | src/unix/sound.cpp |
131f235d | 3168 | src/unix/taskbarx11.cpp |
131f235d VS |
3169 | </set> |
3170 | <set var="ADVANCED_UNIX_HDR" hints="files"> | |
3171 | wx/unix/joystick.h | |
c79241a2 | 3172 | wx/unix/sound.h |
131f235d | 3173 | wx/unix/taskbarx11.h |
131f235d VS |
3174 | </set> |
3175 | ||
978c6e41 VZ |
3176 | <set var="ADVANCED_MOTIF_SRC" hints="files"> |
3177 | src/generic/animateg.cpp | |
3178 | </set> | |
3179 | ||
3180 | <set var="ADVANCED_MOTIF_HDR" hints="files"> | |
3181 | wx/generic/animate.h | |
3182 | </set> | |
3183 | ||
d48f13a1 VZ |
3184 | <set var="ADVANCED_GTK_WIN32_SRC" hints="files"> |
3185 | src/common/taskbarcmn.cpp | |
3186 | src/msw/joystick.cpp | |
3187 | src/msw/sound.cpp | |
3188 | </set> | |
3189 | <set var="ADVANCED_GTK_WIN32_HDR" hints="files"> | |
3190 | wx/msw/joystick.h | |
3191 | wx/msw/sound.h | |
3192 | wx/msw/taskbar.h | |
3193 | </set> | |
3dd30495 VZ |
3194 | <set var="ADVANCED_GTK_PLATFORM_SRC" hints="files"> |
3195 | <if cond="PLATFORM_UNIX=='1'">$(ADVANCED_UNIX_SRC)</if> | |
eff9d7f5 | 3196 | <if cond="PLATFORM_MACOSX=='1'">$(ADVANCED_UNIX_SRC)</if> |
d48f13a1 | 3197 | <if cond="PLATFORM_WIN32=='1'">$(ADVANCED_GTK_WIN32_SRC)</if> |
3dd30495 VZ |
3198 | </set> |
3199 | <set var="ADVANCED_GTK_PLATFORM_HDR" hints="files"> | |
3200 | <if cond="PLATFORM_UNIX=='1'">$(ADVANCED_UNIX_HDR)</if> | |
eff9d7f5 | 3201 | <if cond="PLATFORM_MACOSX=='1'">$(ADVANCED_UNIX_HDR)</if> |
d48f13a1 | 3202 | <if cond="PLATFORM_WIN32=='1'">$(ADVANCED_GTK_WIN32_HDR)</if> |
3dd30495 | 3203 | </set> |
33d4eef0 | 3204 | <set var="ADVANCED_GTK_SRC" hints="files"> |
3dd30495 | 3205 | $(ADVANCED_GTK_PLATFORM_SRC) |
5ed53483 | 3206 | src/gtk/notifmsg.cpp |
3746e527 | 3207 | src/gtk/taskbar.cpp |
9dc44eff PC |
3208 | </set> |
3209 | <set var="ADVANCED_GTK2_SRC" hints="files"> | |
3210 | $(ADVANCED_GTK_SRC) | |
3746e527 | 3211 | src/gtk/eggtrayicon.c |
e36a1739 | 3212 | src/gtk/hildon/notifmsg.cpp |
3746e527 VZ |
3213 | </set> |
3214 | <set var="ADVANCED_GTK_HDR" hints="files"> | |
3dd30495 | 3215 | $(ADVANCED_GTK_PLATFORM_HDR) |
5ed53483 | 3216 | wx/gtk/notifmsg.h |
a1c6f069 | 3217 | wx/gtk/taskbar.h |
3746e527 | 3218 | </set> |
9dc44eff PC |
3219 | <set var="ADVANCED_GTK2_HDR" hints="files"> |
3220 | $(ADVANCED_GTK_HDR) | |
3221 | wx/gtk/hildon/notifmsg.h | |
3222 | </set> | |
3746e527 VZ |
3223 | |
3224 | <set var="ADVANCED_GTK_NATIVE_SRC" hints="files"> | |
a11a0ead | 3225 | src/gtk/aboutdlg.cpp |
72045d57 | 3226 | src/gtk/animate.cpp |
e78c1d78 | 3227 | src/gtk/bmpcbox.cpp |
628e155d | 3228 | src/gtk/calctrl.cpp |
a78d8dd0 | 3229 | src/gtk/dataview.cpp |
c105dda0 | 3230 | src/gtk/hyperlink.cpp |
33d4eef0 | 3231 | </set> |
3746e527 | 3232 | <set var="ADVANCED_GTK_NATIVE_HDR" hints="files"> |
72045d57 | 3233 | wx/gtk/animate.h |
e78c1d78 | 3234 | wx/gtk/bmpcbox.h |
628e155d | 3235 | wx/gtk/calctrl.h |
3746e527 | 3236 | wx/gtk/dataview.h |
6eec70b9 VZ |
3237 | wx/gtk/dvrenderer.h |
3238 | wx/gtk/dvrenderers.h | |
c105dda0 | 3239 | wx/gtk/hyperlink.h |
72045d57 VZ |
3240 | </set> |
3241 | ||
8ff12d3d | 3242 | <set var="ADVANCED_GTK1_SRC" hints="files"> |
773623f2 | 3243 | src/generic/animateg.cpp |
554db692 PC |
3244 | src/gtk1/eggtrayicon.c |
3245 | src/gtk1/taskbar.cpp | |
3246 | </set> | |
3247 | <set var="ADVANCED_GTK1_HDR" hints="files"> | |
773623f2 | 3248 | wx/generic/animate.h |
8ff12d3d | 3249 | </set> |
33d4eef0 | 3250 | |
aa824453 | 3251 | <set var="ADVANCED_UNIV_SRC" hints="files"> |
d48f13a1 VZ |
3252 | <!-- |
3253 | Don't include src/generic/animateg.cpp many times in ADVANCED_SRC(WXUNIV=='1'). | |
3254 | This file is already included in [OSX_CARBON, OSX_COCOA, OSX_IPHONE, COCOA, PM, MOTIF] TOOLKITs | |
3255 | and TOOLKIT=='GTK' and TOOLKIT_VERSION==''. | |
3256 | --> | |
3257 | <if cond="TOOLKIT=='GTK' and TOOLKIT_VERSION=='2'"> | |
3258 | src/generic/animateg.cpp | |
3259 | </if> | |
3260 | <if cond="TOOLKIT=='MSW'"> | |
3261 | src/generic/animateg.cpp | |
3262 | </if> | |
3263 | <if cond="TOOLKIT=='WINCE'"> | |
3264 | src/generic/animateg.cpp | |
3265 | </if> | |
aa824453 VZ |
3266 | </set> |
3267 | <set var="ADVANCED_UNIV_HDR" hints="files"> | |
3268 | wx/generic/animate.h | |
3269 | </set> | |
3270 | ||
2ae3b602 RN |
3271 | <!-- ====================================================================== --> |
3272 | <!-- wxMedia --> | |
3273 | <!-- ====================================================================== --> | |
3274 | ||
3275 | <set var="MEDIA_CMN_SRC" hints="files"> | |
ff4aedc5 | 3276 | src/common/mediactrlcmn.cpp |
2ae3b602 RN |
3277 | </set> |
3278 | ||
3279 | <set var="MEDIA_CMN_HDR" hints="files"> | |
6a91f714 | 3280 | wx/mediactrl.h |
2ae3b602 RN |
3281 | </set> |
3282 | ||
3283 | <set var="MEDIA_MSW_SRC" hints="files"> | |
557002cf VZ |
3284 | src/msw/mediactrl_am.cpp |
3285 | src/msw/mediactrl_wmp10.cpp | |
c5ec19f4 | 3286 | src/msw/mediactrl_qt.cpp |
2ae3b602 RN |
3287 | </set> |
3288 | <set var="MEDIA_MSW_HDR" hints="files"> | |
2ae3b602 RN |
3289 | </set> |
3290 | <!-- not built on WindowsCE: --> | |
ca95ed8e | 3291 | <set var="MEDIA_MSW_DESKTOP_SRC" hints="files"> |
2ae3b602 | 3292 | </set> |
ca95ed8e | 3293 | <set var="MEDIA_MSW_DESKTOP_HDR" hints="files"> |
2ae3b602 RN |
3294 | </set> |
3295 | ||
2ea057f9 | 3296 | <set var="MEDIA_OSX_CARBON_SRC" hints="files"> |
126b1df4 | 3297 | src/osx/carbon/mediactrl.cpp |
2ae3b602 | 3298 | </set> |
2ea057f9 | 3299 | <set var="MEDIA_OSX_CARBON_HDR" hints="files"> |
2ae3b602 RN |
3300 | </set> |
3301 | ||
d2e6c141 | 3302 | <set var="MEDIA_OSX_COCOA_SRC" hints="files"> |
0a898d4c | 3303 | src/osx/cocoa/mediactrl.mm |
d2e6c141 KO |
3304 | </set> |
3305 | <set var="MEDIA_OSX_COCOA_HDR" hints="files"> | |
3306 | </set> | |
3307 | ||
80a12bd8 SC |
3308 | <set var="MEDIA_OSX_IPHONE_SRC" hints="files"> |
3309 | <!-- src/osx/iphone/mediactrl.mm --> | |
3310 | </set> | |
3311 | <set var="MEDIA_OSX_IPHONE_HDR" hints="files"> | |
3312 | </set> | |
3313 | ||
2ae3b602 | 3314 | <set var="MEDIA_COCOA_SRC" hints="files"> |
4fc81cbc | 3315 | src/cocoa/mediactrl.mm |
2ae3b602 RN |
3316 | </set> |
3317 | <set var="MEDIA_COCOA_HDR" hints="files"> | |
3318 | </set> | |
3319 | ||
3320 | <set var="MEDIA_OS2_SRC" hints="files"> | |
3321 | </set> | |
3322 | <set var="MEDIA_OS2_HDR" hints="files"> | |
3323 | </set> | |
3324 | ||
3325 | <set var="MEDIA_UNIX_SRC" hints="files"> | |
ddc90a8d | 3326 | src/unix/mediactrl.cpp |
2ae3b602 RN |
3327 | </set> |
3328 | <set var="MEDIA_UNIX_HDR" hints="files"> | |
3329 | </set> | |
3330 | ||
3331 | <set var="MEDIA_GTK_SRC" hints="files"> | |
3332 | </set> | |
3333 | ||
8ff12d3d MR |
3334 | <set var="MEDIA_GTK1_SRC" hints="files"> |
3335 | </set> | |
3336 | ||
ddf98968 VS |
3337 | <!-- ====================================================================== --> |
3338 | <!-- wxHTML --> | |
3339 | <!-- ====================================================================== --> | |
3340 | ||
36b72b47 VS |
3341 | <set var="HTML_SRC_PLATFORM"> |
3342 | <if cond="TOOLKIT=='MSW'"> | |
3343 | src/msw/helpbest.cpp | |
3344 | </if> | |
c839485c VS |
3345 | <if cond="PLATFORM_UNIX=='1'"> |
3346 | src/html/chm.cpp | |
3347 | </if> | |
3348 | <if cond="PLATFORM_MACOSX=='1'"> | |
3349 | src/html/chm.cpp | |
3350 | </if> | |
36b72b47 | 3351 | </set> |
22d2b5bf | 3352 | <set var="HTML_SRC" hints="files"> |
36b72b47 | 3353 | $(HTML_SRC_PLATFORM) |
5df6736f | 3354 | src/html/helpctrl.cpp |
ddf98968 | 3355 | src/html/helpdata.cpp |
3755cfa6 | 3356 | src/html/helpdlg.cpp |
ddf98968 | 3357 | src/html/helpfrm.cpp |
f3e156ef | 3358 | src/html/helpwnd.cpp |
ddf98968 VS |
3359 | src/html/htmlcell.cpp |
3360 | src/html/htmlfilt.cpp | |
3361 | src/html/htmlpars.cpp | |
3362 | src/html/htmltag.cpp | |
3363 | src/html/htmlwin.cpp | |
5df6736f VS |
3364 | src/html/htmprint.cpp |
3365 | src/html/m_dflist.cpp | |
ddf98968 VS |
3366 | src/html/m_fonts.cpp |
3367 | src/html/m_hline.cpp | |
3368 | src/html/m_image.cpp | |
3369 | src/html/m_layout.cpp | |
3370 | src/html/m_links.cpp | |
3371 | src/html/m_list.cpp | |
ddf98968 | 3372 | src/html/m_pre.cpp |
f68e16c5 | 3373 | src/html/m_span.cpp |
ddf98968 | 3374 | src/html/m_style.cpp |
5df6736f | 3375 | src/html/m_tables.cpp |
f68e16c5 | 3376 | src/html/styleparams.cpp |
5df6736f | 3377 | src/html/winpars.cpp |
a9035850 | 3378 | <!-- wxHTML users: --> |
a9035850 | 3379 | src/generic/htmllbox.cpp |
ddf98968 | 3380 | </set> |
ef53c340 VZ |
3381 | <set var="MSW_HTML_HDR" hints="files"> |
3382 | <if cond="TOOLKIT=='MSW'">wx/msw/helpbest.h</if> | |
3383 | </set> | |
22d2b5bf | 3384 | <set var="HTML_HDR" hints="files"> |
227a9855 VS |
3385 | wx/html/helpctrl.h |
3386 | wx/html/helpdata.h | |
f533e26f | 3387 | wx/html/helpdlg.h |
227a9855 | 3388 | wx/html/helpfrm.h |
f3e156ef | 3389 | wx/html/helpwnd.h |
227a9855 VS |
3390 | wx/html/htmlcell.h |
3391 | wx/html/htmldefs.h | |
3392 | wx/html/htmlfilt.h | |
3393 | wx/html/htmlpars.h | |
3394 | wx/html/htmlproc.h | |
3395 | wx/html/htmltag.h | |
3396 | wx/html/htmlwin.h | |
3397 | wx/html/htmprint.h | |
3398 | wx/html/m_templ.h | |
f68e16c5 | 3399 | wx/html/styleparams.h |
227a9855 | 3400 | wx/html/winpars.h |
5df6736f | 3401 | wx/wxhtml.h |
a9035850 | 3402 | <!-- wxHTML users: --> |
a9035850 | 3403 | wx/htmllbox.h |
ef53c340 | 3404 | $(MSW_HTML_HDR) |
ddf98968 | 3405 | </set> |
66d06c04 SL |
3406 | |
3407 | <!-- ====================================================================== --> | |
467d261e | 3408 | <!-- wxWEBVIEW --> |
66d06c04 SL |
3409 | <!-- ====================================================================== --> |
3410 | ||
467d261e | 3411 | <set var="WEBVIEW_SRC_PLATFORM"> |
8290e3cd | 3412 | <if cond="TOOLKIT=='MSW'">src/msw/webview_ie.cpp</if> |
0302691e | 3413 | <if cond="TOOLKIT=='GTK'">src/gtk/webview_webkit.cpp</if> |
8290e3cd | 3414 | <if cond="PLATFORM_MACOSX=='1'">src/osx/webview_webkit.mm</if> |
66d06c04 | 3415 | </set> |
467d261e SL |
3416 | <set var="WEBVIEW_SRC" hints="files"> |
3417 | $(WEBVIEW_SRC_PLATFORM) | |
66d06c04 | 3418 | src/common/webview.cpp |
9f72fa7c | 3419 | src/common/webviewarchivehandler.cpp |
0bfd90b3 | 3420 | src/common/webviewfshandler.cpp |
66d06c04 SL |
3421 | </set> |
3422 | ||
467d261e | 3423 | <set var="WEBVIEW_HDR_PLATFORM" hints="files"> |
eafdb19c | 3424 | <if cond="TOOLKIT=='MSW'"> |
6b366b99 | 3425 | wx/msw/webviewhistoryitem_ie.h |
eafdb19c | 3426 | wx/msw/webview_ie.h |
e52aec97 | 3427 | wx/msw/webview_missing.h |
eafdb19c | 3428 | </if> |
0302691e | 3429 | <if cond="TOOLKIT=='GTK'"> |
6b366b99 | 3430 | wx/gtk/webviewhistoryitem_webkit.h |
eafdb19c SL |
3431 | wx/gtk/webview_webkit.h |
3432 | </if> | |
3433 | <if cond="PLATFORM_MACOSX=='1'"> | |
6b366b99 | 3434 | wx/osx/webviewhistoryitem_webkit.h |
eafdb19c SL |
3435 | wx/osx/webview_webkit.h |
3436 | </if> | |
cfcf1d6e | 3437 | </set> |
467d261e SL |
3438 | <set var="WEBVIEW_HDR" hints="files"> |
3439 | $(WEBVIEW_HDR_PLATFORM) | |
cfcf1d6e | 3440 | wx/webview.h |
9f72fa7c | 3441 | wx/webviewarchivehandler.h |
0bfd90b3 | 3442 | wx/webviewfshandler.h |
cfcf1d6e | 3443 | </set> |
ddf98968 | 3444 | |
3849327b VS |
3445 | <!-- ====================================================================== --> |
3446 | <!-- wxXRC --> | |
3447 | <!-- ====================================================================== --> | |
3448 | ||
3449 | <set var="XRC_SRC" hints="files"> | |
9e29cd0a | 3450 | src/xrc/xh_animatctrl.cpp |
ae2047c3 | 3451 | src/xrc/xh_bannerwindow.cpp |
3849327b | 3452 | src/xrc/xh_bmp.cpp |
d1a3f566 VZ |
3453 | src/xrc/xh_bmpcbox.cpp |
3454 | src/xrc/xh_bmpbt.cpp | |
3849327b VS |
3455 | src/xrc/xh_bttn.cpp |
3456 | src/xrc/xh_cald.cpp | |
3457 | src/xrc/xh_chckb.cpp | |
3458 | src/xrc/xh_chckl.cpp | |
3459 | src/xrc/xh_choic.cpp | |
9aaf1192 | 3460 | src/xrc/xh_choicbk.cpp |
ec376c8f | 3461 | src/xrc/xh_clrpicker.cpp |
53cdd2c1 | 3462 | src/xrc/xh_cmdlinkbn.cpp |
912c3932 | 3463 | src/xrc/xh_collpane.cpp |
3849327b | 3464 | src/xrc/xh_combo.cpp |
fef4b46d | 3465 | src/xrc/xh_comboctrl.cpp |
310e47b3 | 3466 | src/xrc/xh_datectrl.cpp |
ec376c8f | 3467 | src/xrc/xh_dirpicker.cpp |
3849327b | 3468 | src/xrc/xh_dlg.cpp |
adcda299 | 3469 | src/xrc/xh_editlbox.cpp |
0d14e4f2 | 3470 | src/xrc/xh_filectrl.cpp |
ec376c8f VZ |
3471 | src/xrc/xh_filepicker.cpp |
3472 | src/xrc/xh_fontpicker.cpp | |
adcda299 | 3473 | src/xrc/xh_frame.cpp |
3849327b VS |
3474 | src/xrc/xh_gauge.cpp |
3475 | src/xrc/xh_gdctl.cpp | |
dbcca2fa | 3476 | src/xrc/xh_grid.cpp |
3849327b | 3477 | src/xrc/xh_html.cpp |
17e91437 | 3478 | src/xrc/xh_hyperlink.cpp |
3849327b | 3479 | src/xrc/xh_listb.cpp |
9aaf1192 | 3480 | src/xrc/xh_listbk.cpp |
3849327b | 3481 | src/xrc/xh_listc.cpp |
adcda299 | 3482 | src/xrc/xh_mdi.cpp |
3849327b VS |
3483 | src/xrc/xh_menu.cpp |
3484 | src/xrc/xh_notbk.cpp | |
582f07c2 | 3485 | src/xrc/xh_odcombo.cpp |
3849327b | 3486 | src/xrc/xh_panel.cpp |
aa1b2573 | 3487 | src/xrc/xh_propdlg.cpp |
3849327b VS |
3488 | src/xrc/xh_radbt.cpp |
3489 | src/xrc/xh_radbx.cpp | |
3490 | src/xrc/xh_scrol.cpp | |
3491 | src/xrc/xh_scwin.cpp | |
9ebb7cad | 3492 | src/xrc/xh_htmllbox.cpp |
3849327b VS |
3493 | src/xrc/xh_sizer.cpp |
3494 | src/xrc/xh_slidr.cpp | |
3495 | src/xrc/xh_spin.cpp | |
3496 | src/xrc/xh_split.cpp | |
c7db82dc | 3497 | src/xrc/xh_srchctrl.cpp |
3849327b VS |
3498 | src/xrc/xh_statbar.cpp |
3499 | src/xrc/xh_stbmp.cpp | |
3500 | src/xrc/xh_stbox.cpp | |
3501 | src/xrc/xh_stlin.cpp | |
3502 | src/xrc/xh_sttxt.cpp | |
3503 | src/xrc/xh_text.cpp | |
3504 | src/xrc/xh_tglbtn.cpp | |
6b9103c6 | 3505 | src/xrc/xh_timectrl.cpp |
3849327b | 3506 | src/xrc/xh_toolb.cpp |
4689441b | 3507 | src/xrc/xh_toolbk.cpp |
3849327b | 3508 | src/xrc/xh_tree.cpp |
eca15c0d | 3509 | src/xrc/xh_treebk.cpp |
3849327b VS |
3510 | src/xrc/xh_unkwn.cpp |
3511 | src/xrc/xh_wizrd.cpp | |
3512 | src/xrc/xmlres.cpp | |
aaa03125 | 3513 | src/xrc/xmladv.cpp |
3849327b VS |
3514 | src/xrc/xmlrsall.cpp |
3515 | </set> | |
3516 | <set var="XRC_HDR" hints="files"> | |
3517 | wx/xrc/xh_all.h | |
9e29cd0a | 3518 | wx/xrc/xh_animatctrl.h |
ae2047c3 | 3519 | wx/xrc/xh_bannerwindow.h |
3849327b VS |
3520 | wx/xrc/xh_bmpbt.h |
3521 | wx/xrc/xh_bmp.h | |
e17b6377 | 3522 | wx/xrc/xh_bmpcbox.h |
3849327b VS |
3523 | wx/xrc/xh_bttn.h |
3524 | wx/xrc/xh_cald.h | |
3525 | wx/xrc/xh_chckb.h | |
3526 | wx/xrc/xh_chckl.h | |
3527 | wx/xrc/xh_choic.h | |
9aaf1192 | 3528 | wx/xrc/xh_choicbk.h |
ec376c8f | 3529 | wx/xrc/xh_clrpicker.h |
53cdd2c1 | 3530 | wx/xrc/xh_cmdlinkbn.h |
912c3932 | 3531 | wx/xrc/xh_collpane.h |
3849327b | 3532 | wx/xrc/xh_combo.h |
fef4b46d | 3533 | wx/xrc/xh_comboctrl.h |
a2897d43 | 3534 | wx/xrc/xh_datectrl.h |
ec376c8f | 3535 | wx/xrc/xh_dirpicker.h |
3849327b | 3536 | wx/xrc/xh_dlg.h |
adcda299 | 3537 | wx/xrc/xh_editlbox.h |
0d14e4f2 | 3538 | wx/xrc/xh_filectrl.h |
ec376c8f VZ |
3539 | wx/xrc/xh_filepicker.h |
3540 | wx/xrc/xh_fontpicker.h | |
3849327b | 3541 | wx/xrc/xh_frame.h |
5a0348c4 | 3542 | wx/xrc/xh_mdi.h |
3849327b VS |
3543 | wx/xrc/xh_gauge.h |
3544 | wx/xrc/xh_gdctl.h | |
dbcca2fa | 3545 | wx/xrc/xh_grid.h |
3849327b | 3546 | wx/xrc/xh_html.h |
17e91437 | 3547 | wx/xrc/xh_hyperlink.h |
3849327b | 3548 | wx/xrc/xh_listb.h |
9aaf1192 | 3549 | wx/xrc/xh_listbk.h |
3849327b VS |
3550 | wx/xrc/xh_listc.h |
3551 | wx/xrc/xh_menu.h | |
3552 | wx/xrc/xh_notbk.h | |
582f07c2 | 3553 | wx/xrc/xh_odcombo.h |
3849327b | 3554 | wx/xrc/xh_panel.h |
aa1b2573 | 3555 | wx/xrc/xh_propdlg.h |
3849327b VS |
3556 | wx/xrc/xh_radbt.h |
3557 | wx/xrc/xh_radbx.h | |
3558 | wx/xrc/xh_scrol.h | |
3559 | wx/xrc/xh_scwin.h | |
9ebb7cad | 3560 | wx/xrc/xh_htmllbox.h |
3849327b VS |
3561 | wx/xrc/xh_sizer.h |
3562 | wx/xrc/xh_slidr.h | |
3563 | wx/xrc/xh_spin.h | |
3564 | wx/xrc/xh_split.h | |
c7db82dc | 3565 | wx/xrc/xh_srchctrl.h |
3849327b VS |
3566 | wx/xrc/xh_statbar.h |
3567 | wx/xrc/xh_stbmp.h | |
3568 | wx/xrc/xh_stbox.h | |
3569 | wx/xrc/xh_stlin.h | |
3570 | wx/xrc/xh_sttxt.h | |
3571 | wx/xrc/xh_text.h | |
3572 | wx/xrc/xh_tglbtn.h | |
6b9103c6 | 3573 | wx/xrc/xh_timectrl.h |
3849327b | 3574 | wx/xrc/xh_toolb.h |
4689441b | 3575 | wx/xrc/xh_toolbk.h |
3849327b | 3576 | wx/xrc/xh_tree.h |
b2aba331 | 3577 | wx/xrc/xh_treebk.h |
3849327b VS |
3578 | wx/xrc/xh_unkwn.h |
3579 | wx/xrc/xh_wizrd.h | |
3580 | wx/xrc/xmlres.h | |
3581 | </set> | |
3582 | ||
3583 | ||
3584 | ||
3585 | ||
a69544bf VS |
3586 | <!-- ====================================================================== --> |
3587 | <!-- XML classes --> | |
3588 | <!-- ====================================================================== --> | |
3589 | ||
22d2b5bf | 3590 | <set var="XML_SRC" hints="files"> |
a69544bf | 3591 | src/xml/xml.cpp |
e2412466 | 3592 | src/common/xtixml.cpp <!-- FIXME - temporary solution --> |
a69544bf | 3593 | </set> |
22d2b5bf | 3594 | <set var="XML_HDR" hints="files"> |
a69544bf | 3595 | wx/xml/xml.h |
e2412466 | 3596 | wx/xtixml.h <!-- FIXME - temporary solution --> |
a69544bf VS |
3597 | </set> |
3598 | ||
3599 | ||
4d264332 VS |
3600 | <!-- ====================================================================== --> |
3601 | <!-- OpenGL canvas --> | |
3602 | <!-- ====================================================================== --> | |
3603 | ||
dc3065a5 | 3604 | <set var="OPENGL_SRC_PLATFORM" hints="files"> |
2ea057f9 | 3605 | <if cond="TOOLKIT=='OSX_CARBON'">src/osx/carbon/glcanvas.cpp src/osx/glcanvas_osx.cpp</if> |
d2e6c141 | 3606 | <if cond="TOOLKIT=='OSX_COCOA'">src/osx/cocoa/glcanvas.mm src/osx/glcanvas_osx.cpp</if> |
b7e15982 | 3607 | <if cond="TOOLKIT=='OSX_IPHONE'">src/osx/iphone/glcanvas.mm src/osx/glcanvas_osx.cpp</if> |
bd2af428 | 3608 | <if cond="TOOLKIT=='COCOA'">src/cocoa/glcanvas.mm</if> |
d48f13a1 | 3609 | <if cond="TOOLKIT=='GTK' and TOOLKIT_VERSION=='3' and PLATFORM_WIN32=='0'"> |
9dc44eff PC |
3610 | src/unix/glx11.cpp |
3611 | src/gtk/glcanvas.cpp | |
3612 | </if> | |
498ace9e VZ |
3613 | <if cond="TOOLKIT=='GTK' and TOOLKIT_VERSION=='2'"> |
3614 | src/gtk/glcanvas.cpp | |
3615 | src/unix/glx11.cpp | |
3616 | </if> | |
3617 | <if cond="TOOLKIT=='GTK' and TOOLKIT_VERSION==''"> | |
3618 | src/gtk1/glcanvas.cpp | |
3619 | src/unix/glx11.cpp | |
3620 | </if> | |
4d264332 | 3621 | <if cond="TOOLKIT=='MSW'">src/msw/glcanvas.cpp</if> |
af594eca | 3622 | <if cond="TOOLKIT=='WINCE'">src/msw/glcanvas.cpp</if> |
498ace9e VZ |
3623 | <if cond="TOOLKIT=='MOTIF'">src/x11/glcanvas.cpp src/unix/glx11.cpp</if> |
3624 | <if cond="TOOLKIT=='X11'">src/x11/glcanvas.cpp src/unix/glx11.cpp</if> | |
96c1699d | 3625 | <if cond="TOOLKIT=='PM'">src/os2/glcanvas.cpp</if> |
4d264332 VS |
3626 | </set> |
3627 | ||
dc3065a5 VZ |
3628 | <set var="OPENGL_SRC" hints="files"> |
3629 | src/common/glcmn.cpp | |
3630 | $(OPENGL_SRC_PLATFORM) | |
3631 | </set> | |
3632 | ||
3633 | <set var="OPENGL_HDR_PLATFORM" hints="files"> | |
0b9dcf0a KO |
3634 | <if cond="TOOLKIT=='OSX_CARBON'">wx/osx/glcanvas.h</if> |
3635 | <if cond="TOOLKIT=='OSX_COCOA'">wx/osx/glcanvas.h</if> | |
bd2af428 | 3636 | <if cond="TOOLKIT=='COCOA'">wx/cocoa/glcanvas.h</if> |
9dc44eff PC |
3637 | <if cond="TOOLKIT=='GTK' and TOOLKIT_VERSION=='3'"> |
3638 | wx/gtk/glcanvas.h | |
3639 | wx/unix/glx11.h | |
3640 | </if> | |
498ace9e VZ |
3641 | <if cond="TOOLKIT=='GTK' and TOOLKIT_VERSION=='2'"> |
3642 | wx/gtk/glcanvas.h | |
3643 | wx/unix/glx11.h | |
3644 | </if> | |
3645 | <if cond="TOOLKIT=='GTK' and TOOLKIT_VERSION==''"> | |
3646 | wx/gtk1/glcanvas.h | |
3647 | wx/unix/glx11.h | |
3648 | </if> | |
4d264332 | 3649 | <if cond="TOOLKIT=='MSW'">wx/msw/glcanvas.h</if> |
af594eca | 3650 | <if cond="TOOLKIT=='WINCE'">wx/msw/glcanvas.h</if> |
498ace9e VZ |
3651 | <if cond="TOOLKIT=='MOTIF'">wx/x11/glcanvas.h wx/unix/glx11.h</if> |
3652 | <if cond="TOOLKIT=='X11'">wx/x11/glcanvas.h wx/unix/glx11.h</if> | |
4d264332 VS |
3653 | </set> |
3654 | ||
dc3065a5 VZ |
3655 | <set var="OPENGL_HDR" hints="files"> |
3656 | wx/glcanvas.h | |
3657 | $(OPENGL_HDR_PLATFORM) | |
3658 | </set> | |
ddf98968 VS |
3659 | |
3660 | ||
c79241a2 VS |
3661 | <!-- ====================================================================== --> |
3662 | <!-- Misc plugin sources: --> | |
3663 | <!-- ====================================================================== --> | |
3664 | ||
3665 | <set var="UNIX_SOUND_SRC_SDL" hints="files"> | |
3666 | src/unix/sound_sdl.cpp | |
3667 | </set> | |
bb41dcbe | 3668 | |
50acee04 JS |
3669 | <!-- ====================================================================== --> |
3670 | <!-- wxAUI --> | |
3671 | <!-- ====================================================================== --> | |
3672 | ||
069358b7 VZ |
3673 | <set var="AUI_GTK_SRC" hints="files"> |
3674 | <if cond="TOOLKIT=='GTK' and TOOLKIT_VERSION=='2'"> | |
3675 | src/aui/tabartgtk.cpp | |
3676 | </if> | |
3677 | </set> | |
3678 | <set var="AUI_GTK_HDR" hints="files"> | |
3679 | <if cond="TOOLKIT=='GTK' and TOOLKIT_VERSION=='2'"> | |
3680 | wx/aui/tabartgtk.h | |
3681 | </if> | |
3682 | </set> | |
50acee04 JS |
3683 | <set var="AUI_SRC" hints="files"> |
3684 | src/aui/framemanager.cpp | |
3685 | src/aui/dockart.cpp | |
3686 | src/aui/floatpane.cpp | |
96fc1039 | 3687 | src/aui/auibook.cpp |
c583dbe0 | 3688 | src/aui/auibar.cpp |
96fc1039 | 3689 | src/aui/tabmdi.cpp |
4758baf5 | 3690 | src/aui/tabart.cpp |
00b4e7c9 | 3691 | src/xrc/xh_auinotbk.cpp |
069358b7 | 3692 | $(AUI_GTK_SRC) |
50acee04 JS |
3693 | </set> |
3694 | <set var="AUI_HDR" hints="files"> | |
3695 | wx/aui/framemanager.h | |
3696 | wx/aui/dockart.h | |
3697 | wx/aui/floatpane.h | |
96fc1039 | 3698 | wx/aui/auibook.h |
c583dbe0 | 3699 | wx/aui/auibar.h |
96fc1039 | 3700 | wx/aui/tabmdi.h |
50acee04 | 3701 | wx/aui/aui.h |
4758baf5 | 3702 | wx/aui/tabart.h |
00b4e7c9 | 3703 | wx/xrc/xh_auinotbk.h |
069358b7 | 3704 | $(AUI_GTK_HDR) |
50acee04 JS |
3705 | </set> |
3706 | ||
3c3ead1d PC |
3707 | <!-- ====================================================================== --> |
3708 | <!-- wxRibbon --> | |
3709 | <!-- ====================================================================== --> | |
3710 | ||
3711 | <set var="RIBBON_SRC" hints="files"> | |
3712 | src/ribbon/art_internal.cpp | |
3713 | src/ribbon/art_msw.cpp | |
3714 | src/ribbon/art_aui.cpp | |
3715 | src/ribbon/bar.cpp | |
3716 | src/ribbon/buttonbar.cpp | |
3717 | src/ribbon/control.cpp | |
3718 | src/ribbon/gallery.cpp | |
3719 | src/ribbon/page.cpp | |
3720 | src/ribbon/panel.cpp | |
3721 | src/ribbon/toolbar.cpp | |
74a59798 | 3722 | src/xrc/xh_ribbon.cpp |
3c3ead1d PC |
3723 | </set> |
3724 | <set var="RIBBON_HDR" hints="files"> | |
3725 | wx/ribbon/art.h | |
3726 | wx/ribbon/art_internal.h | |
3727 | wx/ribbon/bar.h | |
3728 | wx/ribbon/buttonbar.h | |
3729 | wx/ribbon/control.h | |
3730 | wx/ribbon/gallery.h | |
3731 | wx/ribbon/page.h | |
3732 | wx/ribbon/panel.h | |
3733 | wx/ribbon/toolbar.h | |
74a59798 | 3734 | wx/xrc/xh_ribbon.h |
3c3ead1d PC |
3735 | </set> |
3736 | ||
1c4293cb VZ |
3737 | <!-- ====================================================================== --> |
3738 | <!-- wxPropertyGrid --> | |
3739 | <!-- ====================================================================== --> | |
3740 | ||
3741 | <set var="PROPGRID_SRC" hints="files"> | |
3742 | src/propgrid/advprops.cpp | |
3743 | src/propgrid/editors.cpp | |
3744 | src/propgrid/manager.cpp | |
3745 | src/propgrid/property.cpp | |
3746 | src/propgrid/propgrid.cpp | |
3747 | src/propgrid/propgridiface.cpp | |
3748 | src/propgrid/propgridpagestate.cpp | |
3749 | src/propgrid/props.cpp | |
3750 | </set> | |
3751 | <set var="PROPGRID_HDR" hints="files"> | |
3752 | wx/propgrid/advprops.h | |
3753 | wx/propgrid/editors.h | |
3754 | wx/propgrid/manager.h | |
3755 | wx/propgrid/property.h | |
3756 | wx/propgrid/propgrid.h | |
3757 | wx/propgrid/propgriddefs.h | |
3758 | wx/propgrid/propgridiface.h | |
3759 | wx/propgrid/propgridpagestate.h | |
3760 | wx/propgrid/props.h | |
3761 | </set> | |
3762 | ||
3b2cb431 JS |
3763 | <!-- ====================================================================== --> |
3764 | <!-- wxRichTextCtrl --> | |
3765 | <!-- ====================================================================== --> | |
3766 | ||
3767 | <set var="RICHTEXT_SRC" hints="files"> | |
3b2cb431 | 3768 | src/richtext/richtextbuffer.cpp |
b3c6dd3b | 3769 | src/richtext/richtextctrl.cpp |
cd5dc5e6 | 3770 | src/richtext/richtextformatdlg.cpp |
b3c6dd3b | 3771 | src/richtext/richtexthtml.cpp |
cdaed652 | 3772 | src/richtext/richtextimagedlg.cpp |
b3c6dd3b VZ |
3773 | src/richtext/richtextprint.cpp |
3774 | src/richtext/richtextstyledlg.cpp | |
3775 | src/richtext/richtextstyles.cpp | |
3776 | src/richtext/richtextsymboldlg.cpp | |
3777 | src/richtext/richtextxml.cpp | |
a3b9c43b | 3778 | src/xrc/xh_richtext.cpp |
3b2cb431 JS |
3779 | </set> |
3780 | <set var="RICHTEXT_HDR" hints="files"> | |
d476d854 JS |
3781 | wx/richtext/richtextbackgroundpage.h |
3782 | wx/richtext/richtextborderspage.h | |
3b2cb431 | 3783 | wx/richtext/richtextbuffer.h |
d476d854 | 3784 | wx/richtext/richtextbulletspage.h |
b3c6dd3b | 3785 | wx/richtext/richtextctrl.h |
d476d854 JS |
3786 | wx/richtext/richtextdialogpage.h |
3787 | wx/richtext/richtextfontpage.h | |
b3c6dd3b | 3788 | wx/richtext/richtextformatdlg.h |
ff202bcb | 3789 | wx/richtext/richtexthtml.h |
b3c6dd3b | 3790 | wx/richtext/richtextimagedlg.h |
d476d854 JS |
3791 | wx/richtext/richtextindentspage.h |
3792 | wx/richtext/richtextliststylepage.h | |
3793 | wx/richtext/richtextmarginspage.h | |
b3c6dd3b | 3794 | wx/richtext/richtextprint.h |
d476d854 | 3795 | wx/richtext/richtextsizepage.h |
b3c6dd3b | 3796 | wx/richtext/richtextstyledlg.h |
d476d854 | 3797 | wx/richtext/richtextstylepage.h |
3b2cb431 | 3798 | wx/richtext/richtextstyles.h |
cd5dc5e6 | 3799 | wx/richtext/richtextsymboldlg.h |
af71fb72 | 3800 | wx/richtext/richtexttabspage.h |
8c7f440c | 3801 | wx/richtext/richtextuicustomization.h |
b3c6dd3b | 3802 | wx/richtext/richtextxml.h |
a3b9c43b | 3803 | wx/xrc/xh_richtext.h |
3b2cb431 JS |
3804 | </set> |
3805 | ||
54429bb3 RD |
3806 | |
3807 | <!-- ====================================================================== --> | |
3808 | <!-- wxSTC --> | |
3809 | <!-- ====================================================================== --> | |
3810 | ||
3811 | <set var="STC_SRC" hints="files"> | |
3812 | src/stc/stc.cpp | |
3813 | src/stc/PlatWX.cpp | |
3814 | src/stc/ScintillaWX.cpp | |
3815 | </set> | |
3816 | ||
3817 | <set var="STC_HDR" hints="files"> | |
3818 | wx/stc/stc.h | |
3819 | </set> | |
3820 | ||
ddf98968 VS |
3821 | <!-- ====================================================================== --> |
3822 | <!-- Define sources for specific libraries: --> | |
3823 | <!-- ====================================================================== --> | |
3824 | ||
7c4728f6 VS |
3825 | <!-- wxBase files: --> |
3826 | ||
4aa75221 | 3827 | <!-- Nested if would be nicer, but this works --> |
7b860930 | 3828 | <!-- These are the files for PLATFORM_MACOSX --> |
2ea057f9 SC |
3829 | <set var="BASE_OSX_SRC" hints="files"> |
3830 | <if cond="TOOLKIT=='OSX_CARBON'">$(BASE_OSX_SHARED_SRC)</if> | |
3831 | <if cond="TOOLKIT=='OSX_COCOA'">$(BASE_OSX_SHARED_SRC)</if> | |
80a12bd8 | 3832 | <if cond="TOOLKIT=='OSX_IPHONE'">$(BASE_OSX_SHARED_SRC)</if> |
2ea057f9 SC |
3833 | <if cond="TOOLKIT=='COCOA'">$(BASE_OSX_NOTWXMAC_SRC)</if> |
3834 | <if cond="TOOLKIT=='GTK'">$(BASE_OSX_NOTWXMAC_SRC)</if> | |
3835 | <if cond="TOOLKIT=='X11'">$(BASE_OSX_NOTWXMAC_SRC)</if> | |
3836 | <if cond="TOOLKIT=='MOTIF'">$(BASE_OSX_NOTWXMAC_SRC)</if> | |
4aa75221 | 3837 | <!-- FIXME: TOOLKIT!='MAC' is what we really want --> |
9aaf1192 | 3838 | |
a30f955f VS |
3839 | <!-- FIXME: a hack because there are two wxBase versions on |
3840 | Mac; once fixed, this would no longer be needed --> | |
2ea057f9 | 3841 | <if cond="TOOLKIT==''">$(BASE_OSX_NOTWXMAC_SRC)</if> |
4aa75221 | 3842 | </set> |
22d2b5bf | 3843 | <set var="BASE_PLATFORM_SRC" hints="files"> |
ddf98968 | 3844 | <if cond="PLATFORM_UNIX=='1'">$(BASE_UNIX_SRC)</if> |
7b44c670 | 3845 | <if cond="PLATFORM_WIN32=='1'">$(BASE_WIN32_SRC) $(BASE_WINCE_SRC)</if> |
2ea057f9 | 3846 | <if cond="PLATFORM_MACOSX=='1'">$(BASE_OSX_SHARED_SRC)</if> |
96c1699d | 3847 | <if cond="PLATFORM_OS2=='1'">$(BASE_OS2_SRC)</if> |
83d8eb47 | 3848 | <if cond="PLATFORM_MSDOS=='1'">$(BASE_MSDOS_SRC)</if> |
ddf98968 | 3849 | </set> |
8b509749 | 3850 | <set var="BASE_AND_GUI_TOOLKIT_SRC" hints="files"> |
2ea057f9 SC |
3851 | <if cond="TOOLKIT=='OSX_CARBON'">$(BASE_AND_GUI_OSX_CARBON_SRC)</if> |
3852 | <if cond="TOOLKIT=='OSX_COCOA'">$(BASE_AND_GUI_OSX_COCOA_SRC)</if> | |
8b509749 | 3853 | </set> |
22d2b5bf | 3854 | <set var="BASE_AND_GUI_PLATFORM_SRC" hints="files"> |
e86e1522 | 3855 | <if cond="PLATFORM_WIN32=='1'">$(BASE_AND_GUI_WIN32_SRC)</if> |
83d8eb47 | 3856 | <if cond="PLATFORM_MSDOS=='1'">$(BASE_AND_GUI_MSDOS_SRC)</if> |
7b860930 DE |
3857 | <!-- At the moment, BASE_AND_GUI_TOOLKIT_SRC handles this --> |
3858 | <!-- if cond="PLATFORM_MACOS=='1'">$(BASE_AND_GUI_MAC_SRC)</if --> | |
e86e1522 | 3859 | </set> |
18647d11 DE |
3860 | |
3861 | <!-- Nested if would be nicer, but this works --> | |
3862 | <!-- These are the files for PLATFORM_MACOSX --> | |
2ea057f9 SC |
3863 | <set var="BASE_OSX_HDR" hints="files"> |
3864 | <if cond="TOOLKIT=='OSX_CARBON'">$(BASE_OSX_SHARED_HDR)</if> | |
3865 | <if cond="TOOLKIT=='OSX_COCOA'">$(BASE_OSX_SHARED_HDR)</if> | |
3866 | <if cond="TOOLKIT=='COCOA'">$(BASE_OSX_NOTWXMAC_HDR)</if> | |
3867 | <if cond="TOOLKIT=='GTK'">$(BASE_OSX_NOTWXMAC_HDR)</if> | |
3868 | <if cond="TOOLKIT=='X11'">$(BASE_OSX_NOTWXMAC_HDR)</if> | |
3869 | <if cond="TOOLKIT=='MOTIF'">$(BASE_OSX_NOTWXMAC_HDR)</if> | |
18647d11 DE |
3870 | <!-- FIXME: TOOLKIT!='MAC' is what we really want --> |
3871 | ||
3872 | <!-- FIXME: a hack because there are two wxBase versions on | |
3873 | Mac; once fixed, this would no longer be needed --> | |
2ea057f9 | 3874 | <if cond="TOOLKIT==''">$(BASE_OSX_NOTWXMAC_HDR)</if> |
18647d11 | 3875 | </set> |
22d2b5bf | 3876 | <set var="BASE_PLATFORM_HDR" hints="files"> |
45a74fec MW |
3877 | <if cond="PLATFORM_UNIX=='1'">$(BASE_UNIX_HDR)</if> |
3878 | <if cond="PLATFORM_WIN32=='1'">$(BASE_WIN32_HDR) $(BASE_WINCE_HDR)</if> | |
2ea057f9 | 3879 | <if cond="PLATFORM_MACOSX=='1'">$(BASE_OSX_HDR)</if> |
83d8eb47 | 3880 | <if cond="PLATFORM_MSDOS=='1'">$(BASE_MSDOS_HDR)</if> |
7e04a500 | 3881 | <if cond="PLATFORM_OS2=='1'">$(BASE_OS2_HDR)</if> |
ddf98968 | 3882 | </set> |
88f23fdd | 3883 | |
22d2b5bf | 3884 | <set var="BASE_SRC" hints="files"> |
ddf98968 VS |
3885 | $(BASE_CMN_SRC) $(BASE_PLATFORM_SRC) |
3886 | </set> | |
22d2b5bf | 3887 | <set var="BASE_AND_GUI_SRC" hints="files"> |
8b509749 VS |
3888 | $(BASE_AND_GUI_CMN_SRC) |
3889 | $(BASE_AND_GUI_PLATFORM_SRC) $(BASE_AND_GUI_TOOLKIT_SRC) | |
e86e1522 | 3890 | </set> |
21041c70 VS |
3891 | |
3892 | ||
7c4728f6 | 3893 | <!-- wxNet files: --> |
7c4728f6 VS |
3894 | <set var="NET_PLATFORM_SRC" hints="files"> |
3895 | <if cond="PLATFORM_UNIX=='1'">$(NET_UNIX_SRC)</if> | |
af594eca | 3896 | <if cond="PLATFORM_WIN32=='1'">$(NET_WIN32_SRC) $(NET_WINCE_SRC)</if> |
51fe4b60 | 3897 | <if cond="PLATFORM_MACOSX=='1'">$(NET_UNIX_SRC) $(NET_OSX_SRC)</if> |
96c1699d | 3898 | <if cond="PLATFORM_OS2=='1'">$(NET_OS2_SRC)</if> |
7c4728f6 | 3899 | </set> |
78c36934 VZ |
3900 | <set var="NET_PLATFORM_HDR" hints="files"> |
3901 | <if cond="PLATFORM_WIN32=='1'">$(NET_WIN32_HDR) $(NET_WINCE_HDR)</if> | |
3902 | </set> | |
3903 | ||
7c4728f6 VS |
3904 | <set var="NET_SRC" hints="files"> |
3905 | $(NET_CMN_SRC) $(NET_PLATFORM_SRC) | |
3906 | </set> | |
88f23fdd | 3907 | |
7c4728f6 VS |
3908 | |
3909 | <!-- GUI sources: --> | |
21041c70 | 3910 | |
22d2b5bf | 3911 | <set var="LOWLEVEL_SRC" hints="files"> |
9dc44eff | 3912 | <if cond="TOOLKIT=='GTK' and TOOLKIT_VERSION=='2'">$(GTK2_LOWLEVEL_SRC)</if> |
d48f13a1 | 3913 | <if cond="TOOLKIT=='GTK' and TOOLKIT_VERSION=='3'">$(GTK_LOWLEVEL_SRC)</if> |
601f1cfb | 3914 | <if cond="TOOLKIT=='GTK' and TOOLKIT_VERSION==''">$(GTK1_LOWLEVEL_SRC)</if> |
ddf98968 | 3915 | <if cond="TOOLKIT=='MOTIF'">$(MOTIF_LOWLEVEL_SRC)</if> |
ca95ed8e | 3916 | <if cond="TOOLKIT=='MSW'">$(MSW_LOWLEVEL_SRC) $(MSW_DESKTOP_LOWLEVEL_SRC)</if> |
af594eca | 3917 | <if cond="TOOLKIT=='WINCE'">$(MSW_LOWLEVEL_SRC)</if> |
2ea057f9 SC |
3918 | <if cond="TOOLKIT=='OSX_CARBON'">$(OSX_LOWLEVEL_SRC)</if> |
3919 | <if cond="TOOLKIT=='OSX_COCOA'">$(OSX_LOWLEVEL_SRC)</if> | |
80a12bd8 | 3920 | <if cond="TOOLKIT=='OSX_IPHONE'">$(OSX_LOWLEVEL_SRC)</if> |
ddf98968 | 3921 | <if cond="TOOLKIT=='COCOA'">$(COCOA_LOWLEVEL_SRC)</if> |
96c1699d | 3922 | <if cond="TOOLKIT=='PM'">$(OS2_LOWLEVEL_SRC)</if> |
ddf98968 | 3923 | <if cond="TOOLKIT=='X11'">$(X11_LOWLEVEL_SRC)</if> |
b3c86150 | 3924 | <if cond="TOOLKIT=='DFB'">$(DFB_LOWLEVEL_SRC)</if> |
ddf98968 | 3925 | </set> |
22d2b5bf | 3926 | <set var="LOWLEVEL_HDR" hints="files"> |
9dc44eff | 3927 | <if cond="TOOLKIT=='GTK' and TOOLKIT_VERSION=='3'">$(GTK_LOWLEVEL_HDR)</if> |
601f1cfb MW |
3928 | <if cond="TOOLKIT=='GTK' and TOOLKIT_VERSION=='2'">$(GTK_LOWLEVEL_HDR)</if> |
3929 | <if cond="TOOLKIT=='GTK' and TOOLKIT_VERSION==''">$(GTK1_LOWLEVEL_HDR)</if> | |
ddf98968 | 3930 | <if cond="TOOLKIT=='MOTIF'">$(MOTIF_LOWLEVEL_HDR)</if> |
23e42d9d | 3931 | <if cond="TOOLKIT=='MSW'">$(MSW_LOWLEVEL_HDR) $(MSW_DESKTOP_LOWLEVEL_HDR)</if> |
af594eca | 3932 | <if cond="TOOLKIT=='WINCE'">$(MSW_LOWLEVEL_HDR)</if> |
2ea057f9 SC |
3933 | <if cond="TOOLKIT=='OSX_CARBON'">$(OSX_LOWLEVEL_HDR)</if> |
3934 | <if cond="TOOLKIT=='OSX_COCOA'">$(OSX_LOWLEVEL_HDR)</if> | |
80a12bd8 | 3935 | <if cond="TOOLKIT=='OSX_IPHONE'">$(OSX_LOWLEVEL_HDR)</if> |
ddf98968 | 3936 | <if cond="TOOLKIT=='COCOA'">$(COCOA_LOWLEVEL_HDR)</if> |
96c1699d | 3937 | <if cond="TOOLKIT=='PM'">$(OS2_LOWLEVEL_HDR)</if> |
ddf98968 | 3938 | <if cond="TOOLKIT=='X11'">$(X11_LOWLEVEL_HDR)</if> |
b3c86150 | 3939 | <if cond="TOOLKIT=='DFB'">$(DFB_LOWLEVEL_HDR)</if> |
ddf98968 | 3940 | </set> |
21041c70 | 3941 | |
9d3845e8 VZ |
3942 | <set var="PLATFORM_SRC" hints="files"> |
3943 | <if cond="PLATFORM_UNIX=='1'">$(UNIX_SRC)</if> | |
a83ca5fb | 3944 | <if cond="PLATFORM_MACOSX=='1'">$(UNIX_SRC)</if> |
9d3845e8 VZ |
3945 | </set> |
3946 | ||
22d2b5bf | 3947 | <set var="GUI_SRC" hints="files"> |
efaad1f0 | 3948 | <if cond="TOOLKIT=='GTK' and TOOLKIT_VERSION=='2'">$(GTK2_SRC)</if> |
d48f13a1 | 3949 | <if cond="TOOLKIT=='GTK' and TOOLKIT_VERSION=='3'">$(GTK_SRC)</if> |
601f1cfb | 3950 | <if cond="TOOLKIT=='GTK' and TOOLKIT_VERSION==''">$(GTK1_SRC)</if> |
ddf98968 | 3951 | <if cond="TOOLKIT=='MOTIF'">$(MOTIF_SRC)</if> |
ca95ed8e | 3952 | <if cond="TOOLKIT=='MSW'">$(MSW_SRC) $(MSW_DESKTOP_SRC)</if> |
af594eca | 3953 | <if cond="TOOLKIT=='WINCE'">$(MSW_SRC) $(WINCE_SRC)</if> |
2ea057f9 SC |
3954 | <if cond="TOOLKIT=='OSX_CARBON'">$(OSX_CARBON_SRC)</if> |
3955 | <if cond="TOOLKIT=='OSX_COCOA'">$(OSX_COCOA_SRC)</if> | |
80a12bd8 | 3956 | <if cond="TOOLKIT=='OSX_IPHONE'">$(OSX_IPHONE_SRC)</if> |
ddf98968 | 3957 | <if cond="TOOLKIT=='COCOA'">$(COCOA_SRC)</if> |
96c1699d | 3958 | <if cond="TOOLKIT=='PM'">$(OS2_SRC)</if> |
ddf98968 | 3959 | </set> |
22d2b5bf | 3960 | <set var="GUI_HDR" hints="files"> |
efaad1f0 | 3961 | <if cond="TOOLKIT=='GTK' and TOOLKIT_VERSION=='2'">$(GTK2_HDR)</if> |
d48f13a1 | 3962 | <if cond="TOOLKIT=='GTK' and TOOLKIT_VERSION=='3'">$(GTK_HDR)</if> |
601f1cfb | 3963 | <if cond="TOOLKIT=='GTK' and TOOLKIT_VERSION==''">$(GTK1_HDR)</if> |
ddf98968 | 3964 | <if cond="TOOLKIT=='MOTIF'">$(MOTIF_HDR)</if> |
ca95ed8e | 3965 | <if cond="TOOLKIT=='MSW'">$(MSW_HDR) $(MSW_DESKTOP_HDR)</if> |
af594eca | 3966 | <if cond="TOOLKIT=='WINCE'">$(MSW_HDR) $(WINCE_HDR)</if> |
2ea057f9 SC |
3967 | <if cond="TOOLKIT=='OSX_CARBON'">$(OSX_SHARED_HDR) $(OSX_CARBON_HDR)</if> |
3968 | <if cond="TOOLKIT=='OSX_COCOA'">$(OSX_SHARED_HDR) $(OSX_COCOA_HDR)</if> | |
80a12bd8 | 3969 | <if cond="TOOLKIT=='OSX_IPHONE'">$(OSX_SHARED_HDR) $(OSX_IPHONE_HDR)</if> |
ddf98968 | 3970 | <if cond="TOOLKIT=='COCOA'">$(COCOA_HDR)</if> |
96c1699d | 3971 | <if cond="TOOLKIT=='PM'">$(OS2_HDR)</if> |
ddf98968 VS |
3972 | </set> |
3973 | ||
22d2b5bf | 3974 | <set var="CORE_SRC" hints="files"> |
ddf98968 | 3975 | <if cond="USE_GUI=='1' and WXUNIV=='0'"> |
9d3845e8 | 3976 | $(LOWLEVEL_SRC) $(PLATFORM_SRC) $(GUI_SRC) $(GUI_CMN_SRC) |
ddf98968 VS |
3977 | </if> |
3978 | <if cond="USE_GUI=='1' and WXUNIV=='1'"> | |
9d3845e8 | 3979 | $(LOWLEVEL_SRC) $(PLATFORM_SRC) $(UNIV_SRC) $(UNIV_THEMES_SRC) $(GUI_CMN_SRC) |
ddf98968 VS |
3980 | </if> |
3981 | </set> | |
21041c70 | 3982 | |
131f235d VS |
3983 | <!-- wxAdvanced files: --> |
3984 | <set var="ADVANCED_PLATFORM_SRC" hints="files"> | |
ca95ed8e | 3985 | <if cond="TOOLKIT=='MSW'">$(ADVANCED_MSW_SRC) $(ADVANCED_MSW_DESKTOP_SRC)</if> |
af594eca | 3986 | <if cond="TOOLKIT=='WINCE'">$(ADVANCED_MSW_SRC)</if> |
2ea057f9 SC |
3987 | <if cond="TOOLKIT=='OSX_CARBON'">$(ADVANCED_OSX_CARBON_SRC)</if> |
3988 | <if cond="TOOLKIT=='OSX_COCOA'">$(ADVANCED_OSX_COCOA_SRC)</if> | |
80a12bd8 | 3989 | <if cond="TOOLKIT=='OSX_IPHONE'">$(ADVANCED_OSX_IPHONE_SRC)</if> |
f1d9e1ec | 3990 | <if cond="TOOLKIT=='COCOA'">$(ADVANCED_COCOA_SRC)</if> |
978c6e41 | 3991 | <if cond="TOOLKIT=='MOTIF'">$(ADVANCED_UNIX_SRC) $(ADVANCED_MOTIF_SRC)</if> |
9dc44eff | 3992 | <if cond="TOOLKIT=='GTK' and TOOLKIT_VERSION=='2'">$(ADVANCED_GTK2_SRC)</if> |
d48f13a1 | 3993 | <if cond="TOOLKIT=='GTK' and TOOLKIT_VERSION=='3'">$(ADVANCED_GTK_SRC)</if> |
601f1cfb | 3994 | <if cond="TOOLKIT=='GTK' and TOOLKIT_VERSION==''">$(ADVANCED_UNIX_SRC) $(ADVANCED_GTK1_SRC)</if> |
38073aff | 3995 | <if cond="TOOLKIT=='X11'">$(ADVANCED_UNIX_SRC)</if> |
96c1699d | 3996 | <if cond="TOOLKIT=='PM'">$(ADVANCED_OS2_SRC)</if> |
131f235d VS |
3997 | </set> |
3998 | <set var="ADVANCED_PLATFORM_HDR" hints="files"> | |
ca95ed8e | 3999 | <if cond="TOOLKIT=='MSW'">$(ADVANCED_MSW_HDR) $(ADVANCED_MSW_DESKTOP_HDR)</if> |
af594eca | 4000 | <if cond="TOOLKIT=='WINCE'">$(ADVANCED_MSW_HDR)</if> |
2ea057f9 SC |
4001 | <if cond="TOOLKIT=='OSX_CARBON'">$(ADVANCED_OSX_CARBON_HDR)</if> |
4002 | <if cond="TOOLKIT=='OSX_COCOA'">$(ADVANCED_OSX_COCOA_HDR)</if> | |
80a12bd8 | 4003 | <if cond="TOOLKIT=='OSX_IPHONE'">$(ADVANCED_OSX_IPHONE_HDR)</if> |
f1d9e1ec | 4004 | <if cond="TOOLKIT=='COCOA'">$(ADVANCED_COCOA_HDR)</if> |
978c6e41 | 4005 | <if cond="TOOLKIT=='MOTIF'">$(ADVANCED_UNIX_HDR) $(ADVANCED_MOTIF_HDR)</if> |
9dc44eff | 4006 | <if cond="TOOLKIT=='GTK' and TOOLKIT_VERSION=='2'">$(ADVANCED_GTK2_HDR)</if> |
d48f13a1 | 4007 | <if cond="TOOLKIT=='GTK' and TOOLKIT_VERSION=='3'">$(ADVANCED_GTK_HDR)</if> |
554db692 | 4008 | <if cond="TOOLKIT=='GTK' and TOOLKIT_VERSION==''">$(ADVANCED_UNIX_HDR) $(ADVANCED_GTK1_HDR)</if> |
38073aff | 4009 | <if cond="TOOLKIT=='X11'">$(ADVANCED_UNIX_HDR)</if> |
96c1699d | 4010 | <if cond="TOOLKIT=='PM'">$(ADVANCED_OS2_HDR)</if> |
131f235d | 4011 | </set> |
ca95ed8e VZ |
4012 | |
4013 | <!-- wxAdv files not used by wxUniv --> | |
4014 | <set var="ADVANCED_PLATFORM_NATIVE_SRC" hints="files"> | |
3746e527 | 4015 | <if cond="TOOLKIT=='GTK' and TOOLKIT_VERSION=='2'">$(ADVANCED_GTK_NATIVE_SRC)</if> |
d48f13a1 | 4016 | <if cond="TOOLKIT=='GTK' and TOOLKIT_VERSION=='3'">$(ADVANCED_GTK_NATIVE_SRC)</if> |
ca95ed8e | 4017 | <if cond="TOOLKIT=='MSW'">$(ADVANCED_MSW_NATIVE_SRC)</if> |
f1cf7255 | 4018 | <if cond="TOOLKIT=='WINCE'">$(ADVANCED_MSW_NATIVE_SRC)</if> |
ca95ed8e VZ |
4019 | </set> |
4020 | <set var="ADVANCED_PLATFORM_NATIVE_HDR" hints="files"> | |
3746e527 | 4021 | <if cond="TOOLKIT=='GTK' and TOOLKIT_VERSION=='2'">$(ADVANCED_GTK_NATIVE_HDR)</if> |
d48f13a1 | 4022 | <if cond="TOOLKIT=='GTK' and TOOLKIT_VERSION=='3'">$(ADVANCED_GTK_NATIVE_HDR)</if> |
ca95ed8e | 4023 | <if cond="TOOLKIT=='MSW'">$(ADVANCED_MSW_NATIVE_HDR)</if> |
f1cf7255 | 4024 | <if cond="TOOLKIT=='WINCE'">$(ADVANCED_MSW_NATIVE_HDR)</if> |
ca95ed8e VZ |
4025 | </set> |
4026 | ||
4027 | <set var="ADVANCED_SRC" hints="files"> | |
4028 | <if cond="WXUNIV=='0'">$(ADVANCED_CMN_SRC) $(ADVANCED_PLATFORM_SRC) $(ADVANCED_PLATFORM_NATIVE_SRC)</if> | |
aa824453 | 4029 | <if cond="WXUNIV=='1'">$(ADVANCED_CMN_SRC) $(ADVANCED_PLATFORM_SRC) $(ADVANCED_UNIV_SRC)</if> |
ca95ed8e VZ |
4030 | </set> |
4031 | <set var="ADVANCED_HDR" hints="files"> | |
79d8e80f | 4032 | <if cond="WXUNIV=='0'">$(ADVANCED_CMN_HDR) $(ADVANCED_PLATFORM_HDR) $(ADVANCED_PLATFORM_NATIVE_HDR)</if> |
aa824453 | 4033 | <if cond="WXUNIV=='1'">$(ADVANCED_CMN_HDR) $(ADVANCED_PLATFORM_HDR) $(ADVANCED_UNIV_HDR)</if> |
ca95ed8e | 4034 | </set> |
131f235d | 4035 | |
2ae3b602 RN |
4036 | <!-- wxMedia files: --> |
4037 | <set var="MEDIA_PLATFORM_SRC" hints="files"> | |
ca95ed8e | 4038 | <if cond="TOOLKIT=='MSW'">$(MEDIA_MSW_SRC) $(MEDIA_MSW_DESKTOP_SRC)</if> |
2ae3b602 | 4039 | <if cond="TOOLKIT=='WINCE'">$(MEDIA_MSW_SRC)</if> |
2ea057f9 | 4040 | <if cond="TOOLKIT=='OSX_CARBON'">$(MEDIA_OSX_CARBON_SRC)</if> |
d2e6c141 | 4041 | <if cond="TOOLKIT=='OSX_COCOA'">$(MEDIA_OSX_COCOA_SRC)</if> |
80a12bd8 | 4042 | <if cond="TOOLKIT=='OSX_IPHONE'">$(MEDIA_OSX_IPHONE_SRC)</if> |
2ae3b602 RN |
4043 | <if cond="TOOLKIT=='COCOA'">$(MEDIA_COCOA_SRC)</if> |
4044 | <if cond="TOOLKIT=='MOTIF'">$(MEDIA_UNIX_SRC)</if> | |
4045 | <if cond="TOOLKIT=='GTK'">$(MEDIA_UNIX_SRC) $(MEDIA_GTK_SRC)</if> | |
4046 | <if cond="TOOLKIT=='X11'">$(MEDIA_UNIX_SRC)</if> | |
4047 | <if cond="TOOLKIT=='PM'">$(MEDIA_OS2_SRC)</if> | |
4048 | </set> | |
4049 | <set var="MEDIA_PLATFORM_HDR" hints="files"> | |
ca95ed8e | 4050 | <if cond="TOOLKIT=='MSW'">$(MEDIA_MSW_HDR) $(MEDIA_MSW_DESKTOP_HDR)</if> |
2ae3b602 | 4051 | <if cond="TOOLKIT=='WINCE'">$(MEDIA_MSW_HDR)</if> |
2ea057f9 | 4052 | <if cond="TOOLKIT=='OSX_CARBON'">$(MEDIA_OSX_CARBON_HDR)</if> |
80a12bd8 SC |
4053 | <if cond="TOOLKIT=='OSX_COCOA'">$(MEDIA_OSX_COCOA_HDR)</if> |
4054 | <if cond="TOOLKIT=='OSX_IPHONE'">$(MEDIA_OSX_IPHONE_HDR)</if> | |
2ae3b602 RN |
4055 | <if cond="TOOLKIT=='COCOA'">$(MEDIA_COCOA_HDR)</if> |
4056 | <if cond="TOOLKIT=='MOTIF'">$(MEDIA_UNIX_HDR)</if> | |
4057 | <if cond="TOOLKIT=='GTK'">$(MEDIA_UNIX_HDR)</if> | |
4058 | <if cond="TOOLKIT=='X11'">$(MEDIA_UNIX_HDR)</if> | |
4059 | <if cond="TOOLKIT=='PM'">$(MEDIA_OS2_HDR)</if> | |
4060 | </set> | |
4061 | <set var="MEDIA_SRC">$(MEDIA_CMN_SRC) $(MEDIA_PLATFORM_SRC)</set> | |
4062 | <set var="MEDIA_HDR">$(MEDIA_CMN_HDR) $(MEDIA_PLATFORM_HDR)</set> | |
ddf98968 | 4063 | |
4d264332 | 4064 | |
ca58c9bb VS |
4065 | <set var="GUI_CORE_HEADERS" hints="files"> |
4066 | <if cond="USE_GUI=='1' and WXUNIV=='0'">$(GUI_HDR)</if> | |
4067 | <if cond="USE_GUI=='1' and WXUNIV=='1'">$(UNIV_HDR)</if> | |
4068 | </set> | |
4069 | ||
22d2b5bf | 4070 | <set var="ALL_GUI_HEADERS" hints="files"> |
ca58c9bb VS |
4071 | <if cond="USE_GUI=='1'"> |
4072 | $(GUI_CMN_HDR) | |
4073 | $(LOWLEVEL_HDR) | |
4074 | $(GUI_CORE_HEADERS) | |
2ae3b602 | 4075 | $(ADVANCED_HDR) $(MEDIA_HDR) $(HTML_HDR) |
1c4293cb | 4076 | $(OPENGL_HDR) $(QA_HDR) $(XRC_HDR) $(AUI_HDR) $(PROPGRID_HDR) |
d8991cbf | 4077 | $(RIBBON_HDR) $(RICHTEXT_HDR) $(STC_HDR) $(WEBVIEW_HDR) |
4d264332 VS |
4078 | </if> |
4079 | </set> | |
21041c70 | 4080 | |
2b5e2b58 | 4081 | <!-- for 'make install', only the headers needed for the installed port --> |
2f5e790c | 4082 | <set var="ALL_BASE_HEADERS" make_var="1" hints="files"> |
ddf98968 | 4083 | $(BASE_CMN_HDR) $(BASE_PLATFORM_HDR) |
60913641 | 4084 | $(NET_CMN_HDR) |
1e6b2edf | 4085 | $(XML_HDR) |
2f5e790c MW |
4086 | </set> |
4087 | <set var="ALL_HEADERS" make_var="1" hints="files"> | |
4088 | $(ALL_BASE_HEADERS) $(ALL_GUI_HEADERS) | |
7affac1c VS |
4089 | </set> |
4090 | ||
2b5e2b58 MW |
4091 | |
4092 | <!-- used by 'make dist', should include wxBase headers for all ports --> | |
2f5e790c | 4093 | <set var="ALL_PORTS_BASE_HEADERS" make_var="1" hints="files"> |
2b5e2b58 MW |
4094 | $(BASE_CMN_HDR) |
4095 | $(BASE_UNIX_HDR) | |
4096 | $(BASE_WIN32_HDR) $(BASE_WINCE_HDR) | |
2ea057f9 | 4097 | $(BASE_OSX_HDR) |
2b5e2b58 MW |
4098 | $(BASE_MSDOS_HDR) |
4099 | $(NET_CMN_HDR) | |
1e6b2edf | 4100 | $(XML_HDR) |
ca58c9bb VS |
4101 | </set> |
4102 | ||
2b5e2b58 | 4103 | <!-- used by 'make dist', should include wxBase sources for all ports --> |
ca58c9bb VS |
4104 | <set var="ALL_BASE_SOURCES" make_var="1" hints="files"> |
4105 | $(BASE_CMN_SRC) | |
af594eca | 4106 | $(BASE_UNIX_SRC) $(BASE_WIN32_SRC) $(BASE_WINCE_SRC) |
2ea057f9 | 4107 | $(BASE_OSX_SRC) |
ca58c9bb | 4108 | $(BASE_OS2_SRC) |
83d8eb47 | 4109 | $(BASE_MSDOS_SRC) |
ca58c9bb | 4110 | $(BASE_AND_GUI_CMN_SRC) |
2ea057f9 SC |
4111 | $(BASE_AND_GUI_OSX_CARBON_SRC) |
4112 | $(BASE_AND_GUI_OSX_COCOA_SRC) | |
ca58c9bb | 4113 | $(BASE_AND_GUI_WIN32_SRC) |
51fe4b60 VZ |
4114 | $(NET_CMN_SRC) $(NET_UNIX_SRC) $(NET_OSX_SRC) |
4115 | $(NET_WIN32_SRC) $(NET_WINCE_SRC) | |
1e6b2edf | 4116 | $(XML_SRC) |
ddf98968 | 4117 | </set> |
f5e0b4bc WS |
4118 | |
4119 | ||
4120 | ||
c79241a2 VS |
4121 | <!-- ================================================================ --> |
4122 | <!-- Define where plugins sources go if USE_PLUGINS=0 --> | |
4123 | <!-- ================================================================ --> | |
4124 | ||
4125 | <!-- wxAdv sources --> | |
4126 | <set var="PLUGIN_ADV_SRC"> | |
4127 | <if cond="FORMAT=='autoconf' and PLATFORM_UNIX=='1' and USE_PLUGINS=='0'"> | |
4128 | $(UNIX_SOUND_SRC_SDL) | |
4129 | </if> | |
4130 | </set> | |
f5e0b4bc | 4131 | |
c79241a2 | 4132 | <set var="PLUGIN_MONOLIB_SRC">$(PLUGIN_ADV_SRC)</set> |
f5e0b4bc | 4133 | |
ddf98968 | 4134 | </makefile> |