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