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