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