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