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