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