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