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