]>
Commit | Line | Data |
---|---|---|
1 | <?xml version="1.0" ?> | |
2 | <!-- $Id$ --> | |
3 | <makefile> | |
4 | ||
5 | <!-- | |
6 | ||
7 | IMPORTANT: please read docs/tech/tn0016.txt before modifying this file! | |
8 | ||
9 | --> | |
10 | ||
11 | ||
12 | <!-- ====================================================================== | |
13 | FILES | |
14 | ||
15 | Files are listed in variables according to this scheme: | |
16 | * each group has _SRC and _HDR variable, for sources and headers | |
17 | respectively | |
18 | * file groups are: | |
19 | ||
20 | BASE_CMN common base files (all platforms) | |
21 | GUI_CMN common GUI files (all platforms) | |
22 | BASE_AND_GUI_CMN_SRC files that must be compiled both into GUI | |
23 | and base library (all platforms) | |
24 | ||
25 | BASE_$(platform) base files used on platform | |
26 | BASE_AND_GUI_$(platform)_SRC base & gui files used on platform | |
27 | ||
28 | $(port)LOWLEVEL low-level GUI classes | |
29 | $(port) high-level files for a port | |
30 | XWIN_LOWLEVEL low-level classes for X Window System | |
31 | ports (wxGTK, wxMotif, wxX11) | |
32 | ||
33 | HTML wxHTML files | |
34 | XRC wxXRC files | |
35 | ||
36 | * one file may be listed in several groups | |
37 | ||
38 | ====================================================================== --> | |
39 | ||
40 | ||
41 | ||
42 | <!-- ====================================================================== --> | |
43 | <!-- wxBase --> | |
44 | <!-- ====================================================================== --> | |
45 | ||
46 | <!-- =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- --> | |
47 | <!-- UNIX --> | |
48 | <!-- =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- --> | |
49 | <set var="BASE_UNIX_SRC" hints="files"> | |
50 | src/unix/baseunix.cpp | |
51 | src/unix/dir.cpp | |
52 | src/unix/mimetype.cpp | |
53 | src/unix/snglinst.cpp | |
54 | src/unix/stdpaths.cpp | |
55 | src/unix/threadpsx.cpp | |
56 | </set> | |
57 | <set var="BASE_AND_GUI_UNIX_SRC" hints="files"> | |
58 | src/unix/utilsunx.cpp | |
59 | </set> | |
60 | <set var="BASE_UNIX_HDR" hints="files"> | |
61 | wx/unix/apptbase.h | |
62 | wx/unix/apptrait.h | |
63 | wx/unix/execute.h | |
64 | wx/unix/mimetype.h | |
65 | wx/unix/pipe.h | |
66 | wx/unix/stdpaths.h | |
67 | </set> | |
68 | ||
69 | <!-- =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- --> | |
70 | <!-- Windows --> | |
71 | <!-- =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- --> | |
72 | <set var="BASE_WIN32_SRC" hints="files"> | |
73 | src/msw/basemsw.cpp | |
74 | src/msw/crashrpt.cpp | |
75 | src/msw/dde.cpp | |
76 | src/msw/dir.cpp | |
77 | src/msw/mimetype.cpp | |
78 | src/msw/regconf.cpp | |
79 | src/msw/registry.cpp | |
80 | src/msw/snglinst.cpp | |
81 | src/msw/stdpaths.cpp | |
82 | src/msw/thread.cpp | |
83 | src/msw/utils.cpp | |
84 | src/msw/utilsexc.cpp | |
85 | </set> | |
86 | <set var="BASE_AND_GUI_WIN32_SRC" hints="files"> | |
87 | src/msw/main.cpp | |
88 | src/msw/mslu.cpp | |
89 | src/msw/volume.cpp | |
90 | </set> | |
91 | <set var="BASE_WINCE_SRC" hints="files"> | |
92 | <if cond="TOOLKIT=='WINCE'">src/msw/wince/time.cpp</if> | |
93 | </set> | |
94 | <set var="BASE_WIN32_HDR" hints="files"> | |
95 | wx/msw/apptrait.h | |
96 | wx/msw/apptbase.h | |
97 | wx/msw/chkconf.h | |
98 | wx/msw/crashrpt.h | |
99 | wx/msw/dde.h | |
100 | wx/msw/gccpriv.h | |
101 | wx/msw/mimetype.h | |
102 | wx/msw/winundef.h | |
103 | wx/msw/wrapcctl.h | |
104 | wx/msw/wrapwin.h | |
105 | </set> | |
106 | <set var="BASE_WINCE_HDR" hints="files"> | |
107 | <if cond="TOOLKIT=='WINCE'">wx/msw/wince/time.h</if> | |
108 | </set> | |
109 | ||
110 | <!-- =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- --> | |
111 | <!-- Mac --> | |
112 | <!-- =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- --> | |
113 | ||
114 | <!-- Used on Mac OS CarbonLib, Mac OS X wxMac base, and Mac OS X darwin base --> | |
115 | <set var="BASE_COREFOUNDATION_SRC" hints="files"> | |
116 | src/mac/corefoundation/cfstring.cpp | |
117 | src/mac/corefoundation/stdpaths_cf.cpp | |
118 | </set> | |
119 | <set var="BASE_COREFOUNDATION_HDR" hints="files"> | |
120 | wx/mac/corefoundation/cfstring.h | |
121 | wx/mac/corefoundation/stdpaths.h | |
122 | </set> | |
123 | ||
124 | <!-- Base files used by Carbon on OS X and CarbonLib (not true Classic) --> | |
125 | <!-- FIXME: Maybe this ought to be named BASE_MAC_CARBON_SRC --> | |
126 | <set var="BASE_MAC_SRC" hints="files"> | |
127 | src/mac/carbon/dirmac.cpp | |
128 | src/mac/carbon/mimetmac.cpp | |
129 | src/mac/carbon/utilsexc.cpp | |
130 | src/mac/carbon/thread.cpp | |
131 | src/mac/carbon/macnotfy.cpp | |
132 | <!-- One would think MoreFilesX is only for OS X but it seems to | |
133 | apply to CarbonLib as well (FSRefMakeFSSpec) --> | |
134 | src/mac/carbon/morefilex/MoreFilesX.c | |
135 | $(BASE_COREFOUNDATION_SRC) | |
136 | </set> | |
137 | <set var="BASE_MAC_HDR" hints="files"> | |
138 | $(BASE_COREFOUNDATION_HDR) | |
139 | </set> | |
140 | <!-- Base and GUI files used by both OS X and CarbonLib --> | |
141 | <set var="BASE_AND_GUI_MAC_SRC" hints="files"> | |
142 | src/mac/carbon/utils.cpp | |
143 | src/mac/carbon/uma.cpp | |
144 | </set> | |
145 | ||
146 | <!-- Base files used by Classic (not CarbonLib or OS X builds) --> | |
147 | <!-- set var="BASE_MAC_CLASSIC_SRC"> | |
148 | </set --> | |
149 | <!-- set var="BASE_MAC_CLASSIC_HDR"> | |
150 | </set --> | |
151 | ||
152 | <!-- Base files used only by CarbonLib builds (not Classic or OS X) --> | |
153 | <set var="BASE_MAC_CARBONLIB_SRC" hints="files"> | |
154 | src/mac/carbon/morefile/DirectoryCopy.c | |
155 | src/mac/carbon/morefile/FSpCompat.c | |
156 | src/mac/carbon/morefile/FileCopy.c | |
157 | src/mac/carbon/morefile/FullPath.c | |
158 | src/mac/carbon/morefile/IterateDirectory.c | |
159 | src/mac/carbon/morefile/MoreDesktopMgr.c | |
160 | src/mac/carbon/morefile/MoreFiles.c | |
161 | src/mac/carbon/morefile/MoreFilesExtras.c | |
162 | src/mac/carbon/morefile/Search.c | |
163 | </set> | |
164 | <!-- set var="BASE_MAC_CARBONLIB_HDR" hints="files"> | |
165 | </set --> | |
166 | ||
167 | <!-- Base files used only by OS X builds (not CarbonLib or Classic) --> | |
168 | <set var="BASE_MAC_OSX_SRC" hints="files"> | |
169 | src/unix/baseunix.cpp | |
170 | src/unix/stdpaths.cpp | |
171 | </set> | |
172 | <set var="BASE_MAC_OSX_HDR" hints="files"> | |
173 | wx/unix/stdpaths.h | |
174 | </set> | |
175 | ||
176 | <!-- Base files used by non-wxMac OS X builds --> | |
177 | <set var="BASE_DARWIN_SRC" hints="files"> | |
178 | $(BASE_UNIX_SRC) | |
179 | $(BASE_COREFOUNDATION_SRC) | |
180 | </set> | |
181 | <set var="BASE_DARWIN_HDR" hints="files"> | |
182 | $(BASE_UNIX_HDR) | |
183 | $(BASE_COREFOUNDATION_HDR) | |
184 | </set> | |
185 | ||
186 | <!-- =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- --> | |
187 | <!-- OS/2 --> | |
188 | <!-- =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- --> | |
189 | <set var="BASE_OS2_SRC" hints="files"> | |
190 | src/os2/dir.cpp | |
191 | src/os2/mimetype.cpp | |
192 | src/os2/stdpaths.cpp | |
193 | src/os2/thread.cpp | |
194 | src/os2/utils.cpp | |
195 | src/os2/utilsexc.cpp | |
196 | </set> | |
197 | <set var="BASE_AND_GUI_OS2_SRC" hints="files"> | |
198 | </set> | |
199 | <set var="BASE_OS2_HDR" hints="files"> | |
200 | wx/os2/apptbase.h | |
201 | wx/os2/apptrait.h | |
202 | wx/os2/mimetype.h | |
203 | wx/os2/stdpaths.h | |
204 | </set> | |
205 | ||
206 | <!-- =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- --> | |
207 | <!-- Common --> | |
208 | <!-- =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- --> | |
209 | <set var="BASE_CMN_SRC" hints="files"> | |
210 | src/common/appbase.cpp | |
211 | src/common/clntdata.cpp | |
212 | src/common/cmdline.cpp | |
213 | src/common/config.cpp | |
214 | src/common/datetime.cpp | |
215 | src/common/datstrm.cpp | |
216 | src/common/dircmn.cpp | |
217 | src/common/dynarray.cpp | |
218 | src/common/dynlib.cpp | |
219 | src/common/dynload.cpp | |
220 | src/common/encconv.cpp | |
221 | src/common/extended.c | |
222 | src/common/ffile.cpp | |
223 | src/common/file.cpp | |
224 | src/common/fileconf.cpp | |
225 | src/common/filefn.cpp | |
226 | src/common/filename.cpp | |
227 | src/common/filesys.cpp | |
228 | src/common/fmapbase.cpp | |
229 | src/common/fs_zip.cpp | |
230 | src/common/hash.cpp | |
231 | src/common/hashmap.cpp | |
232 | src/common/init.cpp | |
233 | src/common/intl.cpp | |
234 | src/common/ipcbase.cpp | |
235 | src/common/list.cpp | |
236 | src/common/log.cpp | |
237 | src/common/longlong.cpp | |
238 | src/common/memory.cpp | |
239 | src/common/mimecmn.cpp | |
240 | src/common/module.cpp | |
241 | src/common/mstream.cpp | |
242 | src/common/object.cpp | |
243 | src/common/process.cpp | |
244 | src/common/regex.cpp | |
245 | src/common/stdpbase.cpp | |
246 | src/common/sstream.cpp | |
247 | src/common/stopwatch.cpp | |
248 | src/common/strconv.cpp | |
249 | src/common/stream.cpp | |
250 | src/common/string.cpp | |
251 | src/common/sysopt.cpp | |
252 | src/common/textbuf.cpp | |
253 | src/common/textfile.cpp | |
254 | src/common/tokenzr.cpp | |
255 | src/common/txtstrm.cpp | |
256 | src/common/archive.cpp | |
257 | src/common/uri.cpp | |
258 | src/common/variant.cpp | |
259 | src/common/wfstream.cpp | |
260 | src/common/wxchar.cpp | |
261 | src/common/xti.cpp | |
262 | src/common/xtistrm.cpp | |
263 | src/common/zipstrm.cpp | |
264 | src/common/zstream.cpp | |
265 | </set> | |
266 | <set var="BASE_AND_GUI_CMN_SRC" hints="files"> | |
267 | src/common/event.cpp | |
268 | src/common/fs_mem.cpp | |
269 | src/common/msgout.cpp | |
270 | src/common/utilscmn.cpp | |
271 | </set> | |
272 | <set var="BASE_CMN_HDR" hints="files"> | |
273 | wx/afterstd.h | |
274 | wx/app.h | |
275 | wx/apptrait.h | |
276 | wx/arrimpl.cpp | |
277 | wx/arrstr.h | |
278 | wx/beforestd.h | |
279 | wx/buffer.h | |
280 | wx/build.h | |
281 | wx/chkconf.h | |
282 | wx/clntdata.h | |
283 | wx/cmdline.h | |
284 | wx/confbase.h | |
285 | wx/config.h | |
286 | wx/containr.h | |
287 | wx/datetime.h | |
288 | wx/datetime.inl | |
289 | wx/datstrm.h | |
290 | wx/dde.h | |
291 | wx/debug.h | |
292 | wx/defs.h | |
293 | wx/dir.h | |
294 | wx/dlimpexp.h | |
295 | wx/dynarray.h | |
296 | wx/dynlib.h | |
297 | wx/dynload.h | |
298 | wx/encconv.h | |
299 | wx/event.h | |
300 | wx/except.h | |
301 | wx/features.h | |
302 | wx/ffile.h | |
303 | wx/file.h | |
304 | wx/fileconf.h | |
305 | wx/filefn.h | |
306 | wx/filename.h | |
307 | wx/filesys.h | |
308 | wx/fontenc.h | |
309 | wx/fontmap.h | |
310 | wx/fs_mem.h | |
311 | wx/fs_zip.h | |
312 | wx/hash.h | |
313 | wx/hashmap.h | |
314 | wx/hashset.h | |
315 | wx/iconloc.h | |
316 | wx/init.h | |
317 | wx/intl.h | |
318 | wx/iosfwrap.h | |
319 | wx/ioswrap.h | |
320 | wx/ipc.h | |
321 | wx/ipcbase.h | |
322 | wx/isql.h | |
323 | wx/isqlext.h | |
324 | wx/list.h | |
325 | wx/listimpl.cpp | |
326 | wx/log.h | |
327 | wx/longlong.h | |
328 | wx/math.h | |
329 | wx/memconf.h | |
330 | wx/memory.h | |
331 | wx/memtext.h | |
332 | wx/mimetype.h | |
333 | wx/module.h | |
334 | wx/msgout.h | |
335 | wx/msgout.h | |
336 | wx/mstream.h | |
337 | wx/object.h | |
338 | wx/platform.h | |
339 | wx/process.h | |
340 | wx/ptr_scpd.h | |
341 | wx/regex.h | |
342 | wx/scopeguard.h | |
343 | wx/snglinst.h | |
344 | wx/sstream.h | |
345 | wx/stack.h | |
346 | wx/stdpaths.h | |
347 | wx/stockitem.h | |
348 | wx/stopwatch.h | |
349 | wx/strconv.h | |
350 | wx/stream.h | |
351 | wx/string.h | |
352 | wx/sysopt.h | |
353 | wx/textbuf.h | |
354 | wx/textfile.h | |
355 | wx/thread.h | |
356 | wx/thrimpl.cpp | |
357 | wx/timer.h | |
358 | wx/tokenzr.h | |
359 | wx/txtstrm.h | |
360 | wx/types.h | |
361 | wx/uri.h | |
362 | wx/utils.h | |
363 | wx/variant.h | |
364 | wx/vector.h | |
365 | wx/version.h | |
366 | wx/volume.h | |
367 | wx/wfstream.h | |
368 | wx/wx.h | |
369 | wx/wxchar.h | |
370 | wx/wxprec.h | |
371 | wx/xti.h | |
372 | wx/xtistrm.h | |
373 | wx/zipstrm.h | |
374 | wx/zstream.h | |
375 | </set> | |
376 | ||
377 | ||
378 | <!-- ====================================================================== --> | |
379 | <!-- wxNet (part of wxBase) --> | |
380 | <!-- ====================================================================== --> | |
381 | ||
382 | <set var="NET_UNIX_SRC" hints="files"> | |
383 | src/unix/gsocket.cpp | |
384 | </set> | |
385 | <set var="NET_UNIX_HDR" hints="files"> | |
386 | wx/unix/gsockunx.h | |
387 | </set> | |
388 | ||
389 | <set var="NET_WIN32_SRC" hints="files"> | |
390 | src/msw/gsocket.cpp | |
391 | src/msw/urlmsw.cpp | |
392 | </set> | |
393 | <set var="NET_WIN32_HDR" hints="files"> | |
394 | wx/msw/gsockmsw.h | |
395 | </set> | |
396 | ||
397 | <set var="NET_WINCE_SRC" hints="files"> | |
398 | <if cond="TOOLKIT=='WINCE'">src/msw/wince/net.cpp</if> | |
399 | </set> | |
400 | <set var="NET_WINCE_HDR" hints="files"> | |
401 | <if cond="TOOLKIT=='WINCE'">wx/msw/wince/net.h</if> | |
402 | </set> | |
403 | ||
404 | <set var="NET_OS2_SRC" hints="files"> | |
405 | src/unix/gsocket.cpp | |
406 | </set> | |
407 | <set var="NET_OS2_HDR" hints="files"> | |
408 | wx/unix/gsockunx.h | |
409 | </set> | |
410 | <!-- Net files used only by CarbonLib (not Classic or OS X) --> | |
411 | <set var="NET_MAC_CARBONLIB_SRC" hints="files"> | |
412 | src/mac/carbon/gsocket.cpp | |
413 | </set> | |
414 | <set var="NET_MAC_CARBONLIB_HDR" hints="files"> | |
415 | wx/mac/carbon/gsockmac.h | |
416 | </set> | |
417 | ||
418 | <set var="NET_CMN_SRC" hints="files"> | |
419 | src/common/fs_inet.cpp | |
420 | src/common/ftp.cpp | |
421 | src/common/http.cpp | |
422 | src/common/protocol.cpp | |
423 | src/common/sckaddr.cpp | |
424 | src/common/sckfile.cpp | |
425 | src/common/sckipc.cpp | |
426 | src/common/sckstrm.cpp | |
427 | src/common/socket.cpp | |
428 | src/common/url.cpp | |
429 | </set> | |
430 | <set var="NET_CMN_HDR" hints="files"> | |
431 | wx/fs_inet.h | |
432 | wx/gsocket.h | |
433 | wx/protocol/file.h | |
434 | wx/protocol/ftp.h | |
435 | wx/protocol/http.h | |
436 | wx/protocol/protocol.h | |
437 | wx/sckaddr.h | |
438 | wx/sckipc.h | |
439 | wx/sckstrm.h | |
440 | wx/socket.h | |
441 | wx/url.h | |
442 | </set> | |
443 | ||
444 | ||
445 | ||
446 | <!-- ====================================================================== --> | |
447 | <!-- Common GUI files --> | |
448 | <!-- ====================================================================== --> | |
449 | ||
450 | <set var="GUI_CMN_SRC" hints="files"> | |
451 | src/common/accesscmn.cpp | |
452 | src/common/appcmn.cpp | |
453 | src/common/artprov.cpp | |
454 | src/common/artstd.cpp | |
455 | src/common/bmpbase.cpp | |
456 | src/common/bookctrl.cpp | |
457 | src/common/choiccmn.cpp | |
458 | src/common/clipcmn.cpp | |
459 | src/common/cmdproc.cpp | |
460 | src/common/cmndata.cpp | |
461 | src/common/containr.cpp | |
462 | src/common/cshelp.cpp | |
463 | src/common/ctrlcmn.cpp | |
464 | src/common/ctrlsub.cpp | |
465 | src/common/datacmn.cpp | |
466 | src/common/dcbase.cpp | |
467 | src/common/dlgcmn.cpp | |
468 | src/common/dndcmn.cpp | |
469 | src/common/dobjcmn.cpp | |
470 | src/common/docmdi.cpp | |
471 | src/common/docview.cpp | |
472 | src/common/dpycmn.cpp | |
473 | src/common/dseldlg.cpp | |
474 | src/common/effects.cpp | |
475 | src/common/fddlgcmn.cpp | |
476 | src/common/fldlgcmn.cpp | |
477 | src/common/fontcmn.cpp | |
478 | src/common/fontmap.cpp | |
479 | src/common/framecmn.cpp | |
480 | src/common/gaugecmn.cpp | |
481 | src/common/gbsizer.cpp | |
482 | src/common/gdicmn.cpp | |
483 | src/common/geometry.cpp | |
484 | src/common/gifdecod.cpp | |
485 | src/common/helpbase.cpp | |
486 | src/common/iconbndl.cpp | |
487 | src/common/imagall.cpp | |
488 | src/common/imagbmp.cpp | |
489 | src/common/image.cpp | |
490 | src/common/imagfill.cpp | |
491 | src/common/imaggif.cpp | |
492 | src/common/imagiff.cpp | |
493 | src/common/imagjpeg.cpp | |
494 | src/common/imagpcx.cpp | |
495 | src/common/imagpng.cpp | |
496 | src/common/imagpnm.cpp | |
497 | src/common/imagtiff.cpp | |
498 | src/common/imagxpm.cpp | |
499 | src/common/layout.cpp | |
500 | src/common/lboxcmn.cpp | |
501 | src/common/matrix.cpp | |
502 | src/common/menucmn.cpp | |
503 | src/common/nbkbase.cpp | |
504 | src/common/paper.cpp | |
505 | src/common/popupcmn.cpp | |
506 | src/common/prntbase.cpp | |
507 | src/common/quantize.cpp | |
508 | src/common/radiocmn.cpp | |
509 | src/common/rendcmn.cpp | |
510 | src/common/rgncmn.cpp | |
511 | src/common/settcmn.cpp | |
512 | src/common/sizer.cpp | |
513 | src/common/statbar.cpp | |
514 | src/common/stockitem.cpp | |
515 | src/common/tbarbase.cpp | |
516 | src/common/textcmn.cpp | |
517 | src/common/timercmn.cpp | |
518 | src/common/toplvcmn.cpp | |
519 | src/common/treebase.cpp | |
520 | src/common/valgen.cpp | |
521 | src/common/validate.cpp | |
522 | src/common/valtext.cpp | |
523 | src/common/wincmn.cpp | |
524 | src/common/xpmdecod.cpp | |
525 | src/generic/busyinfo.cpp | |
526 | src/generic/choicdgg.cpp | |
527 | src/generic/choicbkg.cpp | |
528 | src/generic/dcpsg.cpp | |
529 | src/generic/dirctrlg.cpp | |
530 | src/generic/dragimgg.cpp | |
531 | src/generic/listbkg.cpp | |
532 | src/generic/logg.cpp | |
533 | src/generic/numdlgg.cpp | |
534 | src/generic/panelg.cpp | |
535 | src/generic/progdlgg.cpp | |
536 | src/generic/printps.cpp | |
537 | src/generic/renderg.cpp | |
538 | src/generic/scrlwing.cpp | |
539 | src/generic/selstore.cpp | |
540 | src/generic/spinctlg.cpp | |
541 | src/generic/splitter.cpp | |
542 | src/generic/textdlgg.cpp | |
543 | src/generic/tipwin.cpp | |
544 | src/generic/treectlg.cpp | |
545 | src/generic/vlbox.cpp | |
546 | src/generic/vscroll.cpp | |
547 | </set> | |
548 | <set var="GUI_CMN_HDR" hints="files"> | |
549 | wx/bmpbuttn.h | |
550 | wx/brush.h | |
551 | wx/button.h | |
552 | wx/checkbox.h | |
553 | wx/checklst.h | |
554 | wx/choicdlg.h | |
555 | wx/choice.h | |
556 | wx/cmndata.h | |
557 | wx/combobox.h | |
558 | wx/control.h | |
559 | wx/ctrlsub.h | |
560 | wx/cursor.h | |
561 | wx/dc.h | |
562 | wx/dcclient.h | |
563 | wx/dcmemory.h | |
564 | wx/dcprint.h | |
565 | wx/dcscreen.h | |
566 | wx/dialog.h | |
567 | wx/dirdlg.h | |
568 | wx/dragimag.h | |
569 | wx/encinfo.h | |
570 | wx/filedlg.h | |
571 | wx/frame.h | |
572 | wx/gauge.h | |
573 | wx/gbsizer.h | |
574 | wx/gdicmn.h | |
575 | wx/generic/accel.h | |
576 | wx/generic/choicdgg.h | |
577 | wx/generic/colrdlgg.h | |
578 | wx/generic/dcpsg.h | |
579 | wx/generic/dirctrlg.h | |
580 | wx/generic/dragimgg.h | |
581 | wx/generic/filedlgg.h | |
582 | wx/generic/fontdlgg.h | |
583 | wx/generic/imaglist.h | |
584 | wx/generic/logg.h | |
585 | wx/generic/msgdlgg.h | |
586 | wx/generic/numdlgg.h | |
587 | wx/generic/notebook.h | |
588 | wx/generic/panelg.h | |
589 | wx/generic/prntdlgg.h | |
590 | wx/generic/printps.h | |
591 | wx/generic/progdlgg.h | |
592 | wx/generic/scrolwin.h | |
593 | wx/generic/spinctlg.h | |
594 | wx/generic/splitter.h | |
595 | wx/generic/textdlgg.h | |
596 | wx/generic/timer.h | |
597 | wx/generic/treectlg.h | |
598 | wx/helphtml.h | |
599 | wx/icon.h | |
600 | wx/layout.h | |
601 | wx/listbox.h | |
602 | wx/mdi.h | |
603 | wx/menu.h | |
604 | wx/msgdlg.h | |
605 | wx/numdlg.h | |
606 | wx/palette.h | |
607 | wx/panel.h | |
608 | wx/pen.h | |
609 | wx/radiobox.h | |
610 | wx/radiobut.h | |
611 | wx/renderer.h | |
612 | wx/scrolbar.h | |
613 | wx/scrolbar.h | |
614 | wx/scrolwin.h | |
615 | wx/selstore.h | |
616 | wx/settings.h | |
617 | wx/sizer.h | |
618 | wx/slider.h | |
619 | wx/statbmp.h | |
620 | wx/statbox.h | |
621 | wx/stattext.h | |
622 | wx/statusbr.h | |
623 | wx/textctrl.h | |
624 | wx/textdlg.h | |
625 | wx/toolbar.h | |
626 | wx/validate.h | |
627 | wx/valtext.h | |
628 | wx/window.h | |
629 | ||
630 | wx/accel.h | |
631 | wx/access.h | |
632 | wx/artprov.h | |
633 | wx/bitmap.h | |
634 | wx/bookctrl.h | |
635 | wx/busyinfo.h | |
636 | wx/caret.h | |
637 | wx/choicebk.h | |
638 | wx/clipbrd.h | |
639 | wx/cmdproc.h | |
640 | wx/colordlg.h | |
641 | wx/colour.h | |
642 | wx/cshelp.h | |
643 | wx/dataobj.h | |
644 | wx/dcmirror.h | |
645 | wx/dcps.h | |
646 | wx/dialup.h | |
647 | wx/dirctrl.h | |
648 | wx/display.h | |
649 | wx/dnd.h | |
650 | wx/docmdi.h | |
651 | wx/docview.h | |
652 | wx/effects.h | |
653 | wx/evtloop.h | |
654 | wx/fdrepdlg.h | |
655 | wx/fmappriv.h | |
656 | wx/font.h | |
657 | wx/fontdlg.h | |
658 | wx/fontenum.h | |
659 | wx/fontutil.h | |
660 | wx/gdiobj.h | |
661 | wx/geometry.h | |
662 | wx/gifdecod.h | |
663 | wx/glcanvas.h | |
664 | wx/help.h | |
665 | wx/helpbase.h | |
666 | wx/helpwin.h | |
667 | wx/iconbndl.h | |
668 | wx/imagbmp.h | |
669 | wx/image.h | |
670 | wx/imaggif.h | |
671 | wx/imagiff.h | |
672 | wx/imagjpeg.h | |
673 | wx/imaglist.h | |
674 | wx/imagpcx.h | |
675 | wx/imagpng.h | |
676 | wx/imagpnm.h | |
677 | wx/imagtiff.h | |
678 | wx/imagxpm.h | |
679 | wx/listbase.h | |
680 | wx/listbook.h | |
681 | wx/listctrl.h | |
682 | wx/matrix.h | |
683 | wx/menuitem.h | |
684 | wx/metafile.h | |
685 | wx/minifram.h | |
686 | wx/notebook.h | |
687 | wx/ownerdrw.h | |
688 | wx/paper.h | |
689 | wx/popupwin.h | |
690 | wx/print.h | |
691 | wx/printdlg.h | |
692 | wx/prntbase.h | |
693 | wx/progdlg.h | |
694 | wx/ptr_scpd.h | |
695 | wx/quantize.h | |
696 | wx/rawbmp.h | |
697 | wx/region.h | |
698 | wx/scopeguard.h | |
699 | wx/spinbutt.h | |
700 | wx/spinctrl.h | |
701 | wx/splitter.h | |
702 | wx/statline.h | |
703 | wx/tab.h | |
704 | wx/tabctrl.h | |
705 | wx/tbarbase.h | |
706 | wx/tglbtn.h | |
707 | wx/tipwin.h | |
708 | wx/tooltip.h | |
709 | wx/toplevel.h | |
710 | wx/treebase.h | |
711 | wx/treectrl.h | |
712 | wx/valgen.h | |
713 | wx/vidmode.h | |
714 | wx/vlbox.h | |
715 | wx/vms_x_fix.h | |
716 | wx/vscroll.h | |
717 | wx/xpmdecod.h | |
718 | wx/xpmhand.h | |
719 | </set> | |
720 | ||
721 | ||
722 | <!-- ====================================================================== --> | |
723 | <!-- Common X11 code: --> | |
724 | <!-- ====================================================================== --> | |
725 | ||
726 | <set var="XWIN_LOWLEVEL_SRC" hints="files"> | |
727 | src/generic/caret.cpp | |
728 | src/unix/dialup.cpp | |
729 | src/unix/fontenum.cpp | |
730 | src/unix/fontutil.cpp | |
731 | src/unix/utilsx11.cpp | |
732 | src/unix/displayx11.cpp | |
733 | </set> | |
734 | <set var="XWIN_LOWLEVEL_HDR" hints="files"> | |
735 | wx/generic/caret.h | |
736 | wx/unix/fontutil.h | |
737 | wx/unix/utilsx11.h | |
738 | wx/unix/displayx11.h | |
739 | </set> | |
740 | ||
741 | ||
742 | <!-- ====================================================================== --> | |
743 | <!-- wxGTK --> | |
744 | <!-- ====================================================================== --> | |
745 | ||
746 | <set var="GTK_LOWLEVEL_SRC" hints="files"> | |
747 | $(XWIN_LOWLEVEL_SRC) | |
748 | src/generic/paletteg.cpp | |
749 | src/gtk/app.cpp | |
750 | src/gtk/bitmap.cpp | |
751 | src/gtk/brush.cpp | |
752 | src/gtk/clipbrd.cpp | |
753 | src/gtk/colour.cpp | |
754 | src/gtk/cursor.cpp | |
755 | src/gtk/data.cpp | |
756 | src/gtk/dataobj.cpp | |
757 | src/gtk/dc.cpp | |
758 | src/gtk/dcclient.cpp | |
759 | src/gtk/dcmemory.cpp | |
760 | src/gtk/dcscreen.cpp | |
761 | src/gtk/dnd.cpp | |
762 | src/gtk/evtloop.cpp | |
763 | src/gtk/font.cpp | |
764 | src/gtk/gdiobj.cpp | |
765 | src/gtk/gsockgtk.cpp | |
766 | src/gtk/icon.cpp | |
767 | src/gtk/main.cpp | |
768 | src/gtk/minifram.cpp | |
769 | src/gtk/pen.cpp | |
770 | src/gtk/popupwin.cpp | |
771 | src/gtk/region.cpp | |
772 | src/gtk/renderer.cpp | |
773 | src/gtk/settings.cpp | |
774 | src/gtk/timer.cpp | |
775 | src/gtk/tooltip.cpp | |
776 | src/gtk/toplevel.cpp | |
777 | src/gtk/utilsgtk.cpp | |
778 | src/gtk/win_gtk.c | |
779 | src/gtk/window.cpp | |
780 | </set> | |
781 | <set var="GTK_LOWLEVEL_HDR" hints="files"> | |
782 | $(XWIN_LOWLEVEL_HDR) | |
783 | wx/generic/paletteg.h | |
784 | wx/gtk/app.h | |
785 | wx/gtk/bitmap.h | |
786 | wx/gtk/brush.h | |
787 | wx/gtk/clipbrd.h | |
788 | wx/gtk/colour.h | |
789 | wx/gtk/cursor.h | |
790 | wx/gtk/dataform.h | |
791 | wx/gtk/dataobj.h | |
792 | wx/gtk/dataobj2.h | |
793 | wx/gtk/dc.h | |
794 | wx/gtk/dcclient.h | |
795 | wx/gtk/dcmemory.h | |
796 | wx/gtk/dcscreen.h | |
797 | wx/gtk/dnd.h | |
798 | wx/gtk/font.h | |
799 | wx/gtk/gdiobj.h | |
800 | wx/gtk/icon.h | |
801 | wx/gtk/minifram.h | |
802 | wx/gtk/pen.h | |
803 | wx/gtk/popupwin.h | |
804 | wx/gtk/region.h | |
805 | wx/gtk/timer.h | |
806 | wx/gtk/tooltip.h | |
807 | wx/gtk/toplevel.h | |
808 | wx/gtk/win_gtk.h | |
809 | wx/gtk/window.h | |
810 | </set> | |
811 | <set var="GTK_SRC" hints="files"> | |
812 | <!-- Generic implementations used by wxGTK: --> | |
813 | src/generic/accel.cpp | |
814 | src/generic/colrdlgg.cpp | |
815 | src/generic/dirdlgg.cpp | |
816 | src/generic/fdrepdlg.cpp | |
817 | src/generic/filedlgg.cpp | |
818 | src/generic/imaglist.cpp | |
819 | src/generic/listctrl.cpp | |
820 | src/generic/msgdlgg.cpp | |
821 | src/generic/prntdlgg.cpp | |
822 | src/generic/statusbr.cpp | |
823 | src/generic/tabg.cpp | |
824 | <!-- Generic implementations used by wxGPE: --> | |
825 | src/generic/fontdlgg.cpp | |
826 | <!-- GTK+ specific files: --> | |
827 | src/gtk/artgtk.cpp | |
828 | src/gtk/bmpbuttn.cpp | |
829 | src/gtk/button.cpp | |
830 | src/gtk/checkbox.cpp | |
831 | src/gtk/checklst.cpp | |
832 | src/gtk/choice.cpp | |
833 | src/gtk/colordlg.cpp | |
834 | src/gtk/combobox.cpp | |
835 | src/gtk/control.cpp | |
836 | src/gtk/dialog.cpp | |
837 | src/gtk/fontdlg.cpp | |
838 | src/gtk/frame.cpp | |
839 | src/gtk/gauge.cpp | |
840 | src/gtk/listbox.cpp | |
841 | src/gtk/mdi.cpp | |
842 | src/gtk/menu.cpp | |
843 | src/gtk/msgdlg.cpp | |
844 | src/gtk/notebook.cpp | |
845 | src/gtk/radiobox.cpp | |
846 | src/gtk/radiobut.cpp | |
847 | src/gtk/scrolbar.cpp | |
848 | src/gtk/scrolwin.cpp | |
849 | src/gtk/slider.cpp | |
850 | src/gtk/spinbutt.cpp | |
851 | src/gtk/spinctrl.cpp | |
852 | src/gtk/statbmp.cpp | |
853 | src/gtk/statbox.cpp | |
854 | src/gtk/statline.cpp | |
855 | src/gtk/stattext.cpp | |
856 | src/gtk/tbargtk.cpp | |
857 | src/gtk/textctrl.cpp | |
858 | src/gtk/tglbtn.cpp | |
859 | src/gtk/utilsres.cpp | |
860 | </set> | |
861 | <set var="GTK_HDR" hints="files"> | |
862 | wx/generic/colrdlgg.h | |
863 | wx/generic/dirdlgg.h | |
864 | wx/generic/fdrepdlg.h | |
865 | wx/generic/listctrl.h | |
866 | wx/generic/statusbr.h | |
867 | wx/generic/tabg.h | |
868 | wx/gtk/accel.h | |
869 | wx/gtk/bmpbuttn.h | |
870 | wx/gtk/button.h | |
871 | wx/gtk/checkbox.h | |
872 | wx/gtk/checklst.h | |
873 | wx/gtk/colordlg.h | |
874 | wx/gtk/choice.h | |
875 | wx/gtk/combobox.h | |
876 | wx/gtk/control.h | |
877 | wx/gtk/dialog.h | |
878 | wx/gtk/filedlg.h | |
879 | wx/gtk/fontdlg.h | |
880 | wx/gtk/frame.h | |
881 | wx/gtk/gauge.h | |
882 | wx/gtk/listbox.h | |
883 | wx/gtk/mdi.h | |
884 | wx/gtk/menu.h | |
885 | wx/gtk/menuitem.h | |
886 | wx/gtk/msgdlg.h | |
887 | wx/gtk/notebook.h | |
888 | wx/gtk/radiobox.h | |
889 | wx/gtk/radiobut.h | |
890 | wx/gtk/scrolbar.h | |
891 | wx/gtk/scrolwin.h | |
892 | wx/gtk/slider.h | |
893 | wx/gtk/spinbutt.h | |
894 | wx/gtk/spinctrl.h | |
895 | wx/gtk/statbmp.h | |
896 | wx/gtk/statbox.h | |
897 | wx/gtk/statline.h | |
898 | wx/gtk/stattext.h | |
899 | wx/gtk/tbargtk.h | |
900 | wx/gtk/textctrl.h | |
901 | wx/gtk/tglbtn.h | |
902 | wx/gtk/treectrl.h | |
903 | </set> | |
904 | ||
905 | ||
906 | <!-- ====================================================================== --> | |
907 | <!-- wxMotif --> | |
908 | <!-- ====================================================================== --> | |
909 | ||
910 | <set var="MOTIF_LOWLEVEL_SRC" hints="files"> | |
911 | $(XWIN_LOWLEVEL_SRC) | |
912 | src/x11/bitmap.cpp | |
913 | src/x11/brush.cpp | |
914 | src/x11/pen.cpp | |
915 | src/x11/region.cpp | |
916 | src/x11/utilsx.cpp | |
917 | </set> | |
918 | <set var="MOTIF_LOWLEVEL_HDR" hints="files"> | |
919 | $(XWIN_LOWLEVEL_HDR) | |
920 | wx/x11/bitmap.h | |
921 | wx/x11/brush.h | |
922 | wx/x11/pen.h | |
923 | wx/x11/region.h | |
924 | </set> | |
925 | <set var="MOTIF_SRC" hints="files"> | |
926 | src/motif/accel.cpp | |
927 | src/motif/app.cpp | |
928 | src/motif/bmpbuttn.cpp | |
929 | src/motif/bmpmotif.cpp | |
930 | src/motif/button.cpp | |
931 | src/motif/checkbox.cpp | |
932 | src/motif/checklst.cpp | |
933 | src/motif/choice.cpp | |
934 | src/motif/clipbrd.cpp | |
935 | src/motif/colour.cpp | |
936 | src/motif/combobox.cpp | |
937 | src/motif/combobox_native.cpp | |
938 | src/motif/control.cpp | |
939 | src/motif/cursor.cpp | |
940 | src/motif/data.cpp | |
941 | src/motif/dataobj.cpp | |
942 | src/motif/dc.cpp | |
943 | src/motif/dcclient.cpp | |
944 | src/motif/dcmemory.cpp | |
945 | src/motif/dcscreen.cpp | |
946 | src/motif/dialog.cpp | |
947 | src/motif/evtloop.cpp | |
948 | src/motif/filedlg.cpp | |
949 | src/motif/font.cpp | |
950 | src/motif/frame.cpp | |
951 | src/motif/gauge.cpp | |
952 | src/motif/gdiobj.cpp | |
953 | src/motif/gsockmot.cpp | |
954 | src/motif/icon.cpp | |
955 | src/motif/listbox.cpp | |
956 | src/motif/main.cpp | |
957 | src/motif/mdi.cpp | |
958 | src/motif/menu.cpp | |
959 | src/motif/menuitem.cpp | |
960 | src/motif/minifram.cpp | |
961 | src/motif/msgdlg.cpp | |
962 | src/motif/palette.cpp | |
963 | src/motif/popupwin.cpp | |
964 | src/motif/radiobox.cpp | |
965 | src/motif/radiobut.cpp | |
966 | src/motif/scrolbar.cpp | |
967 | src/motif/settings.cpp | |
968 | src/motif/slider.cpp | |
969 | src/motif/spinbutt.cpp | |
970 | src/motif/statbmp.cpp | |
971 | src/motif/statbox.cpp | |
972 | src/motif/stattext.cpp | |
973 | src/motif/textctrl.cpp | |
974 | src/motif/timer.cpp | |
975 | src/motif/toolbar.cpp | |
976 | src/motif/toplevel.cpp | |
977 | src/motif/utils.cpp | |
978 | src/motif/window.cpp | |
979 | src/motif/xmcombo/xmcombo.c | |
980 | <!-- Generic files used by wxMotif: --> | |
981 | src/generic/colrdlgg.cpp | |
982 | src/generic/dirdlgg.cpp | |
983 | src/generic/fdrepdlg.cpp | |
984 | src/generic/fontdlgg.cpp | |
985 | src/generic/imaglist.cpp | |
986 | src/generic/listctrl.cpp | |
987 | src/generic/notebook.cpp | |
988 | src/generic/prntdlgg.cpp | |
989 | src/generic/statline.cpp | |
990 | src/generic/statusbr.cpp | |
991 | src/generic/tabg.cpp | |
992 | </set> | |
993 | <set var="MOTIF_HDR" hints="files"> | |
994 | wx/generic/colrdlgg.h | |
995 | wx/generic/dirdlgg.h | |
996 | wx/generic/fdrepdlg.h | |
997 | wx/generic/fontdlgg.h | |
998 | wx/generic/imaglist.h | |
999 | wx/generic/listctrl.h | |
1000 | wx/generic/notebook.h | |
1001 | wx/generic/prntdlgg.h | |
1002 | wx/generic/statline.h | |
1003 | wx/generic/statusbr.h | |
1004 | wx/generic/tabg.h | |
1005 | wx/motif/accel.h | |
1006 | wx/motif/app.h | |
1007 | wx/motif/bmpbuttn.h | |
1008 | wx/motif/bmpmotif.h | |
1009 | wx/motif/button.h | |
1010 | wx/motif/checkbox.h | |
1011 | wx/motif/checklst.h | |
1012 | wx/motif/choice.h | |
1013 | wx/motif/clipbrd.h | |
1014 | wx/motif/colour.h | |
1015 | wx/motif/combobox.h | |
1016 | wx/motif/control.h | |
1017 | wx/motif/cursor.h | |
1018 | wx/motif/dataform.h | |
1019 | wx/motif/dataobj.h | |
1020 | wx/motif/dataobj2.h | |
1021 | wx/motif/dc.h | |
1022 | wx/motif/dcclient.h | |
1023 | wx/motif/dcmemory.h | |
1024 | wx/motif/dcprint.h | |
1025 | wx/motif/dcscreen.h | |
1026 | wx/motif/dialog.h | |
1027 | wx/motif/dnd.h | |
1028 | wx/motif/filedlg.h | |
1029 | wx/motif/font.h | |
1030 | wx/motif/frame.h | |
1031 | wx/motif/gauge.h | |
1032 | wx/motif/gdiobj.h | |
1033 | wx/motif/icon.h | |
1034 | wx/motif/listbox.h | |
1035 | wx/motif/mdi.h | |
1036 | wx/motif/menu.h | |
1037 | wx/motif/menuitem.h | |
1038 | wx/motif/minifram.h | |
1039 | wx/motif/msgdlg.h | |
1040 | wx/motif/palette.h | |
1041 | wx/motif/popupwin.h | |
1042 | wx/motif/print.h | |
1043 | wx/motif/private.h | |
1044 | wx/motif/radiobox.h | |
1045 | wx/motif/radiobut.h | |
1046 | wx/motif/scrolbar.h | |
1047 | wx/motif/slider.h | |
1048 | wx/motif/spinbutt.h | |
1049 | wx/motif/statbmp.h | |
1050 | wx/motif/statbox.h | |
1051 | wx/motif/stattext.h | |
1052 | wx/motif/textctrl.h | |
1053 | wx/motif/tglbtn.h | |
1054 | wx/motif/timer.h | |
1055 | wx/motif/toolbar.h | |
1056 | wx/motif/toplevel.h | |
1057 | wx/motif/window.h | |
1058 | </set> | |
1059 | ||
1060 | ||
1061 | <!-- ====================================================================== --> | |
1062 | <!-- wxX11 --> | |
1063 | <!-- ====================================================================== --> | |
1064 | ||
1065 | ||
1066 | <set var="X11_LOWLEVEL_SRC" hints="files"> | |
1067 | $(XWIN_LOWLEVEL_SRC) | |
1068 | src/generic/timer.cpp | |
1069 | src/x11/app.cpp | |
1070 | src/x11/bitmap.cpp | |
1071 | src/x11/brush.cpp | |
1072 | src/x11/clipbrd.cpp | |
1073 | src/x11/colour.cpp | |
1074 | src/x11/cursor.cpp | |
1075 | src/x11/data.cpp | |
1076 | src/x11/dataobj.cpp | |
1077 | src/x11/dc.cpp | |
1078 | src/x11/dcclient.cpp | |
1079 | src/x11/dcmemory.cpp | |
1080 | src/x11/dcscreen.cpp | |
1081 | src/x11/evtloop.cpp | |
1082 | src/x11/font.cpp | |
1083 | src/x11/gdiobj.cpp | |
1084 | src/x11/gsockx11.cpp | |
1085 | src/x11/icon.cpp | |
1086 | src/x11/main.cpp | |
1087 | src/x11/minifram.cpp | |
1088 | src/x11/nanox.c | |
1089 | src/x11/palette.cpp | |
1090 | src/x11/pen.cpp | |
1091 | src/x11/popupwin.cpp | |
1092 | src/x11/region.cpp | |
1093 | src/x11/reparent.cpp | |
1094 | src/x11/settings.cpp | |
1095 | src/x11/toplevel.cpp | |
1096 | src/x11/utils.cpp | |
1097 | src/x11/utilsx.cpp | |
1098 | src/x11/window.cpp | |
1099 | </set> | |
1100 | <set var="X11_LOWLEVEL_HDR" hints="files"> | |
1101 | $(XWIN_LOWLEVEL_HDR) | |
1102 | wx/x11/app.h | |
1103 | wx/x11/bitmap.h | |
1104 | wx/x11/brush.h | |
1105 | wx/x11/clipbrd.h | |
1106 | wx/x11/colour.h | |
1107 | wx/x11/cursor.h | |
1108 | wx/x11/dataform.h | |
1109 | wx/x11/dataobj.h | |
1110 | wx/x11/dataobj2.h | |
1111 | wx/x11/dc.h | |
1112 | wx/x11/dcclient.h | |
1113 | wx/x11/dcmemory.h | |
1114 | wx/x11/dcprint.h | |
1115 | wx/x11/dcscreen.h | |
1116 | wx/x11/dnd.h | |
1117 | wx/x11/font.h | |
1118 | wx/x11/gdiobj.h | |
1119 | wx/x11/icon.h | |
1120 | wx/x11/minifram.h | |
1121 | wx/x11/palette.h | |
1122 | wx/x11/pen.h | |
1123 | wx/x11/popupwin.h | |
1124 | wx/x11/print.h | |
1125 | wx/x11/private.h | |
1126 | wx/x11/privx.h | |
1127 | wx/x11/region.h | |
1128 | wx/x11/reparent.h | |
1129 | wx/x11/textctrl.h | |
1130 | wx/x11/toplevel.h | |
1131 | wx/x11/window.h | |
1132 | </set> | |
1133 | ||
1134 | ||
1135 | ||
1136 | <!-- ====================================================================== --> | |
1137 | <!-- wxMSW --> | |
1138 | <!-- ====================================================================== --> | |
1139 | ||
1140 | <set var="MSW_LOWLEVEL_SRC" hints="files"> | |
1141 | src/msw/app.cpp | |
1142 | src/msw/bitmap.cpp | |
1143 | src/msw/brush.cpp | |
1144 | src/msw/caret.cpp | |
1145 | src/msw/clipbrd.cpp | |
1146 | src/msw/colour.cpp | |
1147 | src/msw/cursor.cpp | |
1148 | src/msw/data.cpp | |
1149 | src/msw/dc.cpp | |
1150 | src/msw/dcclient.cpp | |
1151 | src/msw/dcmemory.cpp | |
1152 | src/msw/dcprint.cpp | |
1153 | src/msw/dcscreen.cpp | |
1154 | src/msw/dialup.cpp | |
1155 | src/msw/dib.cpp | |
1156 | src/msw/display.cpp | |
1157 | src/msw/enhmeta.cpp | |
1158 | src/msw/evtloop.cpp | |
1159 | src/msw/font.cpp | |
1160 | src/msw/fontenum.cpp | |
1161 | src/msw/fontutil.cpp | |
1162 | src/msw/gdiimage.cpp | |
1163 | src/msw/gdiobj.cpp | |
1164 | src/msw/gsockmsw.cpp | |
1165 | src/msw/icon.cpp | |
1166 | src/msw/minifram.cpp | |
1167 | src/msw/ole/dataobj.cpp | |
1168 | src/msw/ole/dropsrc.cpp | |
1169 | src/msw/ole/droptgt.cpp | |
1170 | src/msw/ole/oleutils.cpp | |
1171 | src/msw/palette.cpp | |
1172 | src/msw/pen.cpp | |
1173 | src/msw/popupwin.cpp | |
1174 | src/msw/printdlg.cpp | |
1175 | src/msw/printwin.cpp | |
1176 | src/msw/region.cpp | |
1177 | src/msw/renderer.cpp | |
1178 | src/msw/settings.cpp | |
1179 | src/msw/timer.cpp | |
1180 | src/msw/tooltip.cpp | |
1181 | src/msw/toplevel.cpp | |
1182 | src/msw/utilsgui.cpp | |
1183 | src/msw/uxtheme.cpp | |
1184 | src/msw/window.cpp | |
1185 | </set> | |
1186 | <set var="MSW_LOWLEVEL_HDR" hints="files"> | |
1187 | </set> | |
1188 | ||
1189 | <set var="MSW_ONLY_LOWLEVEL_SRC" hints="files"> | |
1190 | src/msw/helpchm.cpp | |
1191 | src/msw/helpwin.cpp | |
1192 | src/msw/ole/automtn.cpp | |
1193 | src/msw/ole/uuid.cpp | |
1194 | </set> | |
1195 | ||
1196 | <set var="MSW_ONLY_LOWLEVEL_HDR" hints="files"> | |
1197 | wx/msw/helpchm.h | |
1198 | wx/msw/helpwin.h | |
1199 | </set> | |
1200 | ||
1201 | <set var="MSW_SRC" hints="files"> | |
1202 | src/generic/statusbr.cpp | |
1203 | src/generic/prntdlgg.cpp | |
1204 | src/msw/accel.cpp | |
1205 | src/msw/bmpbuttn.cpp | |
1206 | src/msw/button.cpp | |
1207 | src/msw/checkbox.cpp | |
1208 | src/msw/checklst.cpp | |
1209 | src/msw/choice.cpp | |
1210 | src/msw/colordlg.cpp | |
1211 | src/msw/combobox.cpp | |
1212 | src/msw/control.cpp | |
1213 | src/msw/dialog.cpp | |
1214 | src/msw/dirdlg.cpp | |
1215 | src/msw/dragimag.cpp | |
1216 | src/msw/filedlg.cpp | |
1217 | src/msw/frame.cpp | |
1218 | src/msw/gauge95.cpp | |
1219 | src/msw/imaglist.cpp | |
1220 | src/msw/iniconf.cpp | |
1221 | src/msw/listbox.cpp | |
1222 | src/msw/listctrl.cpp | |
1223 | src/msw/mdi.cpp | |
1224 | src/msw/menu.cpp | |
1225 | src/msw/menuitem.cpp | |
1226 | src/msw/metafile.cpp | |
1227 | src/msw/msgdlg.cpp | |
1228 | src/msw/nativdlg.cpp | |
1229 | src/msw/notebook.cpp | |
1230 | src/msw/ole/access.cpp | |
1231 | src/msw/ownerdrw.cpp | |
1232 | src/msw/radiobox.cpp | |
1233 | src/msw/radiobut.cpp | |
1234 | src/msw/scrolbar.cpp | |
1235 | src/msw/slider95.cpp | |
1236 | src/msw/spinbutt.cpp | |
1237 | src/msw/spinctrl.cpp | |
1238 | src/msw/statbmp.cpp | |
1239 | src/msw/statbox.cpp | |
1240 | src/msw/statbr95.cpp | |
1241 | src/msw/statline.cpp | |
1242 | src/msw/stattext.cpp | |
1243 | src/msw/tabctrl.cpp | |
1244 | src/msw/tbar95.cpp | |
1245 | src/msw/textctrl.cpp | |
1246 | src/msw/tglbtn.cpp | |
1247 | src/msw/treectrl.cpp | |
1248 | </set> | |
1249 | <set var="MSW_HDR" hints="files"> | |
1250 | wx/msw/accel.h | |
1251 | wx/msw/app.h | |
1252 | wx/msw/bitmap.h | |
1253 | wx/msw/bmpbuttn.h | |
1254 | wx/msw/brush.h | |
1255 | wx/msw/button.h | |
1256 | wx/msw/caret.h | |
1257 | wx/msw/checkbox.h | |
1258 | wx/msw/checklst.h | |
1259 | wx/msw/choice.h | |
1260 | wx/msw/clipbrd.h | |
1261 | wx/msw/colordlg.h | |
1262 | wx/msw/colour.h | |
1263 | wx/msw/combobox.h | |
1264 | wx/msw/control.h | |
1265 | wx/msw/cursor.h | |
1266 | wx/msw/dc.h | |
1267 | wx/msw/dcclient.h | |
1268 | wx/msw/dcmemory.h | |
1269 | wx/msw/dcprint.h | |
1270 | wx/msw/dcscreen.h | |
1271 | wx/msw/dialog.h | |
1272 | wx/msw/dib.h | |
1273 | wx/msw/dirdlg.h | |
1274 | wx/msw/dragimag.h | |
1275 | wx/msw/enhmeta.h | |
1276 | wx/msw/evtloop.h | |
1277 | wx/msw/filedlg.h | |
1278 | wx/msw/font.h | |
1279 | wx/msw/frame.h | |
1280 | wx/msw/gauge95.h | |
1281 | wx/msw/gdiimage.h | |
1282 | wx/msw/gdiobj.h | |
1283 | wx/msw/icon.h | |
1284 | wx/msw/imaglist.h | |
1285 | wx/msw/iniconf.h | |
1286 | wx/msw/listbox.h | |
1287 | wx/msw/listctrl.h | |
1288 | wx/msw/mdi.h | |
1289 | wx/msw/menu.h | |
1290 | wx/msw/menuitem.h | |
1291 | wx/msw/metafile.h | |
1292 | wx/msw/minifram.h | |
1293 | wx/msw/missing.h | |
1294 | wx/msw/msgdlg.h | |
1295 | wx/msw/mslu.h | |
1296 | wx/msw/msvcrt.h | |
1297 | wx/msw/notebook.h | |
1298 | wx/msw/ole/access.h | |
1299 | wx/msw/ole/dataform.h | |
1300 | wx/msw/ole/dataobj.h | |
1301 | wx/msw/ole/dataobj2.h | |
1302 | wx/msw/ole/dropsrc.h | |
1303 | wx/msw/ole/droptgt.h | |
1304 | wx/msw/ole/oleutils.h | |
1305 | wx/msw/palette.h | |
1306 | wx/msw/pen.h | |
1307 | wx/msw/printdlg.h | |
1308 | wx/msw/printwin.h | |
1309 | wx/msw/private.h | |
1310 | wx/msw/radiobox.h | |
1311 | wx/msw/radiobut.h | |
1312 | wx/msw/regconf.h | |
1313 | wx/msw/region.h | |
1314 | wx/msw/registry.h | |
1315 | wx/msw/scrolbar.h | |
1316 | wx/msw/setup0.h | |
1317 | wx/msw/slider95.h | |
1318 | wx/msw/slidrmsw.h | |
1319 | wx/msw/spinbutt.h | |
1320 | wx/msw/spinctrl.h | |
1321 | wx/msw/statbmp.h | |
1322 | wx/msw/statbox.h | |
1323 | wx/msw/statbr95.h | |
1324 | wx/msw/statline.h | |
1325 | wx/msw/stattext.h | |
1326 | wx/msw/tabctrl.h | |
1327 | wx/msw/tbar95.h | |
1328 | wx/msw/tbarmsw.h | |
1329 | wx/msw/textctrl.h | |
1330 | wx/msw/tglbtn.h | |
1331 | wx/msw/timer.h | |
1332 | wx/msw/tooltip.h | |
1333 | wx/msw/toplevel.h | |
1334 | wx/msw/treectrl.h | |
1335 | wx/msw/window.h | |
1336 | ||
1337 | <!-- Resources must be installed together with headers: --> | |
1338 | wx/msw/gnuwin32/winresrc.h | |
1339 | wx/msw/wx.manifest | |
1340 | wx/msw/wx.rc | |
1341 | <!-- bitmaps --> | |
1342 | wx/msw/colours.bmp | |
1343 | wx/msw/csquery.bmp | |
1344 | <!-- cursors --> | |
1345 | wx/msw/blank.cur | |
1346 | wx/msw/bullseye.cur | |
1347 | wx/msw/clock.cur | |
1348 | wx/msw/hand.cur | |
1349 | wx/msw/heart.cur | |
1350 | wx/msw/magnif1.cur | |
1351 | wx/msw/noentry.cur | |
1352 | wx/msw/pbrush.cur | |
1353 | wx/msw/pencil.cur | |
1354 | wx/msw/pntleft.cur | |
1355 | wx/msw/pntright.cur | |
1356 | wx/msw/query.cur | |
1357 | wx/msw/rightarr.cur | |
1358 | wx/msw/roller.cur | |
1359 | wx/msw/size.cur | |
1360 | wx/msw/watch1.cur | |
1361 | <!-- icons --> | |
1362 | wx/msw/cdrom.ico | |
1363 | wx/msw/child.ico | |
1364 | wx/msw/computer.ico | |
1365 | wx/msw/drive.ico | |
1366 | wx/msw/error.ico | |
1367 | wx/msw/file1.ico | |
1368 | wx/msw/floppy.ico | |
1369 | wx/msw/folder1.ico | |
1370 | wx/msw/folder2.ico | |
1371 | wx/msw/info.ico | |
1372 | wx/msw/mdi.ico | |
1373 | wx/msw/question.ico | |
1374 | wx/msw/removble.ico | |
1375 | wx/msw/std.ico | |
1376 | wx/msw/warning.ico | |
1377 | </set> | |
1378 | ||
1379 | <!-- Files used only by desktop MSW port, but *not* WindowsCE one: --> | |
1380 | <set var="MSW_ONLY_SRC" hints="files"> | |
1381 | src/msw/fdrepdlg.cpp | |
1382 | src/msw/fontdlg.cpp | |
1383 | </set> | |
1384 | <set var="MSW_ONLY_HDR" hints="files"> | |
1385 | wx/msw/fdrepdlg.h | |
1386 | wx/msw/fontdlg.h | |
1387 | wx/msw/helpbest.h | |
1388 | wx/msw/ole/automtn.h | |
1389 | wx/msw/ole/uuid.h | |
1390 | </set> | |
1391 | ||
1392 | <!-- Files used by WindowsCE port but not by desktop MSW port: --> | |
1393 | <set var="WINCE_SRC" hints="files"> | |
1394 | src/generic/dirdlgg.cpp | |
1395 | src/generic/fdrepdlg.cpp | |
1396 | src/generic/fontdlgg.cpp | |
1397 | src/msw/wince/choicece.cpp | |
1398 | src/msw/wince/crt.cpp | |
1399 | src/msw/wince/filedlgwce.cpp | |
1400 | src/msw/wince/filefnwce.cpp | |
1401 | src/msw/wince/helpwce.cpp | |
1402 | src/msw/wince/menuce.cpp | |
1403 | src/msw/wince/tbarwce.cpp | |
1404 | src/msw/wince/textctrlce.cpp | |
1405 | </set> | |
1406 | <set var="WINCE_HDR" hints="files"> | |
1407 | wx/generic/fdrepdlg.h | |
1408 | wx/generic/fontdlgg.h | |
1409 | wx/msw/wince/choicece.h | |
1410 | wx/msw/wince/helpwce.h | |
1411 | wx/msw/wince/libraries.h | |
1412 | wx/msw/wince/missing.h | |
1413 | wx/msw/wince/tbarwce.h | |
1414 | wx/msw/wince/textctrlce.h | |
1415 | wx/msw/wince/resources.h | |
1416 | </set> | |
1417 | ||
1418 | ||
1419 | <!-- ====================================================================== --> | |
1420 | <!-- wxMGL --> | |
1421 | <!-- ====================================================================== --> | |
1422 | ||
1423 | <set var="MGL_LOWLEVEL_SRC" hints="files"> | |
1424 | src/generic/caret.cpp | |
1425 | src/generic/timer.cpp | |
1426 | src/mgl/app.cpp | |
1427 | src/mgl/bitmap.cpp | |
1428 | src/mgl/brush.cpp | |
1429 | src/mgl/clipbrd.cpp | |
1430 | src/mgl/colour.cpp | |
1431 | src/mgl/cursor.cpp | |
1432 | src/mgl/data.cpp | |
1433 | src/mgl/dc.cpp | |
1434 | src/mgl/dcclient.cpp | |
1435 | src/mgl/dcmemory.cpp | |
1436 | src/mgl/dcscreen.cpp | |
1437 | src/mgl/dirmgl.cpp | |
1438 | src/mgl/evtloop.cpp | |
1439 | src/mgl/font.cpp | |
1440 | src/mgl/fontenum.cpp | |
1441 | src/mgl/fontutil.cpp | |
1442 | src/mgl/gdiobj.cpp | |
1443 | src/mgl/icon.cpp | |
1444 | src/mgl/palette.cpp | |
1445 | src/mgl/pen.cpp | |
1446 | src/mgl/region.cpp | |
1447 | src/mgl/settings.cpp | |
1448 | src/mgl/toplevel.cpp | |
1449 | src/mgl/utils.cpp | |
1450 | src/mgl/window.cpp | |
1451 | </set> | |
1452 | <set var="MGL_LOWLEVEL_HDR" hints="files"> | |
1453 | wx/generic/caret.h | |
1454 | wx/generic/timer.h | |
1455 | wx/mgl/app.h | |
1456 | wx/mgl/bitmap.h | |
1457 | wx/mgl/brush.h | |
1458 | wx/mgl/clipbrd.h | |
1459 | wx/mgl/colour.h | |
1460 | wx/mgl/cursor.h | |
1461 | wx/mgl/dc.h | |
1462 | wx/mgl/dcclient.h | |
1463 | wx/mgl/dcmemory.h | |
1464 | wx/mgl/dcscreen.h | |
1465 | wx/mgl/font.h | |
1466 | wx/mgl/fontutil.h | |
1467 | wx/mgl/gdiobj.h | |
1468 | wx/mgl/icon.h | |
1469 | wx/mgl/palette.h | |
1470 | wx/mgl/pen.h | |
1471 | wx/mgl/popupwin.h | |
1472 | wx/mgl/private.h | |
1473 | wx/mgl/region.h | |
1474 | wx/mgl/toplevel.h | |
1475 | wx/mgl/window.h | |
1476 | </set> | |
1477 | ||
1478 | ||
1479 | <!-- ====================================================================== --> | |
1480 | <!-- wxOS/2 --> | |
1481 | <!-- ====================================================================== --> | |
1482 | ||
1483 | <set var="OS2_LOWLEVEL_SRC" hints="files"> | |
1484 | </set> | |
1485 | <set var="OS2_LOWLEVEL_HDR" hints="files"> | |
1486 | </set> | |
1487 | <set var="OS2_SRC" hints="files"> | |
1488 | <!-- Generic implementations used by wxOS2: --> | |
1489 | src/generic/caret.cpp | |
1490 | src/generic/colrdlgg.cpp | |
1491 | src/generic/dirdlgg.cpp | |
1492 | src/generic/fdrepdlg.cpp | |
1493 | src/generic/imaglist.cpp | |
1494 | src/generic/listctrl.cpp | |
1495 | src/generic/mdig.cpp | |
1496 | src/generic/msgdlgg.cpp | |
1497 | src/generic/prntdlgg.cpp | |
1498 | src/generic/statusbr.cpp | |
1499 | <!-- OS/2 specific files: --> | |
1500 | src/os2/accel.cpp | |
1501 | src/os2/app.cpp | |
1502 | src/os2/bitmap.cpp | |
1503 | src/os2/bmpbuttn.cpp | |
1504 | src/os2/brush.cpp | |
1505 | src/os2/button.cpp | |
1506 | src/os2/checkbox.cpp | |
1507 | src/os2/checklst.cpp | |
1508 | src/os2/choice.cpp | |
1509 | src/os2/clipbrd.cpp | |
1510 | src/os2/colour.cpp | |
1511 | src/os2/combobox.cpp | |
1512 | src/os2/control.cpp | |
1513 | src/os2/cursor.cpp | |
1514 | src/os2/data.cpp | |
1515 | src/os2/dataobj.cpp | |
1516 | src/os2/dc.cpp | |
1517 | src/os2/dcclient.cpp | |
1518 | src/os2/dcmemory.cpp | |
1519 | src/os2/dcprint.cpp | |
1520 | src/os2/dcscreen.cpp | |
1521 | src/os2/dialog.cpp | |
1522 | src/os2/dnd.cpp | |
1523 | src/os2/evtloop.cpp | |
1524 | src/os2/filedlg.cpp | |
1525 | src/os2/font.cpp | |
1526 | src/os2/fontdlg.cpp | |
1527 | src/os2/fontenum.cpp | |
1528 | src/os2/fontutil.cpp | |
1529 | src/os2/frame.cpp | |
1530 | src/os2/gauge.cpp | |
1531 | src/os2/gdiimage.cpp | |
1532 | src/os2/gdiobj.cpp | |
1533 | src/os2/gsockpm.cpp | |
1534 | src/os2/helpwin.cpp | |
1535 | src/os2/icon.cpp | |
1536 | src/os2/iniconf.cpp | |
1537 | src/os2/listbox.cpp | |
1538 | src/os2/main.cpp | |
1539 | src/os2/menu.cpp | |
1540 | src/os2/menuitem.cpp | |
1541 | src/os2/metafile.cpp | |
1542 | src/os2/msgdlg.cpp | |
1543 | src/os2/nativdlg.cpp | |
1544 | src/os2/notebook.cpp | |
1545 | src/os2/ownerdrw.cpp | |
1546 | src/os2/palette.cpp | |
1547 | src/os2/pen.cpp | |
1548 | src/os2/print.cpp | |
1549 | src/os2/radiobox.cpp | |
1550 | src/os2/radiobut.cpp | |
1551 | src/os2/region.cpp | |
1552 | src/os2/scrolbar.cpp | |
1553 | src/os2/settings.cpp | |
1554 | src/os2/slider.cpp | |
1555 | src/os2/spinbutt.cpp | |
1556 | src/os2/spinctrl.cpp | |
1557 | src/os2/statbmp.cpp | |
1558 | src/os2/statbox.cpp | |
1559 | src/os2/statline.cpp | |
1560 | src/os2/stattext.cpp | |
1561 | src/os2/tabctrl.cpp | |
1562 | src/os2/textctrl.cpp | |
1563 | src/os2/timer.cpp | |
1564 | src/os2/toolbar.cpp | |
1565 | src/os2/tooltip.cpp | |
1566 | src/os2/toplevel.cpp | |
1567 | src/os2/utilsgui.cpp | |
1568 | src/os2/window.cpp | |
1569 | </set> | |
1570 | <set var="OS2_HDR" hints="files"> | |
1571 | wx/generic/caret.h | |
1572 | wx/generic/colrdlgg.h | |
1573 | wx/generic/dirdlgg.h | |
1574 | wx/generic/fdrepdlg.h | |
1575 | wx/generic/listctrl.h | |
1576 | wx/generic/mdig.h | |
1577 | wx/generic/statusbr.h | |
1578 | wx/os2/accel.h | |
1579 | wx/os2/app.h | |
1580 | wx/os2/bitmap.h | |
1581 | wx/os2/bmpbuttn.h | |
1582 | wx/os2/brush.h | |
1583 | wx/os2/button.h | |
1584 | wx/os2/checkbox.h | |
1585 | wx/os2/checklst.h | |
1586 | wx/os2/choice.h | |
1587 | wx/os2/clipbrd.h | |
1588 | wx/os2/colour.h | |
1589 | wx/os2/combobox.h | |
1590 | wx/os2/control.h | |
1591 | wx/os2/cursor.h | |
1592 | wx/os2/dataform.h | |
1593 | wx/os2/dataobj.h | |
1594 | wx/os2/dataobj2.h | |
1595 | wx/os2/dc.h | |
1596 | wx/os2/dcclient.h | |
1597 | wx/os2/dcmemory.h | |
1598 | wx/os2/dcprint.h | |
1599 | wx/os2/dcscreen.h | |
1600 | wx/os2/dialog.h | |
1601 | wx/os2/dnd.h | |
1602 | wx/os2/filedlg.h | |
1603 | wx/os2/font.h | |
1604 | wx/os2/fontdlg.h | |
1605 | wx/os2/frame.h | |
1606 | wx/os2/gauge.h | |
1607 | wx/os2/gdiimage.h | |
1608 | wx/os2/gdiobj.h | |
1609 | wx/os2/helpwin.h | |
1610 | wx/os2/icon.h | |
1611 | wx/os2/iniconf.h | |
1612 | wx/os2/listbox.h | |
1613 | wx/os2/menu.h | |
1614 | wx/os2/menuitem.h | |
1615 | wx/os2/metafile.h | |
1616 | wx/os2/minifram.h | |
1617 | wx/os2/msgdlg.h | |
1618 | wx/os2/notebook.h | |
1619 | wx/os2/palette.h | |
1620 | wx/os2/pen.h | |
1621 | wx/os2/pnghand.h | |
1622 | wx/os2/pngread.h | |
1623 | wx/os2/print.h | |
1624 | wx/os2/private.h | |
1625 | wx/os2/radiobox.h | |
1626 | wx/os2/radiobut.h | |
1627 | wx/os2/region.h | |
1628 | wx/os2/scrolbar.h | |
1629 | wx/os2/settings.h | |
1630 | wx/os2/setup0.h | |
1631 | wx/os2/slider.h | |
1632 | wx/os2/spinbutt.h | |
1633 | wx/os2/spinctrl.h | |
1634 | wx/os2/statbmp.h | |
1635 | wx/os2/statbox.h | |
1636 | wx/os2/statline.h | |
1637 | wx/os2/stattext.h | |
1638 | wx/os2/tabctrl.h | |
1639 | wx/os2/textctrl.h | |
1640 | wx/os2/timer.h | |
1641 | wx/os2/toolbar.h | |
1642 | wx/os2/tooltip.h | |
1643 | wx/os2/toplevel.h | |
1644 | wx/os2/window.h | |
1645 | </set> | |
1646 | ||
1647 | ||
1648 | ||
1649 | <!-- ====================================================================== --> | |
1650 | <!-- wxMac --> | |
1651 | <!-- ====================================================================== --> | |
1652 | ||
1653 | <set var="MAC_OSX_LOWLEVEL_SRC" hints="files"> | |
1654 | <!-- Shared wxMac and wxCocoa files --> | |
1655 | src/mac/corefoundation/gsockosx.cpp | |
1656 | src/mac/corefoundation/utilsexc_cf.cpp | |
1657 | </set> | |
1658 | ||
1659 | <set var="MAC_LOWLEVEL_SRC" hints="files"> | |
1660 | <if cond="PLATFORM_MACOSX=='1'">$(MAC_OSX_LOWLEVEL_SRC)</if> | |
1661 | </set> | |
1662 | <set var="MAC_LOWLEVEL_HDR" hints="files"> | |
1663 | </set> | |
1664 | ||
1665 | <set var="MAC_OSX_SRC" hints="files"> | |
1666 | <if cond="PLATFORM_MACOSX=='1'"> | |
1667 | <!-- Unix files used by wxMac: --> | |
1668 | src/unix/snglinst.cpp | |
1669 | <!-- wxWebKit files --> | |
1670 | src/html/htmlctrl/webkit/webkit.mm | |
1671 | </if> | |
1672 | </set> | |
1673 | ||
1674 | <set var="MAC_SRC" hints="files"> | |
1675 | src/mac/carbon/accel.cpp | |
1676 | src/mac/carbon/aga.cpp | |
1677 | src/mac/carbon/app.cpp | |
1678 | src/mac/carbon/bitmap.cpp | |
1679 | src/mac/carbon/bmpbuttn.cpp | |
1680 | src/mac/carbon/brush.cpp | |
1681 | src/mac/carbon/button.cpp | |
1682 | src/mac/carbon/checkbox.cpp | |
1683 | src/mac/carbon/checklst.cpp | |
1684 | src/mac/carbon/choice.cpp | |
1685 | src/mac/carbon/clipbrd.cpp | |
1686 | src/mac/carbon/colordlg.cpp | |
1687 | src/mac/carbon/colour.cpp | |
1688 | src/mac/carbon/combobox.cpp | |
1689 | src/mac/carbon/control.cpp | |
1690 | src/mac/carbon/cursor.cpp | |
1691 | src/mac/carbon/data.cpp | |
1692 | src/mac/carbon/dataobj.cpp | |
1693 | src/mac/carbon/dc.cpp | |
1694 | src/mac/carbon/dcclient.cpp | |
1695 | src/mac/carbon/dcmemory.cpp | |
1696 | src/mac/carbon/dcprint.cpp | |
1697 | src/mac/carbon/dcscreen.cpp | |
1698 | src/mac/carbon/dialog.cpp | |
1699 | src/mac/carbon/dirdlg.cpp | |
1700 | src/mac/carbon/display.cpp | |
1701 | src/mac/carbon/dnd.cpp | |
1702 | src/mac/carbon/filedlg.cpp | |
1703 | src/mac/carbon/font.cpp | |
1704 | src/mac/carbon/fontdlg.cpp | |
1705 | src/mac/carbon/fontenum.cpp | |
1706 | src/mac/carbon/fontutil.cpp | |
1707 | src/mac/carbon/frame.cpp | |
1708 | src/mac/carbon/gauge.cpp | |
1709 | src/mac/carbon/gdiobj.cpp | |
1710 | src/mac/carbon/hid.cpp | |
1711 | src/mac/carbon/icon.cpp | |
1712 | src/mac/carbon/listbox.cpp | |
1713 | src/mac/carbon/mdi.cpp | |
1714 | src/mac/carbon/menu.cpp | |
1715 | src/mac/carbon/menuitem.cpp | |
1716 | src/mac/carbon/metafile.cpp | |
1717 | src/mac/carbon/minifram.cpp | |
1718 | src/mac/carbon/msgdlg.cpp | |
1719 | src/mac/carbon/notebmac.cpp | |
1720 | src/mac/carbon/palette.cpp | |
1721 | src/mac/carbon/pen.cpp | |
1722 | src/mac/carbon/pnghand.cpp | |
1723 | src/mac/carbon/printdlg.cpp | |
1724 | src/mac/carbon/printmac.cpp | |
1725 | src/mac/carbon/radiobox.cpp | |
1726 | src/mac/carbon/radiobut.cpp | |
1727 | src/mac/carbon/region.cpp | |
1728 | src/mac/carbon/renderer.cpp | |
1729 | src/mac/carbon/scrolbar.cpp | |
1730 | src/mac/carbon/settings.cpp | |
1731 | src/mac/carbon/slider.cpp | |
1732 | src/mac/carbon/spinbutt.cpp | |
1733 | src/mac/carbon/spinctrl.cpp | |
1734 | src/mac/carbon/statbmp.cpp | |
1735 | src/mac/carbon/statbox.cpp | |
1736 | src/mac/carbon/statbrma.cpp | |
1737 | src/mac/carbon/statlmac.cpp | |
1738 | src/mac/carbon/stattext.cpp | |
1739 | src/mac/carbon/tabctrl.cpp | |
1740 | src/mac/carbon/textctrl.cpp | |
1741 | src/mac/carbon/timer.cpp | |
1742 | src/mac/carbon/tglbtn.cpp | |
1743 | src/mac/carbon/toolbar.cpp | |
1744 | src/mac/carbon/tooltip.cpp | |
1745 | src/mac/carbon/toplevel.cpp | |
1746 | src/mac/carbon/window.cpp | |
1747 | <!-- Generic implementations used by wxMac: --> | |
1748 | src/generic/caret.cpp | |
1749 | src/generic/fdrepdlg.cpp | |
1750 | src/generic/fontdlgg.cpp | |
1751 | src/generic/imaglist.cpp | |
1752 | src/generic/listctrl.cpp | |
1753 | src/generic/prntdlgg.cpp | |
1754 | src/generic/statusbr.cpp | |
1755 | src/generic/tabg.cpp | |
1756 | </set> | |
1757 | ||
1758 | <!-- Header files like wx/mac/foo.h which include wx/mac/carbon/foo.h --> | |
1759 | <set var="MAC_CMN_HDR" hints="files"> | |
1760 | wx/mac/accel.h | |
1761 | wx/mac/aga.h | |
1762 | wx/mac/app.h | |
1763 | wx/mac/bitmap.h | |
1764 | wx/mac/bmpbuttn.h | |
1765 | wx/mac/brush.h | |
1766 | wx/mac/button.h | |
1767 | wx/mac/checkbox.h | |
1768 | wx/mac/checklst.h | |
1769 | wx/mac/chkconf.h | |
1770 | wx/mac/choice.h | |
1771 | wx/mac/clipbrd.h | |
1772 | wx/mac/colordlg.h | |
1773 | wx/mac/colour.h | |
1774 | wx/mac/combobox.h | |
1775 | wx/mac/control.h | |
1776 | wx/mac/cursor.h | |
1777 | wx/mac/dataform.h | |
1778 | wx/mac/dataobj.h | |
1779 | wx/mac/dataobj2.h | |
1780 | wx/mac/dc.h | |
1781 | wx/mac/dcclient.h | |
1782 | wx/mac/dcmemory.h | |
1783 | wx/mac/dcprint.h | |
1784 | wx/mac/dcscreen.h | |
1785 | wx/mac/dialog.h | |
1786 | wx/mac/dirdlg.h | |
1787 | wx/mac/display.h | |
1788 | wx/mac/dnd.h | |
1789 | wx/mac/filedlg.h | |
1790 | wx/mac/font.h | |
1791 | wx/mac/fontdlg.h | |
1792 | wx/mac/frame.h | |
1793 | wx/mac/gauge.h | |
1794 | wx/mac/gdiobj.h | |
1795 | wx/mac/glcanvas.h | |
1796 | wx/mac/gsockmac.h | |
1797 | wx/mac/helpxxxx.h | |
1798 | wx/mac/icon.h | |
1799 | wx/mac/imaglist.h | |
1800 | wx/mac/joystick.h | |
1801 | wx/mac/listbox.h | |
1802 | wx/mac/listctrl.h | |
1803 | wx/mac/macnotfy.h | |
1804 | wx/mac/macsock.h | |
1805 | wx/mac/mdi.h | |
1806 | wx/mac/menu.h | |
1807 | wx/mac/menuitem.h | |
1808 | wx/mac/metafile.h | |
1809 | wx/mac/mimetype.h | |
1810 | wx/mac/minifram.h | |
1811 | wx/mac/msgdlg.h | |
1812 | wx/mac/notebook.h | |
1813 | wx/mac/palette.h | |
1814 | wx/mac/pen.h | |
1815 | wx/mac/pnghand.h | |
1816 | wx/mac/pngread.h | |
1817 | wx/mac/printdlg.h | |
1818 | wx/mac/printmac.h | |
1819 | wx/mac/private.h | |
1820 | wx/mac/radiobox.h | |
1821 | wx/mac/radiobut.h | |
1822 | wx/mac/region.h | |
1823 | wx/mac/scrolbar.h | |
1824 | wx/mac/slider.h | |
1825 | wx/mac/sound.h | |
1826 | wx/mac/spinbutt.h | |
1827 | wx/mac/spinctrl.h | |
1828 | wx/mac/statbmp.h | |
1829 | wx/mac/statbox.h | |
1830 | wx/mac/statline.h | |
1831 | wx/mac/stattext.h | |
1832 | wx/mac/statusbr.h | |
1833 | wx/mac/tabctrl.h | |
1834 | wx/mac/taskbarosx.h | |
1835 | wx/mac/textctrl.h | |
1836 | wx/mac/timer.h | |
1837 | wx/mac/tglbtn.h | |
1838 | wx/mac/toolbar.h | |
1839 | wx/mac/tooltip.h | |
1840 | wx/mac/toplevel.h | |
1841 | wx/mac/treectrl.h | |
1842 | wx/mac/uma.h | |
1843 | wx/mac/window.h | |
1844 | </set> | |
1845 | <!-- wxMac Carbon header files --> | |
1846 | <set var="MAC_HDR" hints="files"> | |
1847 | wx/mac/carbon/accel.h | |
1848 | wx/mac/carbon/aga.h | |
1849 | wx/mac/carbon/app.h | |
1850 | wx/mac/carbon/bitmap.h | |
1851 | wx/mac/carbon/bmpbuttn.h | |
1852 | wx/mac/carbon/brush.h | |
1853 | wx/mac/carbon/button.h | |
1854 | wx/mac/carbon/checkbox.h | |
1855 | wx/mac/carbon/checklst.h | |
1856 | wx/mac/carbon/chkconf.h | |
1857 | wx/mac/carbon/choice.h | |
1858 | wx/mac/carbon/clipbrd.h | |
1859 | wx/mac/carbon/colordlg.h | |
1860 | wx/mac/carbon/colour.h | |
1861 | wx/mac/carbon/combobox.h | |
1862 | wx/mac/carbon/control.h | |
1863 | wx/mac/carbon/cursor.h | |
1864 | wx/mac/carbon/dataform.h | |
1865 | wx/mac/carbon/dataobj.h | |
1866 | wx/mac/carbon/dataobj2.h | |
1867 | wx/mac/carbon/dc.h | |
1868 | wx/mac/carbon/dcclient.h | |
1869 | wx/mac/carbon/dcmemory.h | |
1870 | wx/mac/carbon/dcprint.h | |
1871 | wx/mac/carbon/dcscreen.h | |
1872 | wx/mac/carbon/dialog.h | |
1873 | wx/mac/carbon/dirdlg.h | |
1874 | wx/mac/carbon/display.h | |
1875 | wx/mac/carbon/dnd.h | |
1876 | wx/mac/carbon/filedlg.h | |
1877 | wx/mac/carbon/font.h | |
1878 | wx/mac/carbon/fontdlg.h | |
1879 | wx/mac/carbon/frame.h | |
1880 | wx/mac/carbon/gauge.h | |
1881 | wx/mac/carbon/gdiobj.h | |
1882 | wx/mac/carbon/gsockmac.h | |
1883 | wx/mac/carbon/helpxxxx.h | |
1884 | wx/mac/carbon/icon.h | |
1885 | wx/mac/carbon/imaglist.h | |
1886 | wx/mac/carbon/listbox.h | |
1887 | wx/mac/carbon/listctrl.h | |
1888 | wx/mac/carbon/macnotfy.h | |
1889 | wx/mac/carbon/macsock.h | |
1890 | wx/mac/carbon/mdi.h | |
1891 | wx/mac/carbon/menu.h | |
1892 | wx/mac/carbon/menuitem.h | |
1893 | wx/mac/carbon/metafile.h | |
1894 | wx/mac/carbon/mimetype.h | |
1895 | wx/mac/carbon/minifram.h | |
1896 | wx/mac/carbon/msgdlg.h | |
1897 | wx/mac/carbon/notebook.h | |
1898 | wx/mac/carbon/palette.h | |
1899 | wx/mac/carbon/pen.h | |
1900 | wx/mac/carbon/pnghand.h | |
1901 | wx/mac/carbon/pngread.h | |
1902 | wx/mac/carbon/printdlg.h | |
1903 | wx/mac/carbon/printmac.h | |
1904 | wx/mac/carbon/private.h | |
1905 | wx/mac/carbon/radiobox.h | |
1906 | wx/mac/carbon/radiobut.h | |
1907 | wx/mac/carbon/region.h | |
1908 | wx/mac/carbon/scrolbar.h | |
1909 | wx/mac/carbon/slider.h | |
1910 | wx/mac/carbon/spinbutt.h | |
1911 | wx/mac/carbon/spinctrl.h | |
1912 | wx/mac/carbon/statbmp.h | |
1913 | wx/mac/carbon/statbox.h | |
1914 | wx/mac/carbon/statline.h | |
1915 | wx/mac/carbon/stattext.h | |
1916 | wx/mac/carbon/statusbr.h | |
1917 | wx/mac/carbon/tabctrl.h | |
1918 | wx/mac/carbon/textctrl.h | |
1919 | wx/mac/carbon/timer.h | |
1920 | wx/mac/carbon/tglbtn.h | |
1921 | wx/mac/carbon/toolbar.h | |
1922 | wx/mac/carbon/tooltip.h | |
1923 | wx/mac/carbon/toplevel.h | |
1924 | wx/mac/carbon/treectrl.h | |
1925 | wx/mac/carbon/uma.h | |
1926 | wx/mac/carbon/window.h | |
1927 | <!-- Generic implementations used by wxMac: --> | |
1928 | wx/generic/caret.h | |
1929 | wx/generic/fdrepdlg.h | |
1930 | wx/generic/fontdlgg.h | |
1931 | wx/generic/imaglist.h | |
1932 | wx/generic/listctrl.h | |
1933 | wx/generic/statusbr.h | |
1934 | wx/generic/tabg.h | |
1935 | <!-- wxWebKit headers --> | |
1936 | wx/html/webkit.h | |
1937 | </set> | |
1938 | ||
1939 | ||
1940 | <!-- ====================================================================== --> | |
1941 | <!-- wxCocoa --> | |
1942 | <!-- ====================================================================== --> | |
1943 | ||
1944 | <set var="COCOA_LOWLEVEL_SRC" hints="files"> | |
1945 | <!-- Shared wxMac and wxCocoa files --> | |
1946 | src/mac/corefoundation/gsockosx.cpp | |
1947 | src/mac/corefoundation/utilsexc_cf.cpp | |
1948 | </set> | |
1949 | <set var="COCOA_LOWLEVEL_HDR" hints="files"> | |
1950 | </set> | |
1951 | <set var="COCOA_SRC" hints="files"> | |
1952 | src/cocoa/NSBox.mm | |
1953 | src/cocoa/NSButton.mm | |
1954 | src/cocoa/NSControl.mm | |
1955 | src/cocoa/NSMenu.mm | |
1956 | src/cocoa/NSPanel.mm | |
1957 | src/cocoa/NSScroller.mm | |
1958 | src/cocoa/NSTabView.mm | |
1959 | src/cocoa/NSTableView.mm | |
1960 | src/cocoa/NSTextField.mm | |
1961 | src/cocoa/NSView.mm | |
1962 | src/cocoa/NSWindow.mm | |
1963 | src/cocoa/ObjcRef.mm | |
1964 | src/cocoa/app.mm | |
1965 | src/cocoa/bitmap.mm | |
1966 | src/cocoa/bmpbuttn.mm | |
1967 | src/cocoa/brush.mm | |
1968 | src/cocoa/button.mm | |
1969 | src/cocoa/checkbox.mm | |
1970 | src/cocoa/checklst.mm | |
1971 | src/cocoa/choice.mm | |
1972 | src/cocoa/clipbrd.mm | |
1973 | src/cocoa/colordlg.mm | |
1974 | src/cocoa/colour.mm | |
1975 | src/cocoa/combobox.mm | |
1976 | src/cocoa/control.mm | |
1977 | src/cocoa/cursor.mm | |
1978 | src/cocoa/data.cpp | |
1979 | src/cocoa/dataobj.mm | |
1980 | src/cocoa/dc.mm | |
1981 | src/cocoa/dcclient.mm | |
1982 | src/cocoa/dcmemory.mm | |
1983 | src/cocoa/dcscreen.cpp | |
1984 | src/cocoa/dialog.mm | |
1985 | src/cocoa/display.mm | |
1986 | src/cocoa/drawer.mm | |
1987 | src/cocoa/evtloop.mm | |
1988 | src/cocoa/filedlg.mm | |
1989 | src/cocoa/font.cpp | |
1990 | src/cocoa/fontdlg.mm | |
1991 | src/cocoa/fontenum.mm | |
1992 | src/cocoa/fontutil.cpp | |
1993 | src/cocoa/frame.mm | |
1994 | src/cocoa/gauge.mm | |
1995 | src/cocoa/gdiobj.cpp | |
1996 | src/cocoa/icon.mm | |
1997 | src/cocoa/listbox.mm | |
1998 | src/cocoa/main.cpp | |
1999 | src/cocoa/mbarman.mm | |
2000 | src/cocoa/mdi.mm | |
2001 | src/cocoa/menu.mm | |
2002 | src/cocoa/menuitem.mm | |
2003 | src/cocoa/msgdlg.mm | |
2004 | src/cocoa/notebook.mm | |
2005 | src/cocoa/pen.mm | |
2006 | src/cocoa/radiobox.mm | |
2007 | src/cocoa/radiobut.mm | |
2008 | src/cocoa/region.mm | |
2009 | src/cocoa/scrolbar.mm | |
2010 | src/cocoa/settings.cpp | |
2011 | src/cocoa/slider.mm | |
2012 | src/cocoa/sound.mm | |
2013 | src/cocoa/spinbutt.mm | |
2014 | src/cocoa/statbmp.mm | |
2015 | src/cocoa/statbox.mm | |
2016 | src/cocoa/statline2.mm | |
2017 | src/cocoa/stattext.mm | |
2018 | src/cocoa/textctrl.mm | |
2019 | src/cocoa/toolbar.mm | |
2020 | src/cocoa/tooltip.mm | |
2021 | src/cocoa/toplevel.mm | |
2022 | src/cocoa/utils.cpp | |
2023 | src/cocoa/utilsexc.mm | |
2024 | src/cocoa/window.mm | |
2025 | <!-- Generic implementations used by wxCocoa: --> | |
2026 | src/generic/accel.cpp | |
2027 | src/generic/caret.cpp | |
2028 | src/generic/colrdlgg.cpp | |
2029 | src/generic/dirdlgg.cpp | |
2030 | src/generic/fdrepdlg.cpp | |
2031 | src/generic/fontdlgg.cpp | |
2032 | src/generic/imaglist.cpp | |
2033 | src/generic/listctrl.cpp | |
2034 | src/generic/msgdlgg.cpp | |
2035 | src/generic/paletteg.cpp | |
2036 | src/generic/regiong.cpp | |
2037 | src/generic/statusbr.cpp | |
2038 | src/generic/tabg.cpp | |
2039 | src/generic/timer.cpp | |
2040 | </set> | |
2041 | <set var="COCOA_HDR" hints="files"> | |
2042 | wx/cocoa/NSApplication.h | |
2043 | wx/cocoa/NSBox.h | |
2044 | wx/cocoa/NSButton.h | |
2045 | wx/cocoa/NSControl.h | |
2046 | wx/cocoa/NSMenu.h | |
2047 | wx/cocoa/NSPanel.h | |
2048 | wx/cocoa/NSScroller.h | |
2049 | wx/cocoa/NSTabView.h | |
2050 | wx/cocoa/NSTableView.h | |
2051 | wx/cocoa/NSTextField.h | |
2052 | wx/cocoa/NSView.h | |
2053 | wx/cocoa/NSWindow.h | |
2054 | wx/cocoa/ObjcAssociate.h | |
2055 | wx/cocoa/ObjcPose.h | |
2056 | wx/cocoa/ObjcRef.h | |
2057 | wx/cocoa/app.h | |
2058 | wx/cocoa/bitmap.h | |
2059 | wx/cocoa/bmpbuttn.h | |
2060 | wx/cocoa/brush.h | |
2061 | wx/cocoa/button.h | |
2062 | wx/cocoa/checkbox.h | |
2063 | wx/cocoa/checklst.h | |
2064 | wx/cocoa/choice.h | |
2065 | wx/cocoa/clipbrd.h | |
2066 | wx/cocoa/colordlg.h | |
2067 | wx/cocoa/colour.h | |
2068 | wx/cocoa/combobox.h | |
2069 | wx/cocoa/control.h | |
2070 | wx/cocoa/cursor.h | |
2071 | wx/cocoa/dataform.h | |
2072 | wx/cocoa/dataobj.h | |
2073 | wx/cocoa/dataobj2.h | |
2074 | wx/cocoa/dc.h | |
2075 | wx/cocoa/dcclient.h | |
2076 | wx/cocoa/dcmemory.h | |
2077 | wx/cocoa/dcscreen.h | |
2078 | wx/cocoa/dialog.h | |
2079 | wx/cocoa/display.h | |
2080 | wx/cocoa/drawer.h | |
2081 | wx/cocoa/filedlg.h | |
2082 | wx/cocoa/font.h | |
2083 | wx/cocoa/fontdlg.h | |
2084 | wx/cocoa/frame.h | |
2085 | wx/cocoa/gauge.h | |
2086 | wx/cocoa/gdiobj.h | |
2087 | wx/cocoa/icon.h | |
2088 | wx/cocoa/listbox.h | |
2089 | wx/cocoa/log.h | |
2090 | wx/cocoa/mbarman.h | |
2091 | wx/cocoa/mdi.h | |
2092 | wx/cocoa/menu.h | |
2093 | wx/cocoa/menuitem.h | |
2094 | wx/cocoa/msgdlg.h | |
2095 | wx/cocoa/notebook.h | |
2096 | wx/cocoa/pen.h | |
2097 | wx/cocoa/radiobox.h | |
2098 | wx/cocoa/radiobut.h | |
2099 | wx/cocoa/region.h | |
2100 | wx/cocoa/scrolbar.h | |
2101 | wx/cocoa/slider.h | |
2102 | wx/cocoa/sound.h | |
2103 | wx/cocoa/spinbutt.h | |
2104 | wx/cocoa/statbmp.h | |
2105 | wx/cocoa/statbox.h | |
2106 | wx/cocoa/statline.h | |
2107 | wx/cocoa/stattext.h | |
2108 | wx/cocoa/textctrl.h | |
2109 | wx/cocoa/toolbar.h | |
2110 | wx/cocoa/toplevel.h | |
2111 | wx/cocoa/window.h | |
2112 | <!-- Generic implementations used by wxCocoa: --> | |
2113 | wx/generic/caret.h | |
2114 | wx/generic/dirdlgg.h | |
2115 | wx/generic/fdrepdlg.h | |
2116 | wx/generic/fontdlgg.h | |
2117 | wx/generic/imaglist.h | |
2118 | wx/generic/listctrl.h | |
2119 | wx/generic/paletteg.h | |
2120 | wx/generic/region.h | |
2121 | wx/generic/statusbr.h | |
2122 | wx/generic/tabg.h | |
2123 | </set> | |
2124 | ||
2125 | ||
2126 | ||
2127 | <!-- ====================================================================== --> | |
2128 | <!-- wxUniversal --> | |
2129 | <!-- ====================================================================== --> | |
2130 | ||
2131 | ||
2132 | <set var="UNIV_THEMES_SRC" hints="files"> | |
2133 | src/univ/themes/gtk.cpp | |
2134 | src/univ/themes/metal.cpp | |
2135 | src/univ/themes/win32.cpp | |
2136 | </set> | |
2137 | ||
2138 | <set var="UNIV_SRC" hints="files"> | |
2139 | src/generic/accel.cpp | |
2140 | src/generic/colrdlgg.cpp | |
2141 | src/generic/dirdlgg.cpp | |
2142 | src/generic/fdrepdlg.cpp | |
2143 | src/generic/filedlgg.cpp | |
2144 | src/generic/fontdlgg.cpp | |
2145 | src/generic/imaglist.cpp | |
2146 | src/generic/listctrl.cpp | |
2147 | src/generic/mdig.cpp | |
2148 | src/generic/msgdlgg.cpp | |
2149 | src/generic/prntdlgg.cpp | |
2150 | src/generic/tabg.cpp | |
2151 | src/univ/bmpbuttn.cpp | |
2152 | src/univ/button.cpp | |
2153 | src/univ/checkbox.cpp | |
2154 | src/univ/checklst.cpp | |
2155 | src/univ/choice.cpp | |
2156 | src/univ/colschem.cpp | |
2157 | src/univ/combobox.cpp | |
2158 | src/univ/control.cpp | |
2159 | src/univ/ctrlrend.cpp | |
2160 | src/univ/dialog.cpp | |
2161 | src/univ/framuniv.cpp | |
2162 | src/univ/gauge.cpp | |
2163 | src/univ/inpcons.cpp | |
2164 | src/univ/inphand.cpp | |
2165 | src/univ/listbox.cpp | |
2166 | src/univ/menu.cpp | |
2167 | src/univ/notebook.cpp | |
2168 | src/univ/radiobox.cpp | |
2169 | src/univ/radiobut.cpp | |
2170 | src/univ/scrarrow.cpp | |
2171 | src/univ/scrolbar.cpp | |
2172 | src/univ/scrthumb.cpp | |
2173 | src/univ/slider.cpp | |
2174 | src/univ/spinbutt.cpp | |
2175 | src/univ/statbmp.cpp | |
2176 | src/univ/statbox.cpp | |
2177 | src/univ/statline.cpp | |
2178 | src/univ/stattext.cpp | |
2179 | src/univ/statusbr.cpp | |
2180 | src/univ/textctrl.cpp | |
2181 | src/univ/theme.cpp | |
2182 | src/univ/toolbar.cpp | |
2183 | src/univ/topluniv.cpp | |
2184 | src/univ/winuniv.cpp | |
2185 | </set> | |
2186 | <set var="UNIV_HDR" hints="files"> | |
2187 | wx/generic/accel.h | |
2188 | wx/generic/dirdlgg.h | |
2189 | wx/generic/fdrepdlg.h | |
2190 | wx/generic/fontdlgg.h | |
2191 | wx/generic/listctrl.h | |
2192 | wx/generic/mdig.h | |
2193 | wx/generic/statusbr.h | |
2194 | wx/generic/tabg.h | |
2195 | wx/univ/app.h | |
2196 | wx/univ/bmpbuttn.h | |
2197 | wx/univ/button.h | |
2198 | wx/univ/checkbox.h | |
2199 | wx/univ/checklst.h | |
2200 | wx/univ/choice.h | |
2201 | wx/univ/colschem.h | |
2202 | wx/univ/combobox.h | |
2203 | wx/univ/control.h | |
2204 | wx/univ/dialog.h | |
2205 | wx/univ/frame.h | |
2206 | wx/univ/gauge.h | |
2207 | wx/univ/inpcons.h | |
2208 | wx/univ/inphand.h | |
2209 | wx/univ/listbox.h | |
2210 | wx/univ/menu.h | |
2211 | wx/univ/menuitem.h | |
2212 | wx/univ/notebook.h | |
2213 | wx/univ/radiobox.h | |
2214 | wx/univ/radiobut.h | |
2215 | wx/univ/renderer.h | |
2216 | wx/univ/scrarrow.h | |
2217 | wx/univ/scrolbar.h | |
2218 | wx/univ/scrthumb.h | |
2219 | wx/univ/scrtimer.h | |
2220 | wx/univ/slider.h | |
2221 | wx/univ/spinbutt.h | |
2222 | wx/univ/statbmp.h | |
2223 | wx/univ/statbox.h | |
2224 | wx/univ/statline.h | |
2225 | wx/univ/stattext.h | |
2226 | wx/univ/statusbr.h | |
2227 | wx/univ/textctrl.h | |
2228 | wx/univ/theme.h | |
2229 | wx/univ/toolbar.h | |
2230 | wx/univ/toplevel.h | |
2231 | wx/univ/window.h | |
2232 | </set> | |
2233 | ||
2234 | ||
2235 | <!-- ====================================================================== --> | |
2236 | <!-- wxAdvanced --> | |
2237 | <!-- ====================================================================== --> | |
2238 | ||
2239 | <set var="ADVANCED_CMN_SRC" hints="files"> | |
2240 | src/generic/calctrl.cpp | |
2241 | src/generic/grid.cpp | |
2242 | src/generic/gridctrl.cpp | |
2243 | src/generic/gridsel.cpp | |
2244 | src/generic/helpext.cpp | |
2245 | src/generic/laywin.cpp | |
2246 | src/generic/sashwin.cpp | |
2247 | src/generic/splash.cpp | |
2248 | src/generic/tipdlg.cpp | |
2249 | src/generic/wizard.cpp | |
2250 | </set> | |
2251 | ||
2252 | <set var="ADVANCED_CMN_HDR" hints="files"> | |
2253 | wx/calctrl.h | |
2254 | wx/dcbuffer.h | |
2255 | wx/generic/calctrl.h | |
2256 | wx/generic/grid.h | |
2257 | wx/generic/gridctrl.h | |
2258 | wx/generic/gridsel.h | |
2259 | wx/generic/helpext.h | |
2260 | wx/generic/laywin.h | |
2261 | wx/generic/sashwin.h | |
2262 | wx/generic/splash.h | |
2263 | wx/generic/wizard.h | |
2264 | wx/grid.h | |
2265 | wx/joystick.h | |
2266 | wx/laywin.h | |
2267 | wx/sashwin.h | |
2268 | wx/sound.h | |
2269 | wx/splash.h | |
2270 | wx/taskbar.h | |
2271 | wx/tipdlg.h | |
2272 | wx/wave.h | |
2273 | wx/wizard.h | |
2274 | </set> | |
2275 | ||
2276 | <set var="ADVANCED_MSW_SRC" hints="files"> | |
2277 | src/common/taskbarcmn.cpp | |
2278 | src/msw/sound.cpp | |
2279 | src/msw/taskbar.cpp | |
2280 | </set> | |
2281 | <set var="ADVANCED_MSW_HDR" hints="files"> | |
2282 | wx/msw/sound.h | |
2283 | wx/msw/taskbar.h | |
2284 | </set> | |
2285 | <!-- not built on WindowsCE: --> | |
2286 | <set var="ADVANCED_MSW_ONLY_SRC" hints="files"> | |
2287 | src/msw/joystick.cpp | |
2288 | </set> | |
2289 | <set var="ADVANCED_MSW_ONLY_HDR" hints="files"> | |
2290 | wx/msw/joystick.h | |
2291 | </set> | |
2292 | ||
2293 | <set var="ADVANCED_MAC_SRC" hints="files"> | |
2294 | src/common/taskbarcmn.cpp | |
2295 | src/mac/carbon/drawer.cpp | |
2296 | src/mac/carbon/joystick.cpp | |
2297 | src/mac/carbon/sound.cpp | |
2298 | src/mac/carbon/taskbar.cpp | |
2299 | </set> | |
2300 | <set var="ADVANCED_MAC_HDR" hints="files"> | |
2301 | wx/mac/carbon/drawer.h | |
2302 | wx/mac/carbon/joystick.h | |
2303 | wx/mac/carbon/sound.h | |
2304 | wx/mac/carbon/taskbarosx.h | |
2305 | </set> | |
2306 | ||
2307 | <set var="ADVANCED_COCOA_SRC" hints="files"> | |
2308 | src/cocoa/taskbar.mm | |
2309 | src/common/taskbarcmn.cpp | |
2310 | </set> | |
2311 | <set var="ADVANCED_COCOA_HDR" hints="files"> | |
2312 | wx/cocoa/taskbar.h | |
2313 | </set> | |
2314 | ||
2315 | <set var="ADVANCED_OS2_SRC" hints="files"> | |
2316 | src/os2/joystick.cpp | |
2317 | src/os2/sound.cpp | |
2318 | </set> | |
2319 | <set var="ADVANCED_OS2_HDR" hints="files"> | |
2320 | wx/os2/joystick.h | |
2321 | wx/os2/sound.h | |
2322 | </set> | |
2323 | ||
2324 | <set var="ADVANCED_UNIX_SRC" hints="files"> | |
2325 | src/common/taskbarcmn.cpp | |
2326 | src/unix/joystick.cpp | |
2327 | src/unix/sound.cpp | |
2328 | src/unix/taskbarx11.cpp | |
2329 | </set> | |
2330 | <set var="ADVANCED_UNIX_HDR" hints="files"> | |
2331 | wx/unix/joystick.h | |
2332 | wx/unix/sound.h | |
2333 | wx/unix/taskbarx11.h | |
2334 | </set> | |
2335 | ||
2336 | <set var="ADVANCED_GTK_SRC" hints="files"> | |
2337 | src/gtk/taskbar.cpp | |
2338 | src/gtk/eggtrayicon.c | |
2339 | </set> | |
2340 | ||
2341 | <!-- ====================================================================== --> | |
2342 | <!-- wxMedia --> | |
2343 | <!-- ====================================================================== --> | |
2344 | ||
2345 | <set var="MEDIA_CMN_SRC" hints="files"> | |
2346 | src/common/mediactrlcmn.cpp | |
2347 | </set> | |
2348 | ||
2349 | <set var="MEDIA_CMN_HDR" hints="files"> | |
2350 | wx/mediactrl.h | |
2351 | </set> | |
2352 | ||
2353 | <set var="MEDIA_MSW_SRC" hints="files"> | |
2354 | src/msw/mediactrl.cpp | |
2355 | </set> | |
2356 | <set var="MEDIA_MSW_HDR" hints="files"> | |
2357 | </set> | |
2358 | <!-- not built on WindowsCE: --> | |
2359 | <set var="MEDIA_MSW_ONLY_SRC" hints="files"> | |
2360 | </set> | |
2361 | <set var="MEDIA_MSW_ONLY_HDR" hints="files"> | |
2362 | </set> | |
2363 | ||
2364 | <set var="MEDIA_MAC_SRC" hints="files"> | |
2365 | src/mac/carbon/mediactrl.cpp | |
2366 | </set> | |
2367 | <set var="MEDIA_MAC_HDR" hints="files"> | |
2368 | </set> | |
2369 | ||
2370 | <set var="MEDIA_COCOA_SRC" hints="files"> | |
2371 | </set> | |
2372 | <set var="MEDIA_COCOA_HDR" hints="files"> | |
2373 | </set> | |
2374 | ||
2375 | <set var="MEDIA_OS2_SRC" hints="files"> | |
2376 | </set> | |
2377 | <set var="MEDIA_OS2_HDR" hints="files"> | |
2378 | </set> | |
2379 | ||
2380 | <set var="MEDIA_UNIX_SRC" hints="files"> | |
2381 | </set> | |
2382 | <set var="MEDIA_UNIX_HDR" hints="files"> | |
2383 | </set> | |
2384 | ||
2385 | <set var="MEDIA_GTK_SRC" hints="files"> | |
2386 | </set> | |
2387 | ||
2388 | <!-- ====================================================================== --> | |
2389 | <!-- wxHTML --> | |
2390 | <!-- ====================================================================== --> | |
2391 | ||
2392 | <set var="HTML_SRC_PLATFORM"> | |
2393 | <if cond="TOOLKIT=='MSW'"> | |
2394 | src/msw/helpbest.cpp | |
2395 | </if> | |
2396 | <if cond="PLATFORM_UNIX=='1'"> | |
2397 | src/html/chm.cpp | |
2398 | </if> | |
2399 | <if cond="PLATFORM_MACOSX=='1'"> | |
2400 | src/html/chm.cpp | |
2401 | </if> | |
2402 | </set> | |
2403 | <set var="HTML_SRC" hints="files"> | |
2404 | $(HTML_SRC_PLATFORM) | |
2405 | src/html/helpctrl.cpp | |
2406 | src/html/helpdata.cpp | |
2407 | src/html/helpfrm.cpp | |
2408 | src/html/htmlcell.cpp | |
2409 | src/html/htmlfilt.cpp | |
2410 | src/html/htmlpars.cpp | |
2411 | src/html/htmltag.cpp | |
2412 | src/html/htmlwin.cpp | |
2413 | src/html/htmprint.cpp | |
2414 | src/html/m_dflist.cpp | |
2415 | src/html/m_fonts.cpp | |
2416 | src/html/m_hline.cpp | |
2417 | src/html/m_image.cpp | |
2418 | src/html/m_layout.cpp | |
2419 | src/html/m_links.cpp | |
2420 | src/html/m_list.cpp | |
2421 | src/html/m_pre.cpp | |
2422 | src/html/m_style.cpp | |
2423 | src/html/m_tables.cpp | |
2424 | src/html/winpars.cpp | |
2425 | <!-- wxHTML users: --> | |
2426 | src/generic/htmllbox.cpp | |
2427 | </set> | |
2428 | <set var="HTML_HDR" hints="files"> | |
2429 | wx/html/forcelnk.h | |
2430 | wx/html/helpctrl.h | |
2431 | wx/html/helpdata.h | |
2432 | wx/html/helpfrm.h | |
2433 | wx/html/htmlcell.h | |
2434 | wx/html/htmldefs.h | |
2435 | wx/html/htmlfilt.h | |
2436 | wx/html/htmlpars.h | |
2437 | wx/html/htmlproc.h | |
2438 | wx/html/htmltag.h | |
2439 | wx/html/htmlwin.h | |
2440 | wx/html/htmprint.h | |
2441 | wx/html/m_templ.h | |
2442 | wx/html/winpars.h | |
2443 | wx/wxhtml.h | |
2444 | <!-- wxHTML users: --> | |
2445 | wx/htmllbox.h | |
2446 | </set> | |
2447 | ||
2448 | ||
2449 | ||
2450 | <!-- ====================================================================== --> | |
2451 | <!-- wxXRC --> | |
2452 | <!-- ====================================================================== --> | |
2453 | ||
2454 | <set var="XRC_SRC" hints="files"> | |
2455 | src/xrc/xh_bmpbt.cpp | |
2456 | src/xrc/xh_bmp.cpp | |
2457 | src/xrc/xh_bttn.cpp | |
2458 | src/xrc/xh_cald.cpp | |
2459 | src/xrc/xh_chckb.cpp | |
2460 | src/xrc/xh_chckl.cpp | |
2461 | src/xrc/xh_choic.cpp | |
2462 | src/xrc/xh_combo.cpp | |
2463 | src/xrc/xh_dlg.cpp | |
2464 | src/xrc/xh_frame.cpp | |
2465 | src/xrc/xh_gauge.cpp | |
2466 | src/xrc/xh_gdctl.cpp | |
2467 | src/xrc/xh_html.cpp | |
2468 | src/xrc/xh_listb.cpp | |
2469 | src/xrc/xh_listc.cpp | |
2470 | src/xrc/xh_menu.cpp | |
2471 | src/xrc/xh_notbk.cpp | |
2472 | src/xrc/xh_panel.cpp | |
2473 | src/xrc/xh_radbt.cpp | |
2474 | src/xrc/xh_radbx.cpp | |
2475 | src/xrc/xh_scrol.cpp | |
2476 | src/xrc/xh_scwin.cpp | |
2477 | src/xrc/xh_sizer.cpp | |
2478 | src/xrc/xh_slidr.cpp | |
2479 | src/xrc/xh_spin.cpp | |
2480 | src/xrc/xh_split.cpp | |
2481 | src/xrc/xh_statbar.cpp | |
2482 | src/xrc/xh_stbmp.cpp | |
2483 | src/xrc/xh_stbox.cpp | |
2484 | src/xrc/xh_stlin.cpp | |
2485 | src/xrc/xh_sttxt.cpp | |
2486 | src/xrc/xh_text.cpp | |
2487 | src/xrc/xh_tglbtn.cpp | |
2488 | src/xrc/xh_toolb.cpp | |
2489 | src/xrc/xh_tree.cpp | |
2490 | src/xrc/xh_unkwn.cpp | |
2491 | src/xrc/xh_wizrd.cpp | |
2492 | src/xrc/xmlres.cpp | |
2493 | src/xrc/xmlrsall.cpp | |
2494 | </set> | |
2495 | <set var="XRC_HDR" hints="files"> | |
2496 | wx/xrc/xh_all.h | |
2497 | wx/xrc/xh_bmpbt.h | |
2498 | wx/xrc/xh_bmp.h | |
2499 | wx/xrc/xh_bttn.h | |
2500 | wx/xrc/xh_cald.h | |
2501 | wx/xrc/xh_chckb.h | |
2502 | wx/xrc/xh_chckl.h | |
2503 | wx/xrc/xh_choic.h | |
2504 | wx/xrc/xh_combo.h | |
2505 | wx/xrc/xh_dlg.h | |
2506 | wx/xrc/xh_frame.h | |
2507 | wx/xrc/xh_gauge.h | |
2508 | wx/xrc/xh_gdctl.h | |
2509 | wx/xrc/xh_html.h | |
2510 | wx/xrc/xh_listb.h | |
2511 | wx/xrc/xh_listc.h | |
2512 | wx/xrc/xh_menu.h | |
2513 | wx/xrc/xh_notbk.h | |
2514 | wx/xrc/xh_panel.h | |
2515 | wx/xrc/xh_radbt.h | |
2516 | wx/xrc/xh_radbx.h | |
2517 | wx/xrc/xh_scrol.h | |
2518 | wx/xrc/xh_scwin.h | |
2519 | wx/xrc/xh_sizer.h | |
2520 | wx/xrc/xh_slidr.h | |
2521 | wx/xrc/xh_spin.h | |
2522 | wx/xrc/xh_split.h | |
2523 | wx/xrc/xh_statbar.h | |
2524 | wx/xrc/xh_stbmp.h | |
2525 | wx/xrc/xh_stbox.h | |
2526 | wx/xrc/xh_stlin.h | |
2527 | wx/xrc/xh_sttxt.h | |
2528 | wx/xrc/xh_text.h | |
2529 | wx/xrc/xh_tglbtn.h | |
2530 | wx/xrc/xh_toolb.h | |
2531 | wx/xrc/xh_tree.h | |
2532 | wx/xrc/xh_unkwn.h | |
2533 | wx/xrc/xh_wizrd.h | |
2534 | wx/xrc/xmlres.h | |
2535 | </set> | |
2536 | ||
2537 | ||
2538 | ||
2539 | ||
2540 | <!-- ====================================================================== --> | |
2541 | <!-- XML classes --> | |
2542 | <!-- ====================================================================== --> | |
2543 | ||
2544 | <set var="XML_SRC" hints="files"> | |
2545 | src/xml/xml.cpp | |
2546 | src/common/xtixml.cpp <!-- FIXME - temporary solution --> | |
2547 | </set> | |
2548 | <set var="XML_HDR" hints="files"> | |
2549 | wx/xml/xml.h | |
2550 | wx/xtixml.h <!-- FIXME - temporary solution --> | |
2551 | </set> | |
2552 | ||
2553 | ||
2554 | <!-- ====================================================================== --> | |
2555 | <!-- OpenGL canvas --> | |
2556 | <!-- ====================================================================== --> | |
2557 | ||
2558 | <set var="OPENGL_SRC" hints="files"> | |
2559 | <if cond="TOOLKIT=='MAC'">src/mac/carbon/glcanvas.cpp</if> | |
2560 | <if cond="TOOLKIT=='COCOA'">src/cocoa/glcanvas.mm</if> | |
2561 | <if cond="TOOLKIT=='GTK'">src/gtk/glcanvas.cpp</if> | |
2562 | <if cond="TOOLKIT=='MSW'">src/msw/glcanvas.cpp</if> | |
2563 | <if cond="TOOLKIT=='WINCE'">src/msw/glcanvas.cpp</if> | |
2564 | <if cond="TOOLKIT=='MOTIF'">src/x11/glcanvas.cpp</if> | |
2565 | <if cond="TOOLKIT=='X11'">src/x11/glcanvas.cpp</if> | |
2566 | <if cond="TOOLKIT=='PM'">src/os2/glcanvas.cpp</if> | |
2567 | </set> | |
2568 | ||
2569 | <set var="OPENGL_HDR" hints="files"> | |
2570 | <if cond="TOOLKIT=='MAC'">wx/mac/carbon/glcanvas.h</if> | |
2571 | <if cond="TOOLKIT=='COCOA'">wx/cocoa/glcanvas.h</if> | |
2572 | <if cond="TOOLKIT=='GTK'">wx/gtk/glcanvas.h</if> | |
2573 | <if cond="TOOLKIT=='MSW'">wx/msw/glcanvas.h</if> | |
2574 | <if cond="TOOLKIT=='WINCE'">wx/msw/glcanvas.h</if> | |
2575 | <if cond="TOOLKIT=='MOTIF'">wx/x11/glcanvas.h</if> | |
2576 | <if cond="TOOLKIT=='X11'">wx/x11/glcanvas.h</if> | |
2577 | <if cond="TOOLKIT=='PM'">wx/os2/glcanvas.h</if> | |
2578 | </set> | |
2579 | ||
2580 | ||
2581 | ||
2582 | <!-- ====================================================================== --> | |
2583 | <!-- ODBC classes --> | |
2584 | <!-- ====================================================================== --> | |
2585 | ||
2586 | <set var="ODBC_SRC" hints="files"> | |
2587 | src/common/db.cpp | |
2588 | src/common/dbtable.cpp | |
2589 | </set> | |
2590 | <set var="ODBC_HDR" hints="files"> | |
2591 | wx/db.h | |
2592 | wx/dbkeyg.h | |
2593 | wx/dbtable.h | |
2594 | </set> | |
2595 | ||
2596 | <set var="DBGRID_SRC" hints="files"> | |
2597 | src/common/dbgrid.cpp | |
2598 | </set> | |
2599 | <set var="DBGRID_HDR" hints="files"> | |
2600 | wx/dbgrid.h | |
2601 | </set> | |
2602 | ||
2603 | ||
2604 | <!-- ====================================================================== --> | |
2605 | <!-- Misc plugin sources: --> | |
2606 | <!-- ====================================================================== --> | |
2607 | ||
2608 | <set var="UNIX_SOUND_SRC_SDL" hints="files"> | |
2609 | src/unix/sound_sdl.cpp | |
2610 | </set> | |
2611 | ||
2612 | <set var="GTK_PRINT_SRC_GNOME" hints="files"> | |
2613 | src/gtk/gnome/gprint.cpp | |
2614 | </set> | |
2615 | ||
2616 | <!-- ====================================================================== --> | |
2617 | <!-- Define sources for specific libraries: --> | |
2618 | <!-- ====================================================================== --> | |
2619 | ||
2620 | <!-- wxBase files: --> | |
2621 | ||
2622 | <!-- Nested if would be nicer, but this works --> | |
2623 | <!-- These are the files for PLATFORM_MACOSX --> | |
2624 | <set var="BASE_MACOSX_SRC" hints="files"> | |
2625 | <if cond="TOOLKIT=='MAC'">$(BASE_MAC_SRC) $(BASE_MAC_OSX_SRC)</if> | |
2626 | <if cond="TOOLKIT=='COCOA'">$(BASE_DARWIN_SRC)</if> | |
2627 | <if cond="TOOLKIT=='GTK'">$(BASE_DARWIN_SRC)</if> | |
2628 | <if cond="TOOLKIT=='X11'">$(BASE_DARWIN_SRC)</if> | |
2629 | <if cond="TOOLKIT=='MOTIF'">$(BASE_DARWIN_SRC)</if> | |
2630 | <!-- FIXME: TOOLKIT!='MAC' is what we really want --> | |
2631 | ||
2632 | <!-- FIXME: a hack because there are two wxBase versions on | |
2633 | Mac; once fixed, this would no longer be needed --> | |
2634 | <if cond="TOOLKIT==''">$(BASE_DARWIN_SRC)</if> | |
2635 | </set> | |
2636 | <set var="BASE_PLATFORM_SRC" hints="files"> | |
2637 | <if cond="PLATFORM_UNIX=='1'">$(BASE_UNIX_SRC)</if> | |
2638 | <if cond="PLATFORM_WIN32=='1'">$(BASE_WIN32_SRC) $(BASE_WINCE_SRC)</if> | |
2639 | <if cond="PLATFORM_MACOSX=='1'">$(BASE_MACOSX_SRC)</if> | |
2640 | <if cond="PLATFORM_MACOS=='1'">$(BASE_MAC_SRC) $(BASE_MAC_CARBONLIB_SRC)</if> | |
2641 | <if cond="PLATFORM_OS2=='1'">$(BASE_OS2_SRC)</if> | |
2642 | </set> | |
2643 | <set var="BASE_AND_GUI_TOOLKIT_SRC" hints="files"> | |
2644 | <if cond="TOOLKIT=='MAC'">$(BASE_AND_GUI_MAC_SRC)</if> | |
2645 | </set> | |
2646 | <set var="BASE_AND_GUI_PLATFORM_SRC" hints="files"> | |
2647 | <if cond="PLATFORM_UNIX=='1'">$(BASE_AND_GUI_UNIX_SRC)</if> | |
2648 | <if cond="PLATFORM_WIN32=='1'">$(BASE_AND_GUI_WIN32_SRC)</if> | |
2649 | <if cond="PLATFORM_MACOSX=='1'">$(BASE_AND_GUI_UNIX_SRC)</if> | |
2650 | <!-- At the moment, BASE_AND_GUI_TOOLKIT_SRC handles this --> | |
2651 | <!-- if cond="PLATFORM_MACOS=='1'">$(BASE_AND_GUI_MAC_SRC)</if --> | |
2652 | </set> | |
2653 | <set var="BASE_PLATFORM_HDR" hints="files"> | |
2654 | <if cond="PLATFORM_UNIX=='1'">$(BASE_UNIX_HDR)</if> | |
2655 | <if cond="PLATFORM_WIN32=='1'">$(BASE_WIN32_HDR) $(BASE_WINCE_HDR)</if> | |
2656 | <if cond="TOOLKIT=='MAC'">$(BASE_MAC_HDR) $(BASE_MAC_OSX_HDR)</if> | |
2657 | <if cond="TOOLKIT=='COCOA'">$(BASE_UNIX_HDR)</if> | |
2658 | </set> | |
2659 | ||
2660 | <set var="BASE_SRC" hints="files"> | |
2661 | $(BASE_CMN_SRC) $(BASE_PLATFORM_SRC) | |
2662 | </set> | |
2663 | <set var="BASE_AND_GUI_SRC" hints="files"> | |
2664 | $(BASE_AND_GUI_CMN_SRC) | |
2665 | $(BASE_AND_GUI_PLATFORM_SRC) $(BASE_AND_GUI_TOOLKIT_SRC) | |
2666 | </set> | |
2667 | ||
2668 | ||
2669 | <!-- wxNet files: --> | |
2670 | <set var="NET_PLATFORM_SRC" hints="files"> | |
2671 | <if cond="PLATFORM_UNIX=='1'">$(NET_UNIX_SRC)</if> | |
2672 | <if cond="PLATFORM_WIN32=='1'">$(NET_WIN32_SRC) $(NET_WINCE_SRC)</if> | |
2673 | <if cond="PLATFORM_MACOSX=='1'">$(NET_UNIX_SRC)</if> | |
2674 | <if cond="PLATFORM_MACOS=='1'">$(NET_MAC_CARBONLIB_SRC)</if> | |
2675 | <if cond="PLATFORM_OS2=='1'">$(NET_OS2_SRC)</if> | |
2676 | </set> | |
2677 | <set var="NET_PLATFORM_HDR" hints="files"> | |
2678 | <if cond="PLATFORM_UNIX=='1'">$(NET_UNIX_HDR)</if> | |
2679 | <if cond="PLATFORM_WIN32=='1'">$(NET_WIN32_HDR) $(NET_WINCE_HDR)</if> | |
2680 | <if cond="PLATFORM_OS2=='1'">$(NET_OS2_HDR)</if> | |
2681 | <if cond="PLATFORM_MACOSX=='1'">$(NET_UNIX_HDR)</if> | |
2682 | <if cond="PLATFORM_MACOS=='1'">$(NET_MAC_CARBONLIB_HDR)</if> | |
2683 | </set> | |
2684 | ||
2685 | <set var="NET_SRC" hints="files"> | |
2686 | $(NET_CMN_SRC) $(NET_PLATFORM_SRC) | |
2687 | </set> | |
2688 | ||
2689 | ||
2690 | <!-- GUI sources: --> | |
2691 | ||
2692 | <set var="LOWLEVEL_SRC" hints="files"> | |
2693 | <if cond="TOOLKIT=='GTK'">$(GTK_LOWLEVEL_SRC)</if> | |
2694 | <if cond="TOOLKIT=='MOTIF'">$(MOTIF_LOWLEVEL_SRC)</if> | |
2695 | <if cond="TOOLKIT=='MSW'">$(MSW_LOWLEVEL_SRC) $(MSW_ONLY_LOWLEVEL_SRC)</if> | |
2696 | <if cond="TOOLKIT=='WINCE'">$(MSW_LOWLEVEL_SRC)</if> | |
2697 | <if cond="TOOLKIT=='MAC'">$(MAC_LOWLEVEL_SRC)</if> | |
2698 | <if cond="TOOLKIT=='COCOA'">$(COCOA_LOWLEVEL_SRC)</if> | |
2699 | <if cond="TOOLKIT=='PM'">$(OS2_LOWLEVEL_SRC)</if> | |
2700 | <if cond="TOOLKIT=='X11'">$(X11_LOWLEVEL_SRC)</if> | |
2701 | <if cond="TOOLKIT=='MGL'">$(MGL_LOWLEVEL_SRC)</if> | |
2702 | </set> | |
2703 | <set var="LOWLEVEL_HDR" hints="files"> | |
2704 | <if cond="TOOLKIT=='GTK'">$(GTK_LOWLEVEL_HDR)</if> | |
2705 | <if cond="TOOLKIT=='MOTIF'">$(MOTIF_LOWLEVEL_HDR)</if> | |
2706 | <if cond="TOOLKIT=='MSW'">$(MSW_LOWLEVEL_HDR)</if> | |
2707 | <if cond="TOOLKIT=='WINCE'">$(MSW_LOWLEVEL_HDR)</if> | |
2708 | <if cond="TOOLKIT=='MAC'">$(MAC_LOWLEVEL_HDR)</if> | |
2709 | <if cond="TOOLKIT=='COCOA'">$(COCOA_LOWLEVEL_HDR)</if> | |
2710 | <if cond="TOOLKIT=='PM'">$(OS2_LOWLEVEL_HDR)</if> | |
2711 | <if cond="TOOLKIT=='X11'">$(X11_LOWLEVEL_HDR)</if> | |
2712 | <if cond="TOOLKIT=='MGL'">$(MGL_LOWLEVEL_HDR)</if> | |
2713 | </set> | |
2714 | ||
2715 | <set var="GUI_SRC" hints="files"> | |
2716 | <if cond="TOOLKIT=='GTK'">$(GTK_SRC)</if> | |
2717 | <if cond="TOOLKIT=='MOTIF'">$(MOTIF_SRC)</if> | |
2718 | <if cond="TOOLKIT=='MSW'">$(MSW_SRC) $(MSW_ONLY_SRC)</if> | |
2719 | <if cond="TOOLKIT=='WINCE'">$(MSW_SRC) $(WINCE_SRC)</if> | |
2720 | <if cond="TOOLKIT=='MAC'">$(MAC_SRC) $(MAC_OSX_SRC)</if> | |
2721 | <if cond="TOOLKIT=='COCOA'">$(COCOA_SRC)</if> | |
2722 | <if cond="TOOLKIT=='PM'">$(OS2_SRC)</if> | |
2723 | </set> | |
2724 | <set var="GUI_HDR" hints="files"> | |
2725 | <if cond="TOOLKIT=='GTK'">$(GTK_HDR)</if> | |
2726 | <if cond="TOOLKIT=='MOTIF'">$(MOTIF_HDR)</if> | |
2727 | <if cond="TOOLKIT=='MSW'">$(MSW_HDR) $(MSW_ONLY_HDR)</if> | |
2728 | <if cond="TOOLKIT=='WINCE'">$(MSW_HDR) $(WINCE_HDR)</if> | |
2729 | <if cond="TOOLKIT=='MAC'">$(MAC_CMN_HDR) $(MAC_HDR)</if> | |
2730 | <if cond="TOOLKIT=='COCOA'">$(COCOA_HDR)</if> | |
2731 | <if cond="TOOLKIT=='PM'">$(OS2_HDR)</if> | |
2732 | </set> | |
2733 | ||
2734 | <set var="CORE_SRC" hints="files"> | |
2735 | <if cond="USE_GUI=='1' and WXUNIV=='0'"> | |
2736 | $(LOWLEVEL_SRC) $(GUI_SRC) $(GUI_CMN_SRC) | |
2737 | </if> | |
2738 | <if cond="USE_GUI=='1' and WXUNIV=='1'"> | |
2739 | $(LOWLEVEL_SRC) $(UNIV_SRC) $(UNIV_THEMES_SRC) $(GUI_CMN_SRC) | |
2740 | </if> | |
2741 | </set> | |
2742 | ||
2743 | <!-- wxAdvanced files: --> | |
2744 | <set var="ADVANCED_PLATFORM_SRC" hints="files"> | |
2745 | <if cond="TOOLKIT=='MSW'">$(ADVANCED_MSW_SRC) $(ADVANCED_MSW_ONLY_SRC)</if> | |
2746 | <if cond="TOOLKIT=='WINCE'">$(ADVANCED_MSW_SRC)</if> | |
2747 | <if cond="TOOLKIT=='MAC'">$(ADVANCED_MAC_SRC)</if> | |
2748 | <if cond="TOOLKIT=='COCOA'">$(ADVANCED_COCOA_SRC)</if> | |
2749 | <if cond="TOOLKIT=='MOTIF'">$(ADVANCED_UNIX_SRC)</if> | |
2750 | <if cond="TOOLKIT=='GTK'">$(ADVANCED_UNIX_SRC) $(ADVANCED_GTK_SRC)</if> | |
2751 | <if cond="TOOLKIT=='X11'">$(ADVANCED_UNIX_SRC)</if> | |
2752 | <if cond="TOOLKIT=='PM'">$(ADVANCED_OS2_SRC)</if> | |
2753 | </set> | |
2754 | <set var="ADVANCED_PLATFORM_HDR" hints="files"> | |
2755 | <if cond="TOOLKIT=='MSW'">$(ADVANCED_MSW_HDR) $(ADVANCED_MSW_ONLY_HDR)</if> | |
2756 | <if cond="TOOLKIT=='WINCE'">$(ADVANCED_MSW_HDR)</if> | |
2757 | <if cond="TOOLKIT=='MAC'">$(ADVANCED_MAC_HDR)</if> | |
2758 | <if cond="TOOLKIT=='COCOA'">$(ADVANCED_COCOA_HDR)</if> | |
2759 | <if cond="TOOLKIT=='MOTIF'">$(ADVANCED_UNIX_HDR)</if> | |
2760 | <if cond="TOOLKIT=='GTK'">$(ADVANCED_UNIX_HDR)</if> | |
2761 | <if cond="TOOLKIT=='X11'">$(ADVANCED_UNIX_HDR)</if> | |
2762 | <if cond="TOOLKIT=='PM'">$(ADVANCED_OS2_HDR)</if> | |
2763 | </set> | |
2764 | <set var="ADVANCED_SRC">$(ADVANCED_CMN_SRC) $(ADVANCED_PLATFORM_SRC)</set> | |
2765 | <set var="ADVANCED_HDR">$(ADVANCED_CMN_HDR) $(ADVANCED_PLATFORM_HDR)</set> | |
2766 | ||
2767 | <!-- wxMedia files: --> | |
2768 | <set var="MEDIA_PLATFORM_SRC" hints="files"> | |
2769 | <if cond="TOOLKIT=='MSW'">$(MEDIA_MSW_SRC) $(MEDIA_MSW_ONLY_SRC)</if> | |
2770 | <if cond="TOOLKIT=='WINCE'">$(MEDIA_MSW_SRC)</if> | |
2771 | <if cond="TOOLKIT=='MAC'">$(MEDIA_MAC_SRC)</if> | |
2772 | <if cond="TOOLKIT=='COCOA'">$(MEDIA_COCOA_SRC)</if> | |
2773 | <if cond="TOOLKIT=='MOTIF'">$(MEDIA_UNIX_SRC)</if> | |
2774 | <if cond="TOOLKIT=='GTK'">$(MEDIA_UNIX_SRC) $(MEDIA_GTK_SRC)</if> | |
2775 | <if cond="TOOLKIT=='X11'">$(MEDIA_UNIX_SRC)</if> | |
2776 | <if cond="TOOLKIT=='PM'">$(MEDIA_OS2_SRC)</if> | |
2777 | </set> | |
2778 | <set var="MEDIA_PLATFORM_HDR" hints="files"> | |
2779 | <if cond="TOOLKIT=='MSW'">$(MEDIA_MSW_HDR) $(MEDIA_MSW_ONLY_HDR)</if> | |
2780 | <if cond="TOOLKIT=='WINCE'">$(MEDIA_MSW_HDR)</if> | |
2781 | <if cond="TOOLKIT=='MAC'">$(MEDIA_MAC_HDR)</if> | |
2782 | <if cond="TOOLKIT=='COCOA'">$(MEDIA_COCOA_HDR)</if> | |
2783 | <if cond="TOOLKIT=='MOTIF'">$(MEDIA_UNIX_HDR)</if> | |
2784 | <if cond="TOOLKIT=='GTK'">$(MEDIA_UNIX_HDR)</if> | |
2785 | <if cond="TOOLKIT=='X11'">$(MEDIA_UNIX_HDR)</if> | |
2786 | <if cond="TOOLKIT=='PM'">$(MEDIA_OS2_HDR)</if> | |
2787 | </set> | |
2788 | <set var="MEDIA_SRC">$(MEDIA_CMN_SRC) $(MEDIA_PLATFORM_SRC)</set> | |
2789 | <set var="MEDIA_HDR">$(MEDIA_CMN_HDR) $(MEDIA_PLATFORM_HDR)</set> | |
2790 | ||
2791 | ||
2792 | <set var="GUI_CORE_HEADERS" hints="files"> | |
2793 | <if cond="USE_GUI=='1' and WXUNIV=='0'">$(GUI_HDR)</if> | |
2794 | <if cond="USE_GUI=='1' and WXUNIV=='1'">$(UNIV_HDR)</if> | |
2795 | </set> | |
2796 | ||
2797 | <set var="ALL_GUI_HEADERS" hints="files"> | |
2798 | <if cond="USE_GUI=='1'"> | |
2799 | $(GUI_CMN_HDR) | |
2800 | $(LOWLEVEL_HDR) | |
2801 | $(GUI_CORE_HEADERS) | |
2802 | $(ADVANCED_HDR) $(MEDIA_HDR) $(HTML_HDR) | |
2803 | $(OPENGL_HDR) $(DBGRID_HDR) $(XRC_HDR) | |
2804 | </if> | |
2805 | </set> | |
2806 | ||
2807 | ||
2808 | <set var="ALL_BASE_HEADERS" make_var="1" hints="files"> | |
2809 | $(BASE_CMN_HDR) $(BASE_PLATFORM_HDR) | |
2810 | $(NET_CMN_HDR) $(NET_PLATFORM_HDR) | |
2811 | $(XML_HDR) $(ODBC_HDR) | |
2812 | </set> | |
2813 | ||
2814 | <set var="ALL_HEADERS" make_var="1" hints="files"> | |
2815 | $(ALL_BASE_HEADERS) $(ALL_GUI_HEADERS) | |
2816 | </set> | |
2817 | ||
2818 | <set var="ALL_BASE_SOURCES" make_var="1" hints="files"> | |
2819 | $(BASE_CMN_SRC) | |
2820 | $(BASE_UNIX_SRC) $(BASE_WIN32_SRC) $(BASE_WINCE_SRC) | |
2821 | $(BASE_MAC_SRC) | |
2822 | $(BASE_OS2_SRC) | |
2823 | $(BASE_AND_GUI_CMN_SRC) | |
2824 | $(BASE_AND_GUI_UNIX_SRC) | |
2825 | $(BASE_AND_GUI_MAC_SRC) | |
2826 | $(BASE_AND_GUI_WIN32_SRC) | |
2827 | $(NET_CMN_SRC) $(NET_UNIX_SRC) $(NET_WIN32_SRC) $(NET_WINCE_SRC) | |
2828 | $(XML_SRC) $(ODBC_SRC) | |
2829 | </set> | |
2830 | ||
2831 | ||
2832 | ||
2833 | <!-- ================================================================ --> | |
2834 | <!-- Define where plugins sources go if USE_PLUGINS=0 --> | |
2835 | <!-- ================================================================ --> | |
2836 | ||
2837 | <!-- wxAdv sources --> | |
2838 | <set var="PLUGIN_ADV_SRC"> | |
2839 | <if cond="FORMAT=='autoconf' and PLATFORM_UNIX=='1' and USE_PLUGINS=='0'"> | |
2840 | $(UNIX_SOUND_SRC_SDL) | |
2841 | $(GTK_PRINT_SRC_GNOME) | |
2842 | </if> | |
2843 | </set> | |
2844 | ||
2845 | <set var="PLUGIN_MONOLIB_SRC">$(PLUGIN_ADV_SRC)</set> | |
2846 | ||
2847 | </makefile> |