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