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