]>
Commit | Line | Data |
---|---|---|
ddf98968 VS |
1 | <?xml version="1.0" ?> |
2 | <!-- $Id$ --> | |
3 | <makefile> | |
4 | ||
5df6736f VS |
5 | <!-- |
6 | ||
7 | IMPORTANT: please read docs/tech/tn0016.txt before modifying this file! | |
8 | ||
9 | --> | |
21041c70 VS |
10 | |
11 | ||
ddf98968 VS |
12 | <!-- ====================================================================== |
13 | FILES | |
88f23fdd | 14 | |
ddf98968 VS |
15 | Files are listed in variables according to this scheme: |
16 | * each group has _SRC and _HDR variable, for sources and headers | |
17 | respectively | |
18 | * file groups are: | |
19 | ||
e86e1522 VS |
20 | BASE_CMN common base files (all platforms) |
21 | GUI_CMN common GUI files (all platforms) | |
22 | BASE_AND_GUI_CMN_SRC files that must be compiled both into GUI | |
23 | and base library (all platforms) | |
ddf98968 | 24 | |
e86e1522 VS |
25 | BASE_$(platform) base files used on platform |
26 | BASE_AND_GUI_$(platform)_SRC base & gui files used on platform | |
88f23fdd | 27 | |
e86e1522 VS |
28 | $(port)LOWLEVEL low-level GUI classes |
29 | $(port) high-level files for a port | |
88f23fdd | 30 | XWIN_LOWLEVEL low-level classes for X Window System |
1f6c7c44 | 31 | ports (wxGTK, wxMotif, wxX11) |
ddf98968 | 32 | |
e86e1522 | 33 | HTML wxHTML files |
88f23fdd | 34 | |
ddf98968 | 35 | * one file may be listed in several groups |
88f23fdd | 36 | |
ddf98968 VS |
37 | ====================================================================== --> |
38 | ||
39 | ||
40 | ||
ddf98968 VS |
41 | <!-- ====================================================================== --> |
42 | <!-- wxBase --> | |
43 | <!-- ====================================================================== --> | |
44 | ||
22d2b5bf | 45 | <set var="BASE_UNIX_SRC" hints="files"> |
9a90985d | 46 | src/unix/baseunix.cpp |
ddf98968 | 47 | src/unix/dir.cpp |
ddf98968 VS |
48 | src/unix/mimetype.cpp |
49 | src/unix/snglinst.cpp | |
50 | src/unix/threadpsx.cpp | |
e86e1522 | 51 | </set> |
22d2b5bf | 52 | <set var="BASE_AND_GUI_UNIX_SRC" hints="files"> |
ddf98968 VS |
53 | src/unix/utilsunx.cpp |
54 | </set> | |
22d2b5bf | 55 | <set var="BASE_UNIX_HDR" hints="files"> |
ca58c9bb VS |
56 | wx/unix/apptbase.h |
57 | wx/unix/apptrait.h | |
58 | wx/unix/execute.h | |
ddf98968 | 59 | wx/unix/mimetype.h |
ca58c9bb | 60 | wx/unix/pipe.h |
ddf98968 | 61 | </set> |
e86e1522 | 62 | |
22d2b5bf | 63 | <set var="BASE_WIN32_SRC" hints="files"> |
9a90985d | 64 | src/msw/basemsw.cpp |
5df6736f | 65 | src/msw/crashrpt.cpp |
ddf98968 VS |
66 | src/msw/dde.cpp |
67 | src/msw/dir.cpp | |
ddf98968 VS |
68 | src/msw/mimetype.cpp |
69 | src/msw/regconf.cpp | |
70 | src/msw/registry.cpp | |
71 | src/msw/snglinst.cpp | |
72 | src/msw/thread.cpp | |
73 | src/msw/utils.cpp | |
74 | src/msw/utilsexc.cpp | |
e86e1522 | 75 | </set> |
22d2b5bf | 76 | <set var="BASE_AND_GUI_WIN32_SRC" hints="files"> |
7340bea2 | 77 | src/msw/main.cpp |
e86e1522 | 78 | src/msw/mslu.cpp |
ddf98968 VS |
79 | src/msw/volume.cpp |
80 | </set> | |
22d2b5bf | 81 | <set var="BASE_WIN32_HDR" hints="files"> |
ca58c9bb VS |
82 | wx/msw/apptrait.h |
83 | wx/msw/apptbase.h | |
5df6736f VS |
84 | wx/msw/chkconf.h |
85 | wx/msw/crashrpt.h | |
ddf98968 VS |
86 | wx/msw/dde.h |
87 | wx/msw/gccpriv.h | |
88 | wx/msw/mimetype.h | |
89 | wx/msw/winundef.h | |
0d236fd0 | 90 | wx/msw/wrapcctl.h |
d7e91db2 | 91 | wx/msw/wrapwin.h |
ddf98968 | 92 | </set> |
e86e1522 | 93 | |
22d2b5bf | 94 | <set var="BASE_DARWIN_SRC" hints="files"> |
d8f97a0c | 95 | src/unix/baseunix.cpp |
80210383 | 96 | src/unix/dir.cpp |
fd8668e4 DE |
97 | src/unix/mimetype.cpp |
98 | src/unix/snglinst.cpp | |
99 | src/unix/threadpsx.cpp | |
ddf98968 | 100 | </set> |
22d2b5bf | 101 | <set var="BASE_AND_GUI_DARWIN_SRC" hints="files"> |
9feb7716 VS |
102 | src/unix/utilsunx.cpp |
103 | </set> | |
22d2b5bf | 104 | <set var="BASE_DARWIN_HDR" hints="files"> |
9feb7716 VS |
105 | </set> |
106 | ||
22d2b5bf | 107 | <set var="BASE_MAC_SRC" hints="files"> |
9feb7716 | 108 | src/mac/dirmac.cpp |
9feb7716 | 109 | src/mac/mimetmac.cpp |
8b509749 | 110 | src/unix/baseunix.cpp |
f3f7aa2c | 111 | src/mac/utilsexc.cpp |
2dbc444a RD |
112 | src/mac/thread.cpp |
113 | src/mac/macnotfy.cpp | |
114 | src/mac/morefilex/MoreFilesX.c | |
8b509749 VS |
115 | </set> |
116 | ||
117 | <set var="BASE_AND_GUI_MAC_SRC" hints="files"> | |
9feb7716 | 118 | src/mac/utils.cpp |
2dbc444a | 119 | src/mac/uma.cpp |
9feb7716 | 120 | </set> |
8b509749 | 121 | |
22d2b5bf | 122 | <set var="BASE_MAC_HDR" hints="files"> |
ddf98968 | 123 | </set> |
e86e1522 | 124 | |
22d2b5bf | 125 | <set var="BASE_OS2_SRC" hints="files"> |
ddf98968 | 126 | src/os2/dir.cpp |
5cc55caf SN |
127 | src/os2/mimetype.cpp |
128 | src/os2/thread.cpp | |
ddf98968 VS |
129 | src/os2/utils.cpp |
130 | src/os2/utilsexc.cpp | |
131 | </set> | |
22d2b5bf | 132 | <set var="BASE_AND_GUI_OS2_SRC" hints="files"> |
e86e1522 | 133 | </set> |
22d2b5bf | 134 | <set var="BASE_OS2_HDR" hints="files"> |
ddf98968 | 135 | </set> |
e86e1522 | 136 | |
22d2b5bf | 137 | <set var="BASE_CMN_SRC" hints="files"> |
9a90985d | 138 | src/common/appbase.cpp |
ddf98968 VS |
139 | src/common/clntdata.cpp |
140 | src/common/cmdline.cpp | |
141 | src/common/config.cpp | |
ddf98968 VS |
142 | src/common/datetime.cpp |
143 | src/common/datstrm.cpp | |
ddf98968 VS |
144 | src/common/dircmn.cpp |
145 | src/common/dynarray.cpp | |
146 | src/common/dynlib.cpp | |
147 | src/common/dynload.cpp | |
148 | src/common/encconv.cpp | |
ddf98968 VS |
149 | src/common/extended.c |
150 | src/common/ffile.cpp | |
151 | src/common/file.cpp | |
152 | src/common/fileconf.cpp | |
153 | src/common/filefn.cpp | |
154 | src/common/filename.cpp | |
155 | src/common/filesys.cpp | |
9a90985d | 156 | src/common/fmapbase.cpp |
ddf98968 | 157 | src/common/fs_zip.cpp |
6f96ac03 | 158 | src/common/gzstream.cpp |
ddf98968 VS |
159 | src/common/hash.cpp |
160 | src/common/hashmap.cpp | |
4f4a180e | 161 | src/common/init.cpp |
ddf98968 VS |
162 | src/common/intl.cpp |
163 | src/common/ipcbase.cpp | |
164 | src/common/list.cpp | |
165 | src/common/log.cpp | |
166 | src/common/longlong.cpp | |
167 | src/common/memory.cpp | |
168 | src/common/mimecmn.cpp | |
169 | src/common/module.cpp | |
ddf98968 VS |
170 | src/common/mstream.cpp |
171 | src/common/object.cpp | |
172 | src/common/process.cpp | |
ddf98968 | 173 | src/common/regex.cpp |
9a90985d | 174 | src/common/stopwatch.cpp |
ddf98968 VS |
175 | src/common/strconv.cpp |
176 | src/common/stream.cpp | |
177 | src/common/string.cpp | |
178 | src/common/sysopt.cpp | |
179 | src/common/textbuf.cpp | |
180 | src/common/textfile.cpp | |
ddf98968 VS |
181 | src/common/tokenzr.cpp |
182 | src/common/txtstrm.cpp | |
183 | src/common/unzip.c | |
ddf98968 VS |
184 | src/common/variant.cpp |
185 | src/common/wfstream.cpp | |
186 | src/common/wxchar.cpp | |
9c6cef05 JS |
187 | src/common/xti.cpp |
188 | src/common/xtistrm.cpp | |
ddf98968 VS |
189 | src/common/zipstrm.cpp |
190 | src/common/zstream.cpp | |
191 | </set> | |
22d2b5bf | 192 | <set var="BASE_AND_GUI_CMN_SRC" hints="files"> |
075131fd | 193 | src/common/event.cpp |
e86e1522 VS |
194 | src/common/fs_mem.cpp |
195 | src/common/msgout.cpp | |
196 | src/common/utilscmn.cpp | |
197 | </set> | |
22d2b5bf | 198 | <set var="BASE_CMN_HDR" hints="files"> |
21041c70 | 199 | wx/afterstd.h |
5df6736f | 200 | wx/app.h |
eb9dd149 | 201 | wx/apptrait.h |
ddf98968 | 202 | wx/arrimpl.cpp |
5df6736f VS |
203 | wx/arrstr.h |
204 | wx/beforestd.h | |
ddf98968 VS |
205 | wx/buffer.h |
206 | wx/build.h | |
207 | wx/chkconf.h | |
208 | wx/clntdata.h | |
209 | wx/cmdline.h | |
210 | wx/confbase.h | |
211 | wx/config.h | |
5df6736f | 212 | wx/containr.h |
ddf98968 VS |
213 | wx/datetime.h |
214 | wx/datetime.inl | |
215 | wx/datstrm.h | |
ddf98968 VS |
216 | wx/dde.h |
217 | wx/debug.h | |
218 | wx/defs.h | |
219 | wx/dir.h | |
0cc66b6c | 220 | wx/dlimpexp.h |
ddf98968 VS |
221 | wx/dynarray.h |
222 | wx/dynlib.h | |
223 | wx/dynload.h | |
224 | wx/encconv.h | |
225 | wx/event.h | |
2524f1ce | 226 | wx/except.h |
ddf98968 VS |
227 | wx/features.h |
228 | wx/ffile.h | |
229 | wx/file.h | |
230 | wx/fileconf.h | |
231 | wx/filefn.h | |
232 | wx/filename.h | |
233 | wx/filesys.h | |
234 | wx/fontenc.h | |
235 | wx/fontmap.h | |
ddf98968 | 236 | wx/fs_mem.h |
5df6736f | 237 | wx/fs_zip.h |
6f96ac03 | 238 | wx/gzstream.h |
ddf98968 VS |
239 | wx/hash.h |
240 | wx/hashmap.h | |
ca58c9bb | 241 | wx/hashset.h |
075131fd | 242 | wx/iconloc.h |
5df6736f | 243 | wx/init.h |
ddf98968 VS |
244 | wx/intl.h |
245 | wx/iosfwrap.h | |
246 | wx/ioswrap.h | |
247 | wx/ipc.h | |
248 | wx/ipcbase.h | |
249 | wx/isql.h | |
250 | wx/isqlext.h | |
251 | wx/list.h | |
5df6736f | 252 | wx/listimpl.cpp |
ddf98968 VS |
253 | wx/log.h |
254 | wx/longlong.h | |
255 | wx/math.h | |
ddf98968 | 256 | wx/memconf.h |
5df6736f | 257 | wx/memory.h |
ddf98968 VS |
258 | wx/memtext.h |
259 | wx/mimetype.h | |
260 | wx/module.h | |
261 | wx/msgout.h | |
5df6736f | 262 | wx/msgout.h |
ddf98968 VS |
263 | wx/mstream.h |
264 | wx/object.h | |
265 | wx/platform.h | |
266 | wx/process.h | |
ca58c9bb | 267 | wx/ptr_scpd.h |
ddf98968 | 268 | wx/regex.h |
ca58c9bb | 269 | wx/scopeguard.h |
ddf98968 | 270 | wx/snglinst.h |
4048a3c8 | 271 | wx/stack.h |
21c557b8 | 272 | wx/stopwatch.h |
ddf98968 VS |
273 | wx/strconv.h |
274 | wx/stream.h | |
275 | wx/string.h | |
276 | wx/sysopt.h | |
277 | wx/textbuf.h | |
278 | wx/textfile.h | |
279 | wx/thread.h | |
280 | wx/thrimpl.cpp | |
ca58c9bb | 281 | wx/timer.h |
ddf98968 VS |
282 | wx/tokenzr.h |
283 | wx/txtstrm.h | |
5df6736f | 284 | wx/types.h |
ddf98968 VS |
285 | wx/utils.h |
286 | wx/variant.h | |
287 | wx/vector.h | |
288 | wx/version.h | |
289 | wx/volume.h | |
290 | wx/wfstream.h | |
291 | wx/wx.h | |
292 | wx/wxchar.h | |
293 | wx/wxprec.h | |
9c6cef05 JS |
294 | wx/xti.h |
295 | wx/xtistrm.h | |
ddf98968 VS |
296 | wx/zipstrm.h |
297 | wx/zstream.h | |
7c4728f6 VS |
298 | </set> |
299 | ||
300 | ||
301 | <!-- ====================================================================== --> | |
302 | <!-- wxNet (part of wxBase) --> | |
303 | <!-- ====================================================================== --> | |
304 | ||
305 | <set var="NET_UNIX_SRC" hints="files"> | |
306 | src/unix/gsocket.c | |
307 | </set> | |
308 | <set var="NET_UNIX_HDR" hints="files"> | |
309 | wx/unix/gsockunx.h | |
310 | </set> | |
311 | ||
312 | <set var="NET_WIN32_SRC" hints="files"> | |
313 | src/msw/gsocket.c | |
7c4728f6 VS |
314 | </set> |
315 | <set var="NET_WIN32_HDR" hints="files"> | |
316 | wx/msw/gsockmsw.h | |
317 | </set> | |
318 | ||
319 | <set var="NET_DARWIN_SRC" hints="files"> | |
320 | src/unix/gsocket.c | |
321 | </set> | |
322 | <set var="NET_DARWIN_HDR" hints="files"> | |
323 | wx/unix/gsockunx.h | |
324 | </set> | |
325 | ||
7c4728f6 | 326 | <set var="NET_OS2_SRC" hints="files"> |
bd3b171d | 327 | src/os2/gsocket.c |
7c4728f6 VS |
328 | </set> |
329 | <set var="NET_OS2_HDR" hints="files"> | |
bd3b171d | 330 | wx/unix/gsockunx.h |
7c4728f6 VS |
331 | </set> |
332 | ||
333 | <set var="NET_CMN_SRC" hints="files"> | |
334 | src/common/fs_inet.cpp | |
335 | src/common/ftp.cpp | |
336 | src/common/http.cpp | |
337 | src/common/protocol.cpp | |
7c4728f6 | 338 | src/common/sckaddr.cpp |
5df6736f | 339 | src/common/sckfile.cpp |
7c4728f6 VS |
340 | src/common/sckipc.cpp |
341 | src/common/sckstrm.cpp | |
342 | src/common/socket.cpp | |
5df6736f | 343 | src/common/url.cpp |
7c4728f6 VS |
344 | </set> |
345 | <set var="NET_CMN_HDR" hints="files"> | |
346 | wx/fs_inet.h | |
7c4728f6 | 347 | wx/gsocket.h |
5df6736f VS |
348 | wx/protocol/file.h |
349 | wx/protocol/ftp.h | |
350 | wx/protocol/http.h | |
351 | wx/protocol/protocol.h | |
7c4728f6 VS |
352 | wx/sckaddr.h |
353 | wx/sckipc.h | |
354 | wx/sckstrm.h | |
355 | wx/socket.h | |
5df6736f | 356 | wx/url.h |
ddf98968 VS |
357 | </set> |
358 | ||
359 | ||
360 | ||
361 | <!-- ====================================================================== --> | |
362 | <!-- Common GUI files --> | |
363 | <!-- ====================================================================== --> | |
364 | ||
22d2b5bf | 365 | <set var="GUI_CMN_SRC" hints="files"> |
ddf98968 | 366 | src/common/accesscmn.cpp |
5df6736f | 367 | src/common/appcmn.cpp |
ddf98968 VS |
368 | src/common/artprov.cpp |
369 | src/common/artstd.cpp | |
370 | src/common/bmpbase.cpp | |
16aa9c84 | 371 | src/common/bookctrl.cpp |
ddf98968 VS |
372 | src/common/choiccmn.cpp |
373 | src/common/clipcmn.cpp | |
374 | src/common/cmdproc.cpp | |
375 | src/common/cmndata.cpp | |
376 | src/common/containr.cpp | |
377 | src/common/cshelp.cpp | |
378 | src/common/ctrlcmn.cpp | |
379 | src/common/ctrlsub.cpp | |
6d7d8f3b | 380 | src/common/datacmn.cpp |
ddf98968 VS |
381 | src/common/dcbase.cpp |
382 | src/common/dlgcmn.cpp | |
383 | src/common/dndcmn.cpp | |
384 | src/common/dobjcmn.cpp | |
385 | src/common/docmdi.cpp | |
386 | src/common/docview.cpp | |
387 | src/common/dpycmn.cpp | |
388 | src/common/dseldlg.cpp | |
389 | src/common/effects.cpp | |
390 | src/common/fddlgcmn.cpp | |
7e7336a7 | 391 | src/common/fldlgcmn.cpp |
ddf98968 | 392 | src/common/fontcmn.cpp |
5df6736f | 393 | src/common/fontmap.cpp |
ddf98968 | 394 | src/common/framecmn.cpp |
ddf98968 | 395 | src/common/gaugecmn.cpp |
20b35a69 | 396 | src/common/gbsizer.cpp |
ddf98968 VS |
397 | src/common/gdicmn.cpp |
398 | src/common/geometry.cpp | |
399 | src/common/gifdecod.cpp | |
400 | src/common/helpbase.cpp | |
401 | src/common/iconbndl.cpp | |
402 | src/common/imagall.cpp | |
403 | src/common/imagbmp.cpp | |
404 | src/common/image.cpp | |
5df6736f | 405 | src/common/imagfill.cpp |
ddf98968 VS |
406 | src/common/imaggif.cpp |
407 | src/common/imagiff.cpp | |
408 | src/common/imagjpeg.cpp | |
409 | src/common/imagpcx.cpp | |
410 | src/common/imagpng.cpp | |
411 | src/common/imagpnm.cpp | |
412 | src/common/imagtiff.cpp | |
413 | src/common/imagxpm.cpp | |
414 | src/common/layout.cpp | |
415 | src/common/lboxcmn.cpp | |
416 | src/common/matrix.cpp | |
417 | src/common/menucmn.cpp | |
418 | src/common/nbkbase.cpp | |
419 | src/common/paper.cpp | |
420 | src/common/popupcmn.cpp | |
421 | src/common/prntbase.cpp | |
422 | src/common/quantize.cpp | |
423 | src/common/radiocmn.cpp | |
4a9cba9e | 424 | src/common/rendcmn.cpp |
ddf98968 VS |
425 | src/common/rgncmn.cpp |
426 | src/common/settcmn.cpp | |
427 | src/common/sizer.cpp | |
428 | src/common/statbar.cpp | |
429 | src/common/tbarbase.cpp | |
430 | src/common/textcmn.cpp | |
5df6736f VS |
431 | src/common/timercmn.cpp |
432 | src/common/toplvcmn.cpp | |
ddf98968 VS |
433 | src/common/treebase.cpp |
434 | src/common/valgen.cpp | |
435 | src/common/validate.cpp | |
436 | src/common/valtext.cpp | |
437 | src/common/wincmn.cpp | |
438 | src/common/xpmdecod.cpp | |
5df6736f | 439 | src/generic/busyinfo.cpp |
5df6736f | 440 | src/generic/choicdgg.cpp |
5df6736f VS |
441 | src/generic/dcpsg.cpp |
442 | src/generic/dirctrlg.cpp | |
443 | src/generic/dragimgg.cpp | |
16aa9c84 | 444 | src/generic/listbkg.cpp |
5df6736f VS |
445 | src/generic/logg.cpp |
446 | src/generic/numdlgg.cpp | |
447 | src/generic/panelg.cpp | |
448 | src/generic/progdlgg.cpp | |
e32f4869 | 449 | src/generic/printps.cpp |
5df6736f | 450 | src/generic/renderg.cpp |
5df6736f VS |
451 | src/generic/scrlwing.cpp |
452 | src/generic/selstore.cpp | |
453 | src/generic/spinctlg.cpp | |
5df6736f | 454 | src/generic/splitter.cpp |
5df6736f | 455 | src/generic/textdlgg.cpp |
5df6736f VS |
456 | src/generic/tipwin.cpp |
457 | src/generic/treectlg.cpp | |
458 | src/generic/vlbox.cpp | |
459 | src/generic/vscroll.cpp | |
ddf98968 | 460 | </set> |
22d2b5bf | 461 | <set var="GUI_CMN_HDR" hints="files"> |
5df6736f VS |
462 | wx/bmpbuttn.h |
463 | wx/brush.h | |
464 | wx/button.h | |
465 | wx/checkbox.h | |
466 | wx/checklst.h | |
467 | wx/choicdlg.h | |
468 | wx/choice.h | |
469 | wx/cmndata.h | |
470 | wx/combobox.h | |
471 | wx/control.h | |
472 | wx/ctrlsub.h | |
d7e91db2 | 473 | wx/cursor.h |
d7e91db2 VS |
474 | wx/dc.h |
475 | wx/dcclient.h | |
476 | wx/dcmemory.h | |
477 | wx/dcprint.h | |
478 | wx/dcscreen.h | |
d7e91db2 | 479 | wx/dialog.h |
d7e91db2 | 480 | wx/dirdlg.h |
13cb46e0 | 481 | wx/dragimag.h |
e770e665 | 482 | wx/encinfo.h |
d7e91db2 | 483 | wx/filedlg.h |
5df6736f VS |
484 | wx/frame.h |
485 | wx/gauge.h | |
20b35a69 | 486 | wx/gbsizer.h |
5df6736f | 487 | wx/gdicmn.h |
ddf98968 | 488 | wx/generic/accel.h |
ddf98968 VS |
489 | wx/generic/choicdgg.h |
490 | wx/generic/colrdlgg.h | |
491 | wx/generic/dcpsg.h | |
492 | wx/generic/dirctrlg.h | |
13cb46e0 | 493 | wx/generic/dragimgg.h |
ddf98968 | 494 | wx/generic/filedlgg.h |
5df6736f | 495 | wx/generic/fontdlgg.h |
ddf98968 | 496 | wx/generic/imaglist.h |
5df6736f | 497 | wx/generic/logg.h |
ddf98968 VS |
498 | wx/generic/msgdlgg.h |
499 | wx/generic/notebook.h | |
500 | wx/generic/panelg.h | |
501 | wx/generic/prntdlgg.h | |
e32f4869 | 502 | wx/generic/printps.h |
ddf98968 | 503 | wx/generic/progdlgg.h |
ddf98968 VS |
504 | wx/generic/scrolwin.h |
505 | wx/generic/spinctlg.h | |
ddf98968 VS |
506 | wx/generic/splitter.h |
507 | wx/generic/textdlgg.h | |
508 | wx/generic/timer.h | |
ddf98968 | 509 | wx/generic/treectlg.h |
5df6736f VS |
510 | wx/helphtml.h |
511 | wx/icon.h | |
512 | wx/layout.h | |
513 | wx/listbox.h | |
514 | wx/mdi.h | |
515 | wx/menu.h | |
516 | wx/msgdlg.h | |
517 | wx/palette.h | |
518 | wx/panel.h | |
519 | wx/pen.h | |
520 | wx/radiobox.h | |
521 | wx/radiobut.h | |
522 | wx/renderer.h | |
523 | wx/scrolbar.h | |
524 | wx/scrolbar.h | |
525 | wx/scrolwin.h | |
526 | wx/selstore.h | |
527 | wx/settings.h | |
528 | wx/sizer.h | |
529 | wx/slider.h | |
530 | wx/statbmp.h | |
531 | wx/statbox.h | |
532 | wx/stattext.h | |
533 | wx/statusbr.h | |
534 | wx/textctrl.h | |
535 | wx/textdlg.h | |
5df6736f VS |
536 | wx/toolbar.h |
537 | wx/validate.h | |
538 | wx/valtext.h | |
539 | wx/window.h | |
88f23fdd | 540 | |
88f23fdd RD |
541 | wx/accel.h |
542 | wx/access.h | |
88f23fdd | 543 | wx/artprov.h |
88f23fdd | 544 | wx/bitmap.h |
16aa9c84 | 545 | wx/bookctrl.h |
88f23fdd | 546 | wx/busyinfo.h |
88f23fdd RD |
547 | wx/caret.h |
548 | wx/clipbrd.h | |
549 | wx/cmdproc.h | |
550 | wx/colordlg.h | |
551 | wx/colour.h | |
88f23fdd RD |
552 | wx/cshelp.h |
553 | wx/dataobj.h | |
e4a7bbfc | 554 | wx/dcmirror.h |
88f23fdd RD |
555 | wx/dcps.h |
556 | wx/dialup.h | |
557 | wx/dirctrl.h | |
558 | wx/display.h | |
559 | wx/dnd.h | |
560 | wx/docmdi.h | |
561 | wx/docview.h | |
88f23fdd RD |
562 | wx/effects.h |
563 | wx/evtloop.h | |
564 | wx/fdrepdlg.h | |
565 | wx/fmappriv.h | |
566 | wx/font.h | |
567 | wx/fontdlg.h | |
568 | wx/fontenum.h | |
569 | wx/fontutil.h | |
570 | wx/gdiobj.h | |
571 | wx/geometry.h | |
572 | wx/gifdecod.h | |
573 | wx/glcanvas.h | |
88f23fdd RD |
574 | wx/help.h |
575 | wx/helpbase.h | |
576 | wx/helpwin.h | |
577 | wx/iconbndl.h | |
88f23fdd RD |
578 | wx/imagbmp.h |
579 | wx/image.h | |
580 | wx/imaggif.h | |
581 | wx/imagiff.h | |
582 | wx/imagjpeg.h | |
583 | wx/imaglist.h | |
584 | wx/imagpcx.h | |
585 | wx/imagpng.h | |
586 | wx/imagpnm.h | |
587 | wx/imagtiff.h | |
588 | wx/imagxpm.h | |
88f23fdd | 589 | wx/listbase.h |
16aa9c84 | 590 | wx/listbook.h |
88f23fdd RD |
591 | wx/listctrl.h |
592 | wx/matrix.h | |
593 | wx/menuitem.h | |
594 | wx/metafile.h | |
595 | wx/minifram.h | |
88f23fdd RD |
596 | wx/notebook.h |
597 | wx/ownerdrw.h | |
598 | wx/paper.h | |
599 | wx/popupwin.h | |
600 | wx/print.h | |
601 | wx/printdlg.h | |
602 | wx/prntbase.h | |
603 | wx/progdlg.h | |
604 | wx/ptr_scpd.h | |
605 | wx/quantize.h | |
606 | wx/rawbmp.h | |
607 | wx/region.h | |
88f23fdd RD |
608 | wx/scopeguard.h |
609 | wx/spinbutt.h | |
610 | wx/spinctrl.h | |
88f23fdd | 611 | wx/splitter.h |
88f23fdd RD |
612 | wx/statline.h |
613 | wx/tab.h | |
614 | wx/tabctrl.h | |
88f23fdd | 615 | wx/tbarbase.h |
88f23fdd | 616 | wx/tglbtn.h |
88f23fdd RD |
617 | wx/tipwin.h |
618 | wx/tooltip.h | |
619 | wx/toplevel.h | |
620 | wx/treebase.h | |
621 | wx/treectrl.h | |
88f23fdd | 622 | wx/valgen.h |
4048a3c8 | 623 | wx/vidmode.h |
88f23fdd RD |
624 | wx/vlbox.h |
625 | wx/vms_x_fix.h | |
626 | wx/vscroll.h | |
88f23fdd RD |
627 | wx/xpmdecod.h |
628 | wx/xpmhand.h | |
ddf98968 VS |
629 | </set> |
630 | ||
631 | ||
632 | <!-- ====================================================================== --> | |
633 | <!-- Common X11 code: --> | |
634 | <!-- ====================================================================== --> | |
635 | ||
22d2b5bf | 636 | <set var="XWIN_LOWLEVEL_SRC" hints="files"> |
c1eb1389 | 637 | src/generic/caret.cpp |
e86e1522 | 638 | src/unix/dialup.cpp |
5df6736f VS |
639 | src/unix/fontenum.cpp |
640 | src/unix/fontutil.cpp | |
5df6736f | 641 | src/unix/utilsx11.cpp |
bed0b9a6 | 642 | src/unix/displayx11.cpp |
ddf98968 | 643 | </set> |
22d2b5bf | 644 | <set var="XWIN_LOWLEVEL_HDR" hints="files"> |
5df6736f | 645 | wx/generic/caret.h |
ddf98968 | 646 | wx/unix/fontutil.h |
5df6736f | 647 | wx/unix/utilsx11.h |
bed0b9a6 | 648 | wx/unix/displayx11.h |
ddf98968 VS |
649 | </set> |
650 | ||
651 | ||
652 | <!-- ====================================================================== --> | |
653 | <!-- wxGTK --> | |
654 | <!-- ====================================================================== --> | |
655 | ||
22d2b5bf | 656 | <set var="GTK_LOWLEVEL_SRC" hints="files"> |
ddf98968 | 657 | $(XWIN_LOWLEVEL_SRC) |
5df6736f | 658 | src/generic/paletteg.cpp |
ddf98968 VS |
659 | src/gtk/app.cpp |
660 | src/gtk/bitmap.cpp | |
661 | src/gtk/brush.cpp | |
662 | src/gtk/clipbrd.cpp | |
663 | src/gtk/colour.cpp | |
664 | src/gtk/cursor.cpp | |
665 | src/gtk/data.cpp | |
666 | src/gtk/dataobj.cpp | |
667 | src/gtk/dc.cpp | |
668 | src/gtk/dcclient.cpp | |
669 | src/gtk/dcmemory.cpp | |
670 | src/gtk/dcscreen.cpp | |
671 | src/gtk/dnd.cpp | |
672 | src/gtk/evtloop.cpp | |
673 | src/gtk/font.cpp | |
ddf98968 | 674 | src/gtk/gdiobj.cpp |
0f009657 | 675 | src/gtk/gsockgtk.c |
ddf98968 VS |
676 | src/gtk/icon.cpp |
677 | src/gtk/main.cpp | |
5a98fd8d | 678 | src/gtk/minifram.cpp |
ddf98968 VS |
679 | src/gtk/pen.cpp |
680 | src/gtk/popupwin.cpp | |
681 | src/gtk/region.cpp | |
2479d149 | 682 | src/gtk/renderer.cpp |
ddf98968 VS |
683 | src/gtk/settings.cpp |
684 | src/gtk/timer.cpp | |
685 | src/gtk/tooltip.cpp | |
5df6736f | 686 | src/gtk/toplevel.cpp |
ddf98968 | 687 | src/gtk/utilsgtk.cpp |
5df6736f | 688 | src/gtk/win_gtk.c |
ddf98968 | 689 | src/gtk/window.cpp |
ddf98968 | 690 | </set> |
22d2b5bf | 691 | <set var="GTK_LOWLEVEL_HDR" hints="files"> |
ddf98968 | 692 | $(XWIN_LOWLEVEL_HDR) |
eb9dd149 | 693 | wx/generic/paletteg.h |
ddf98968 | 694 | </set> |
22d2b5bf | 695 | <set var="GTK_SRC" hints="files"> |
ddf98968 | 696 | <!-- Generic implementations used by wxGTK: --> |
5df6736f | 697 | src/generic/accel.cpp |
ddf98968 | 698 | src/generic/colrdlgg.cpp |
ddf98968 | 699 | src/generic/dirdlgg.cpp |
ddf98968 | 700 | src/generic/fdrepdlg.cpp |
5df6736f VS |
701 | src/generic/filedlgg.cpp |
702 | src/generic/imaglist.cpp | |
703 | src/generic/listctrl.cpp | |
704 | src/generic/msgdlgg.cpp | |
705 | src/generic/prntdlgg.cpp | |
ddf98968 | 706 | src/generic/statusbr.cpp |
5df6736f | 707 | src/generic/tabg.cpp |
ddf98968 VS |
708 | <!-- GTK+ specific files: --> |
709 | src/gtk/bmpbuttn.cpp | |
710 | src/gtk/button.cpp | |
711 | src/gtk/checkbox.cpp | |
712 | src/gtk/checklst.cpp | |
713 | src/gtk/choice.cpp | |
714 | src/gtk/combobox.cpp | |
715 | src/gtk/control.cpp | |
716 | src/gtk/dialog.cpp | |
717 | src/gtk/fontdlg.cpp | |
718 | src/gtk/frame.cpp | |
719 | src/gtk/gauge.cpp | |
ddf98968 VS |
720 | src/gtk/listbox.cpp |
721 | src/gtk/mdi.cpp | |
722 | src/gtk/menu.cpp | |
ddf98968 VS |
723 | src/gtk/msgdlg.cpp |
724 | src/gtk/notebook.cpp | |
725 | src/gtk/radiobox.cpp | |
726 | src/gtk/radiobut.cpp | |
727 | src/gtk/scrolbar.cpp | |
728 | src/gtk/scrolwin.cpp | |
729 | src/gtk/slider.cpp | |
730 | src/gtk/spinbutt.cpp | |
731 | src/gtk/spinctrl.cpp | |
732 | src/gtk/statbmp.cpp | |
733 | src/gtk/statbox.cpp | |
734 | src/gtk/statline.cpp | |
735 | src/gtk/stattext.cpp | |
736 | src/gtk/tbargtk.cpp | |
737 | src/gtk/textctrl.cpp | |
738 | src/gtk/tglbtn.cpp | |
739 | src/gtk/utilsres.cpp | |
ddf98968 | 740 | </set> |
22d2b5bf | 741 | <set var="GTK_HDR" hints="files"> |
5df6736f VS |
742 | wx/generic/dirdlgg.h |
743 | wx/generic/fdrepdlg.h | |
744 | wx/generic/listctrl.h | |
745 | wx/generic/statusbr.h | |
746 | wx/generic/tabg.h | |
ddf98968 VS |
747 | wx/gtk/accel.h |
748 | wx/gtk/app.h | |
749 | wx/gtk/bitmap.h | |
750 | wx/gtk/bmpbuttn.h | |
751 | wx/gtk/brush.h | |
752 | wx/gtk/button.h | |
753 | wx/gtk/checkbox.h | |
754 | wx/gtk/checklst.h | |
755 | wx/gtk/choice.h | |
756 | wx/gtk/clipbrd.h | |
757 | wx/gtk/colour.h | |
758 | wx/gtk/combobox.h | |
759 | wx/gtk/control.h | |
760 | wx/gtk/cursor.h | |
761 | wx/gtk/dataform.h | |
762 | wx/gtk/dataobj.h | |
763 | wx/gtk/dataobj2.h | |
764 | wx/gtk/dc.h | |
765 | wx/gtk/dcclient.h | |
766 | wx/gtk/dcmemory.h | |
767 | wx/gtk/dcscreen.h | |
768 | wx/gtk/dialog.h | |
769 | wx/gtk/dnd.h | |
770 | wx/gtk/filedlg.h | |
771 | wx/gtk/font.h | |
772 | wx/gtk/fontdlg.h | |
773 | wx/gtk/frame.h | |
ddf98968 VS |
774 | wx/gtk/gauge.h |
775 | wx/gtk/gdiobj.h | |
ddf98968 | 776 | wx/gtk/icon.h |
ddf98968 VS |
777 | wx/gtk/listbox.h |
778 | wx/gtk/mdi.h | |
779 | wx/gtk/menu.h | |
780 | wx/gtk/menuitem.h | |
781 | wx/gtk/minifram.h | |
782 | wx/gtk/msgdlg.h | |
783 | wx/gtk/notebook.h | |
784 | wx/gtk/pen.h | |
785 | wx/gtk/popupwin.h | |
786 | wx/gtk/radiobox.h | |
787 | wx/gtk/radiobut.h | |
788 | wx/gtk/region.h | |
789 | wx/gtk/scrolbar.h | |
790 | wx/gtk/scrolwin.h | |
791 | wx/gtk/slider.h | |
792 | wx/gtk/spinbutt.h | |
793 | wx/gtk/spinctrl.h | |
794 | wx/gtk/statbmp.h | |
795 | wx/gtk/statbox.h | |
796 | wx/gtk/statline.h | |
797 | wx/gtk/stattext.h | |
798 | wx/gtk/tbargtk.h | |
799 | wx/gtk/textctrl.h | |
800 | wx/gtk/tglbtn.h | |
801 | wx/gtk/timer.h | |
802 | wx/gtk/tooltip.h | |
5df6736f | 803 | wx/gtk/toplevel.h |
ddf98968 | 804 | wx/gtk/treectrl.h |
ddf98968 VS |
805 | wx/gtk/win_gtk.h |
806 | wx/gtk/window.h | |
ddf98968 VS |
807 | </set> |
808 | ||
809 | ||
810 | <!-- ====================================================================== --> | |
811 | <!-- wxMotif --> | |
812 | <!-- ====================================================================== --> | |
813 | ||
22d2b5bf | 814 | <set var="MOTIF_LOWLEVEL_SRC" hints="files"> |
ddf98968 | 815 | $(XWIN_LOWLEVEL_SRC) |
ddf98968 | 816 | src/x11/bitmap.cpp |
5df6736f VS |
817 | src/x11/brush.cpp |
818 | src/x11/pen.cpp | |
819 | src/x11/region.cpp | |
ddf98968 VS |
820 | src/x11/utilsx.cpp |
821 | </set> | |
22d2b5bf | 822 | <set var="MOTIF_LOWLEVEL_HDR" hints="files"> |
ddf98968 | 823 | $(XWIN_LOWLEVEL_HDR) |
e6a14306 MB |
824 | wx/x11/bitmap.h |
825 | wx/x11/brush.h | |
826 | wx/x11/pen.h | |
827 | wx/x11/region.h | |
ddf98968 | 828 | </set> |
22d2b5bf | 829 | <set var="MOTIF_SRC" hints="files"> |
ddf98968 VS |
830 | src/motif/accel.cpp |
831 | src/motif/app.cpp | |
832 | src/motif/bmpbuttn.cpp | |
833 | src/motif/bmpmotif.cpp | |
834 | src/motif/button.cpp | |
835 | src/motif/checkbox.cpp | |
836 | src/motif/checklst.cpp | |
837 | src/motif/choice.cpp | |
838 | src/motif/clipbrd.cpp | |
839 | src/motif/colour.cpp | |
840 | src/motif/combobox.cpp | |
841 | src/motif/combobox_native.cpp | |
842 | src/motif/control.cpp | |
843 | src/motif/cursor.cpp | |
844 | src/motif/data.cpp | |
845 | src/motif/dataobj.cpp | |
846 | src/motif/dc.cpp | |
847 | src/motif/dcclient.cpp | |
848 | src/motif/dcmemory.cpp | |
849 | src/motif/dcscreen.cpp | |
850 | src/motif/dialog.cpp | |
851 | src/motif/evtloop.cpp | |
852 | src/motif/filedlg.cpp | |
853 | src/motif/font.cpp | |
854 | src/motif/frame.cpp | |
855 | src/motif/gauge.cpp | |
856 | src/motif/gdiobj.cpp | |
0f009657 | 857 | src/motif/gsockmot.c |
ddf98968 VS |
858 | src/motif/icon.cpp |
859 | src/motif/listbox.cpp | |
860 | src/motif/main.cpp | |
861 | src/motif/mdi.cpp | |
862 | src/motif/menu.cpp | |
863 | src/motif/menuitem.cpp | |
864 | src/motif/minifram.cpp | |
865 | src/motif/msgdlg.cpp | |
866 | src/motif/palette.cpp | |
833a51f6 | 867 | src/motif/popupwin.cpp |
ddf98968 VS |
868 | src/motif/radiobox.cpp |
869 | src/motif/radiobut.cpp | |
870 | src/motif/scrolbar.cpp | |
871 | src/motif/settings.cpp | |
872 | src/motif/slider.cpp | |
873 | src/motif/spinbutt.cpp | |
874 | src/motif/statbmp.cpp | |
875 | src/motif/statbox.cpp | |
876 | src/motif/stattext.cpp | |
ddf98968 VS |
877 | src/motif/textctrl.cpp |
878 | src/motif/timer.cpp | |
5df6736f | 879 | src/motif/toolbar.cpp |
ddf98968 VS |
880 | src/motif/toplevel.cpp |
881 | src/motif/utils.cpp | |
882 | src/motif/window.cpp | |
f4a3e0a9 | 883 | src/motif/xmcombo/xmcombo.c |
ddf98968 | 884 | <!-- Generic files used by wxMotif: --> |
5df6736f VS |
885 | src/generic/colrdlgg.cpp |
886 | src/generic/dirdlgg.cpp | |
ddf98968 | 887 | src/generic/fdrepdlg.cpp |
5df6736f | 888 | src/generic/fontdlgg.cpp |
ddf98968 | 889 | src/generic/imaglist.cpp |
5df6736f | 890 | src/generic/listctrl.cpp |
ddf98968 | 891 | src/generic/notebook.cpp |
ddf98968 | 892 | src/generic/prntdlgg.cpp |
5df6736f | 893 | src/generic/statline.cpp |
ddf98968 | 894 | src/generic/statusbr.cpp |
5df6736f | 895 | src/generic/tabg.cpp |
ddf98968 | 896 | </set> |
22d2b5bf | 897 | <set var="MOTIF_HDR" hints="files"> |
5df6736f VS |
898 | wx/generic/colrdlgg.h |
899 | wx/generic/dirdlgg.h | |
900 | wx/generic/fdrepdlg.h | |
901 | wx/generic/fontdlgg.h | |
902 | wx/generic/imaglist.h | |
903 | wx/generic/listctrl.h | |
904 | wx/generic/notebook.h | |
905 | wx/generic/prntdlgg.h | |
906 | wx/generic/statline.h | |
907 | wx/generic/statusbr.h | |
908 | wx/generic/tabg.h | |
ddf98968 VS |
909 | wx/motif/accel.h |
910 | wx/motif/app.h | |
911 | wx/motif/bmpbuttn.h | |
912 | wx/motif/bmpmotif.h | |
913 | wx/motif/button.h | |
914 | wx/motif/checkbox.h | |
915 | wx/motif/checklst.h | |
916 | wx/motif/choice.h | |
917 | wx/motif/clipbrd.h | |
918 | wx/motif/colour.h | |
919 | wx/motif/combobox.h | |
920 | wx/motif/control.h | |
921 | wx/motif/cursor.h | |
922 | wx/motif/dataform.h | |
923 | wx/motif/dataobj.h | |
924 | wx/motif/dc.h | |
925 | wx/motif/dcclient.h | |
926 | wx/motif/dcmemory.h | |
927 | wx/motif/dcprint.h | |
928 | wx/motif/dcscreen.h | |
929 | wx/motif/dialog.h | |
930 | wx/motif/dnd.h | |
931 | wx/motif/filedlg.h | |
932 | wx/motif/font.h | |
933 | wx/motif/frame.h | |
934 | wx/motif/gauge.h | |
935 | wx/motif/gdiobj.h | |
ddf98968 VS |
936 | wx/motif/icon.h |
937 | wx/motif/listbox.h | |
938 | wx/motif/mdi.h | |
939 | wx/motif/menu.h | |
940 | wx/motif/menuitem.h | |
941 | wx/motif/minifram.h | |
942 | wx/motif/msgdlg.h | |
943 | wx/motif/palette.h | |
833a51f6 | 944 | wx/motif/popupwin.h |
ddf98968 VS |
945 | wx/motif/print.h |
946 | wx/motif/private.h | |
947 | wx/motif/radiobox.h | |
948 | wx/motif/radiobut.h | |
949 | wx/motif/region.h | |
950 | wx/motif/scrolbar.h | |
ddf98968 VS |
951 | wx/motif/slider.h |
952 | wx/motif/spinbutt.h | |
953 | wx/motif/statbmp.h | |
954 | wx/motif/statbox.h | |
955 | wx/motif/stattext.h | |
956 | wx/motif/textctrl.h | |
957 | wx/motif/tglbtn.h | |
958 | wx/motif/timer.h | |
959 | wx/motif/toolbar.h | |
960 | wx/motif/toplevel.h | |
961 | wx/motif/window.h | |
ddf98968 VS |
962 | </set> |
963 | ||
964 | ||
965 | <!-- ====================================================================== --> | |
966 | <!-- wxX11 --> | |
967 | <!-- ====================================================================== --> | |
968 | ||
969 | ||
22d2b5bf | 970 | <set var="X11_LOWLEVEL_SRC" hints="files"> |
ddf98968 | 971 | $(XWIN_LOWLEVEL_SRC) |
5df6736f | 972 | src/generic/timer.cpp |
ddf98968 VS |
973 | src/x11/app.cpp |
974 | src/x11/bitmap.cpp | |
975 | src/x11/brush.cpp | |
976 | src/x11/clipbrd.cpp | |
977 | src/x11/colour.cpp | |
978 | src/x11/cursor.cpp | |
979 | src/x11/data.cpp | |
980 | src/x11/dataobj.cpp | |
981 | src/x11/dc.cpp | |
982 | src/x11/dcclient.cpp | |
983 | src/x11/dcmemory.cpp | |
984 | src/x11/dcscreen.cpp | |
985 | src/x11/evtloop.cpp | |
986 | src/x11/font.cpp | |
987 | src/x11/gdiobj.cpp | |
0f009657 | 988 | src/x11/gsockx11.c |
ddf98968 | 989 | src/x11/icon.cpp |
ddf98968 VS |
990 | src/x11/main.cpp |
991 | src/x11/minifram.cpp | |
5df6736f | 992 | src/x11/nanox.c |
ddf98968 VS |
993 | src/x11/palette.cpp |
994 | src/x11/pen.cpp | |
995 | src/x11/popupwin.cpp | |
996 | src/x11/region.cpp | |
997 | src/x11/reparent.cpp | |
998 | src/x11/settings.cpp | |
999 | src/x11/toplevel.cpp | |
1000 | src/x11/utils.cpp | |
1001 | src/x11/utilsx.cpp | |
1002 | src/x11/window.cpp | |
ddf98968 | 1003 | </set> |
22d2b5bf | 1004 | <set var="X11_LOWLEVEL_HDR" hints="files"> |
ddf98968 VS |
1005 | $(XWIN_LOWLEVEL_HDR) |
1006 | wx/x11/app.h | |
1007 | wx/x11/bitmap.h | |
1008 | wx/x11/brush.h | |
1009 | wx/x11/clipbrd.h | |
1010 | wx/x11/colour.h | |
1011 | wx/x11/cursor.h | |
1012 | wx/x11/dataform.h | |
1013 | wx/x11/dataobj.h | |
1014 | wx/x11/dataobj2.h | |
1015 | wx/x11/dc.h | |
1016 | wx/x11/dcclient.h | |
1017 | wx/x11/dcmemory.h | |
1018 | wx/x11/dcprint.h | |
1019 | wx/x11/dcscreen.h | |
1020 | wx/x11/dnd.h | |
1021 | wx/x11/font.h | |
1022 | wx/x11/gdiobj.h | |
ddf98968 | 1023 | wx/x11/icon.h |
ddf98968 VS |
1024 | wx/x11/minifram.h |
1025 | wx/x11/palette.h | |
1026 | wx/x11/pen.h | |
1027 | wx/x11/print.h | |
1028 | wx/x11/private.h | |
1029 | wx/x11/privx.h | |
1030 | wx/x11/region.h | |
1031 | wx/x11/reparent.h | |
1032 | wx/x11/textctrl.h | |
1033 | wx/x11/toplevel.h | |
1034 | wx/x11/window.h | |
ddf98968 VS |
1035 | </set> |
1036 | ||
1037 | ||
1038 | ||
1039 | <!-- ====================================================================== --> | |
1040 | <!-- wxMSW --> | |
1041 | <!-- ====================================================================== --> | |
1042 | ||
22d2b5bf | 1043 | <set var="MSW_LOWLEVEL_SRC" hints="files"> |
ddf98968 VS |
1044 | src/msw/app.cpp |
1045 | src/msw/bitmap.cpp | |
1046 | src/msw/brush.cpp | |
1047 | src/msw/caret.cpp | |
1048 | src/msw/clipbrd.cpp | |
1049 | src/msw/colour.cpp | |
1050 | src/msw/cursor.cpp | |
1051 | src/msw/data.cpp | |
1052 | src/msw/dc.cpp | |
1053 | src/msw/dcclient.cpp | |
1054 | src/msw/dcmemory.cpp | |
1055 | src/msw/dcprint.cpp | |
1056 | src/msw/dcscreen.cpp | |
1057 | src/msw/dialup.cpp | |
1058 | src/msw/dib.cpp | |
1059 | src/msw/dirdlg.cpp | |
1060 | src/msw/display.cpp | |
1061 | src/msw/enhmeta.cpp | |
ddf98968 VS |
1062 | src/msw/evtloop.cpp |
1063 | src/msw/font.cpp | |
1064 | src/msw/fontenum.cpp | |
1065 | src/msw/fontutil.cpp | |
1066 | src/msw/gdiimage.cpp | |
1067 | src/msw/gdiobj.cpp | |
0f009657 | 1068 | src/msw/gsockmsw.c |
ddf98968 VS |
1069 | src/msw/helpchm.cpp |
1070 | src/msw/helpwin.cpp | |
1071 | src/msw/icon.cpp | |
ddf98968 | 1072 | src/msw/minifram.cpp |
5df6736f VS |
1073 | src/msw/ole/automtn.cpp |
1074 | src/msw/ole/dataobj.cpp | |
1075 | src/msw/ole/dropsrc.cpp | |
1076 | src/msw/ole/droptgt.cpp | |
1077 | src/msw/ole/oleutils.cpp | |
1078 | src/msw/ole/uuid.cpp | |
ddf98968 VS |
1079 | src/msw/palette.cpp |
1080 | src/msw/pen.cpp | |
1081 | src/msw/popupwin.cpp | |
e32f4869 JS |
1082 | src/msw/printdlg.cpp |
1083 | src/msw/printwin.cpp | |
ddf98968 | 1084 | src/msw/region.cpp |
2479d149 | 1085 | src/msw/renderer.cpp |
ddf98968 | 1086 | src/msw/settings.cpp |
ddf98968 VS |
1087 | src/msw/timer.cpp |
1088 | src/msw/tooltip.cpp | |
1089 | src/msw/toplevel.cpp | |
9a90985d | 1090 | src/msw/utilsgui.cpp |
1b7031bc | 1091 | src/msw/uxtheme.cpp |
ddf98968 | 1092 | src/msw/window.cpp |
ddf98968 | 1093 | </set> |
22d2b5bf | 1094 | <set var="MSW_LOWLEVEL_HDR" hints="files"> |
ddf98968 | 1095 | </set> |
22d2b5bf | 1096 | <set var="MSW_SRC" hints="files"> |
cdc0282e | 1097 | src/generic/statusbr.cpp |
94d04b7e | 1098 | src/generic/prntdlgg.cpp |
ddf98968 VS |
1099 | src/msw/accel.cpp |
1100 | src/msw/bmpbuttn.cpp | |
1101 | src/msw/button.cpp | |
1102 | src/msw/checkbox.cpp | |
1103 | src/msw/checklst.cpp | |
1104 | src/msw/choice.cpp | |
1105 | src/msw/colordlg.cpp | |
1106 | src/msw/combobox.cpp | |
1107 | src/msw/control.cpp | |
1108 | src/msw/dialog.cpp | |
1109 | src/msw/dragimag.cpp | |
1110 | src/msw/fdrepdlg.cpp | |
1111 | src/msw/filedlg.cpp | |
1112 | src/msw/fontdlg.cpp | |
1113 | src/msw/frame.cpp | |
1114 | src/msw/gauge95.cpp | |
1115 | src/msw/imaglist.cpp | |
1116 | src/msw/iniconf.cpp | |
1117 | src/msw/listbox.cpp | |
1118 | src/msw/listctrl.cpp | |
1119 | src/msw/mdi.cpp | |
1120 | src/msw/menu.cpp | |
1121 | src/msw/menuitem.cpp | |
1122 | src/msw/metafile.cpp | |
1123 | src/msw/msgdlg.cpp | |
ddf98968 VS |
1124 | src/msw/nativdlg.cpp |
1125 | src/msw/notebook.cpp | |
5df6736f | 1126 | src/msw/ole/access.cpp |
ddf98968 | 1127 | src/msw/ownerdrw.cpp |
ddf98968 VS |
1128 | src/msw/radiobox.cpp |
1129 | src/msw/radiobut.cpp | |
1130 | src/msw/scrolbar.cpp | |
1131 | src/msw/slider95.cpp | |
1132 | src/msw/spinbutt.cpp | |
1133 | src/msw/spinctrl.cpp | |
1134 | src/msw/statbmp.cpp | |
1135 | src/msw/statbox.cpp | |
1136 | src/msw/statbr95.cpp | |
1137 | src/msw/statline.cpp | |
1138 | src/msw/stattext.cpp | |
1139 | src/msw/tabctrl.cpp | |
1140 | src/msw/tbar95.cpp | |
1141 | src/msw/textctrl.cpp | |
1142 | src/msw/tglbtn.cpp | |
1143 | src/msw/treectrl.cpp | |
ddf98968 | 1144 | </set> |
22d2b5bf | 1145 | <set var="MSW_HDR" hints="files"> |
ddf98968 VS |
1146 | wx/msw/accel.h |
1147 | wx/msw/app.h | |
1148 | wx/msw/bitmap.h | |
1149 | wx/msw/bmpbuttn.h | |
1150 | wx/msw/brush.h | |
1151 | wx/msw/button.h | |
1152 | wx/msw/caret.h | |
1153 | wx/msw/checkbox.h | |
1154 | wx/msw/checklst.h | |
1155 | wx/msw/choice.h | |
1156 | wx/msw/clipbrd.h | |
1157 | wx/msw/colordlg.h | |
1158 | wx/msw/colour.h | |
1159 | wx/msw/combobox.h | |
1160 | wx/msw/control.h | |
1161 | wx/msw/cursor.h | |
1162 | wx/msw/dc.h | |
1163 | wx/msw/dcclient.h | |
1164 | wx/msw/dcmemory.h | |
1165 | wx/msw/dcprint.h | |
1166 | wx/msw/dcscreen.h | |
1167 | wx/msw/dialog.h | |
1168 | wx/msw/dib.h | |
1169 | wx/msw/dirdlg.h | |
1170 | wx/msw/dragimag.h | |
1171 | wx/msw/enhmeta.h | |
1172 | wx/msw/fdrepdlg.h | |
1173 | wx/msw/filedlg.h | |
1174 | wx/msw/font.h | |
1175 | wx/msw/fontdlg.h | |
1176 | wx/msw/frame.h | |
1177 | wx/msw/gauge95.h | |
1178 | wx/msw/gdiimage.h | |
1179 | wx/msw/gdiobj.h | |
5df6736f | 1180 | wx/msw/helpbest.h |
ddf98968 VS |
1181 | wx/msw/helpchm.h |
1182 | wx/msw/helpwin.h | |
1183 | wx/msw/icon.h | |
1184 | wx/msw/imaglist.h | |
1185 | wx/msw/iniconf.h | |
ddf98968 VS |
1186 | wx/msw/listbox.h |
1187 | wx/msw/listctrl.h | |
1188 | wx/msw/mdi.h | |
1189 | wx/msw/menu.h | |
1190 | wx/msw/menuitem.h | |
1191 | wx/msw/metafile.h | |
1192 | wx/msw/minifram.h | |
1193 | wx/msw/missing.h | |
1194 | wx/msw/msgdlg.h | |
1195 | wx/msw/mslu.h | |
1196 | wx/msw/msvcrt.h | |
1197 | wx/msw/notebook.h | |
5df6736f VS |
1198 | wx/msw/ole/access.h |
1199 | wx/msw/ole/automtn.h | |
1200 | wx/msw/ole/dataform.h | |
1201 | wx/msw/ole/dataobj.h | |
1202 | wx/msw/ole/dataobj2.h | |
1203 | wx/msw/ole/dropsrc.h | |
1204 | wx/msw/ole/droptgt.h | |
1205 | wx/msw/ole/oleutils.h | |
1206 | wx/msw/ole/uuid.h | |
ddf98968 VS |
1207 | wx/msw/palette.h |
1208 | wx/msw/pen.h | |
1209 | wx/msw/printdlg.h | |
1210 | wx/msw/printwin.h | |
1211 | wx/msw/private.h | |
1212 | wx/msw/radiobox.h | |
1213 | wx/msw/radiobut.h | |
1214 | wx/msw/regconf.h | |
1215 | wx/msw/region.h | |
1216 | wx/msw/registry.h | |
1217 | wx/msw/scrolbar.h | |
1218 | wx/msw/setup0.h | |
1219 | wx/msw/slider95.h | |
1220 | wx/msw/slidrmsw.h | |
ddf98968 | 1221 | wx/msw/spinbutt.h |
5df6736f | 1222 | wx/msw/spinctrl.h |
ddf98968 VS |
1223 | wx/msw/statbmp.h |
1224 | wx/msw/statbox.h | |
1225 | wx/msw/statbr95.h | |
1226 | wx/msw/statline.h | |
1227 | wx/msw/stattext.h | |
1228 | wx/msw/tabctrl.h | |
ddf98968 VS |
1229 | wx/msw/tbar95.h |
1230 | wx/msw/tbarmsw.h | |
1231 | wx/msw/textctrl.h | |
1232 | wx/msw/tglbtn.h | |
1233 | wx/msw/timer.h | |
1234 | wx/msw/tooltip.h | |
1235 | wx/msw/toplevel.h | |
1236 | wx/msw/treectrl.h | |
ddf98968 | 1237 | wx/msw/window.h |
8a7b0583 | 1238 | |
5df6736f | 1239 | <!-- Resources must be installed together with headers: --> |
8a7b0583 | 1240 | wx/msw/gnuwin32/winresrc.h |
5df6736f VS |
1241 | wx/msw/wx.manifest |
1242 | wx/msw/wx.rc | |
1243 | <!-- bitmaps --> | |
8a7b0583 VS |
1244 | wx/msw/colours.bmp |
1245 | wx/msw/csquery.bmp | |
1246 | wx/msw/disable.bmp | |
5df6736f | 1247 | <!-- cursors --> |
8a7b0583 VS |
1248 | wx/msw/blank.cur |
1249 | wx/msw/bullseye.cur | |
1250 | wx/msw/clock.cur | |
1251 | wx/msw/hand.cur | |
1252 | wx/msw/heart.cur | |
1253 | wx/msw/magnif1.cur | |
1254 | wx/msw/noentry.cur | |
1255 | wx/msw/pbrush.cur | |
1256 | wx/msw/pencil.cur | |
1257 | wx/msw/pntleft.cur | |
1258 | wx/msw/pntright.cur | |
1259 | wx/msw/query.cur | |
1260 | wx/msw/rightarr.cur | |
1261 | wx/msw/roller.cur | |
1262 | wx/msw/size.cur | |
1263 | wx/msw/watch1.cur | |
5df6736f | 1264 | <!-- icons --> |
8a7b0583 VS |
1265 | wx/msw/cdrom.ico |
1266 | wx/msw/child.ico | |
1267 | wx/msw/computer.ico | |
1268 | wx/msw/drive.ico | |
1269 | wx/msw/error.ico | |
1270 | wx/msw/file1.ico | |
1271 | wx/msw/floppy.ico | |
1272 | wx/msw/folder1.ico | |
1273 | wx/msw/folder2.ico | |
1274 | wx/msw/info.ico | |
1275 | wx/msw/mdi.ico | |
1276 | wx/msw/question.ico | |
1277 | wx/msw/removble.ico | |
1278 | wx/msw/std.ico | |
1279 | wx/msw/warning.ico | |
ddf98968 VS |
1280 | </set> |
1281 | ||
1282 | ||
1283 | <!-- ====================================================================== --> | |
1284 | <!-- wxMGL --> | |
1285 | <!-- ====================================================================== --> | |
1286 | ||
22d2b5bf | 1287 | <set var="MGL_LOWLEVEL_SRC" hints="files"> |
5df6736f VS |
1288 | src/generic/caret.cpp |
1289 | src/generic/timer.cpp | |
ddf98968 VS |
1290 | src/mgl/app.cpp |
1291 | src/mgl/bitmap.cpp | |
5df6736f | 1292 | src/mgl/brush.cpp |
ddf98968 | 1293 | src/mgl/clipbrd.cpp |
5df6736f | 1294 | src/mgl/colour.cpp |
ddf98968 | 1295 | src/mgl/cursor.cpp |
5df6736f VS |
1296 | src/mgl/data.cpp |
1297 | src/mgl/dc.cpp | |
ddf98968 VS |
1298 | src/mgl/dcclient.cpp |
1299 | src/mgl/dcmemory.cpp | |
1300 | src/mgl/dcscreen.cpp | |
5df6736f VS |
1301 | src/mgl/dirmgl.cpp |
1302 | src/mgl/evtloop.cpp | |
1303 | src/mgl/font.cpp | |
1304 | src/mgl/fontenum.cpp | |
1305 | src/mgl/fontutil.cpp | |
1306 | src/mgl/gdiobj.cpp | |
ddf98968 | 1307 | src/mgl/icon.cpp |
5df6736f VS |
1308 | src/mgl/palette.cpp |
1309 | src/mgl/pen.cpp | |
1310 | src/mgl/region.cpp | |
ddf98968 | 1311 | src/mgl/settings.cpp |
5df6736f | 1312 | src/mgl/toplevel.cpp |
ddf98968 | 1313 | src/mgl/utils.cpp |
5df6736f | 1314 | src/mgl/window.cpp |
ddf98968 | 1315 | </set> |
22d2b5bf | 1316 | <set var="MGL_LOWLEVEL_HDR" hints="files"> |
5df6736f VS |
1317 | wx/generic/caret.h |
1318 | wx/generic/timer.h | |
ddf98968 VS |
1319 | wx/mgl/app.h |
1320 | wx/mgl/bitmap.h | |
1321 | wx/mgl/brush.h | |
1322 | wx/mgl/clipbrd.h | |
1323 | wx/mgl/colour.h | |
1324 | wx/mgl/cursor.h | |
1325 | wx/mgl/dc.h | |
1326 | wx/mgl/dcclient.h | |
1327 | wx/mgl/dcmemory.h | |
1328 | wx/mgl/dcscreen.h | |
1329 | wx/mgl/font.h | |
1330 | wx/mgl/fontutil.h | |
1331 | wx/mgl/gdiobj.h | |
1332 | wx/mgl/icon.h | |
1333 | wx/mgl/palette.h | |
1334 | wx/mgl/pen.h | |
1335 | wx/mgl/popupwin.h | |
1336 | wx/mgl/private.h | |
1337 | wx/mgl/region.h | |
1338 | wx/mgl/toplevel.h | |
1339 | wx/mgl/window.h | |
ddf98968 VS |
1340 | </set> |
1341 | ||
1342 | ||
1343 | <!-- ====================================================================== --> | |
1344 | <!-- wxOS/2 --> | |
1345 | <!-- ====================================================================== --> | |
1346 | ||
22d2b5bf | 1347 | <set var="OS2_LOWLEVEL_SRC" hints="files"> |
ddf98968 | 1348 | </set> |
22d2b5bf | 1349 | <set var="OS2_LOWLEVEL_HDR" hints="files"> |
ddf98968 | 1350 | </set> |
22d2b5bf | 1351 | <set var="OS2_SRC" hints="files"> |
a318e447 | 1352 | <!-- Generic implementations used by wxOS2: --> |
5df6736f | 1353 | src/generic/caret.cpp |
a318e447 SN |
1354 | src/generic/colrdlgg.cpp |
1355 | src/generic/dirdlgg.cpp | |
1356 | src/generic/fdrepdlg.cpp | |
1357 | src/generic/imaglist.cpp | |
dd133a20 | 1358 | src/generic/listctrl.cpp |
f4a917a7 | 1359 | src/generic/mdig.cpp |
a318e447 SN |
1360 | src/generic/msgdlgg.cpp |
1361 | src/generic/prntdlgg.cpp | |
1362 | src/generic/statusbr.cpp | |
1363 | <!-- OS/2 specific files: --> | |
ddf98968 VS |
1364 | src/os2/accel.cpp |
1365 | src/os2/app.cpp | |
1366 | src/os2/bitmap.cpp | |
1367 | src/os2/bmpbuttn.cpp | |
1368 | src/os2/brush.cpp | |
1369 | src/os2/button.cpp | |
1370 | src/os2/checkbox.cpp | |
1371 | src/os2/checklst.cpp | |
1372 | src/os2/choice.cpp | |
1373 | src/os2/clipbrd.cpp | |
1374 | src/os2/colour.cpp | |
1375 | src/os2/combobox.cpp | |
1376 | src/os2/control.cpp | |
1377 | src/os2/cursor.cpp | |
1378 | src/os2/data.cpp | |
1379 | src/os2/dataobj.cpp | |
1380 | src/os2/dc.cpp | |
1381 | src/os2/dcclient.cpp | |
1382 | src/os2/dcmemory.cpp | |
1383 | src/os2/dcprint.cpp | |
1384 | src/os2/dcscreen.cpp | |
1385 | src/os2/dialog.cpp | |
1386 | src/os2/dnd.cpp | |
d7a8eaca | 1387 | src/os2/evtloop.cpp |
ddf98968 VS |
1388 | src/os2/filedlg.cpp |
1389 | src/os2/font.cpp | |
1390 | src/os2/fontdlg.cpp | |
1391 | src/os2/fontenum.cpp | |
1392 | src/os2/fontutil.cpp | |
1393 | src/os2/frame.cpp | |
1394 | src/os2/gauge.cpp | |
1395 | src/os2/gdiimage.cpp | |
1396 | src/os2/gdiobj.cpp | |
0f009657 | 1397 | src/os2/gsockpm.c |
ddf98968 VS |
1398 | src/os2/helpwin.cpp |
1399 | src/os2/icon.cpp | |
1400 | src/os2/iniconf.cpp | |
ddf98968 VS |
1401 | src/os2/listbox.cpp |
1402 | src/os2/main.cpp | |
1403 | src/os2/menu.cpp | |
1404 | src/os2/menuitem.cpp | |
1405 | src/os2/metafile.cpp | |
ddf98968 VS |
1406 | src/os2/msgdlg.cpp |
1407 | src/os2/nativdlg.cpp | |
1408 | src/os2/notebook.cpp | |
1409 | src/os2/ownerdrw.cpp | |
1410 | src/os2/palette.cpp | |
1411 | src/os2/pen.cpp | |
1412 | src/os2/print.cpp | |
1413 | src/os2/radiobox.cpp | |
1414 | src/os2/radiobut.cpp | |
1415 | src/os2/region.cpp | |
1416 | src/os2/scrolbar.cpp | |
1417 | src/os2/settings.cpp | |
1418 | src/os2/slider.cpp | |
1419 | src/os2/spinbutt.cpp | |
1420 | src/os2/spinctrl.cpp | |
1421 | src/os2/statbmp.cpp | |
1422 | src/os2/statbox.cpp | |
1423 | src/os2/statline.cpp | |
1424 | src/os2/stattext.cpp | |
1425 | src/os2/tabctrl.cpp | |
1426 | src/os2/textctrl.cpp | |
5df6736f | 1427 | src/os2/timer.cpp |
ddf98968 VS |
1428 | src/os2/toolbar.cpp |
1429 | src/os2/tooltip.cpp | |
1430 | src/os2/toplevel.cpp | |
bd3b171d | 1431 | src/os2/utilsgui.cpp |
ddf98968 | 1432 | src/os2/window.cpp |
ddf98968 | 1433 | </set> |
22d2b5bf | 1434 | <set var="OS2_HDR" hints="files"> |
5df6736f | 1435 | wx/generic/caret.h |
a318e447 SN |
1436 | wx/generic/colrdlgg.h |
1437 | wx/generic/dirdlgg.h | |
1438 | wx/generic/fdrepdlg.h | |
dd133a20 | 1439 | wx/generic/listctrl.h |
f4a917a7 | 1440 | wx/generic/mdig.h |
a318e447 | 1441 | wx/generic/statusbr.h |
ddf98968 | 1442 | wx/os2/accel.h |
ddf98968 | 1443 | wx/os2/app.h |
ddf98968 | 1444 | wx/os2/bitmap.h |
5df6736f VS |
1445 | wx/os2/bmpbuttn.h |
1446 | wx/os2/brush.h | |
1447 | wx/os2/button.h | |
1448 | wx/os2/checkbox.h | |
1449 | wx/os2/checklst.h | |
1450 | wx/os2/choice.h | |
1451 | wx/os2/clipbrd.h | |
1452 | wx/os2/colour.h | |
1453 | wx/os2/combobox.h | |
1454 | wx/os2/control.h | |
1455 | wx/os2/cursor.h | |
1456 | wx/os2/dataform.h | |
1457 | wx/os2/dataobj.h | |
1458 | wx/os2/dataobj2.h | |
ddf98968 | 1459 | wx/os2/dc.h |
ddf98968 | 1460 | wx/os2/dcclient.h |
ddf98968 | 1461 | wx/os2/dcmemory.h |
ddf98968 | 1462 | wx/os2/dcprint.h |
ddf98968 | 1463 | wx/os2/dcscreen.h |
ddf98968 | 1464 | wx/os2/dialog.h |
ddf98968 | 1465 | wx/os2/dnd.h |
ddf98968 | 1466 | wx/os2/filedlg.h |
ddf98968 | 1467 | wx/os2/font.h |
ddf98968 | 1468 | wx/os2/fontdlg.h |
ddf98968 | 1469 | wx/os2/frame.h |
ddf98968 | 1470 | wx/os2/gauge.h |
ddf98968 | 1471 | wx/os2/gdiimage.h |
ddf98968 | 1472 | wx/os2/gdiobj.h |
5df6736f VS |
1473 | wx/os2/helpwin.h |
1474 | wx/os2/icon.h | |
1475 | wx/os2/iniconf.h | |
5df6736f VS |
1476 | wx/os2/listbox.h |
1477 | wx/os2/menu.h | |
1478 | wx/os2/menuitem.h | |
1479 | wx/os2/metafile.h | |
1480 | wx/os2/minifram.h | |
1481 | wx/os2/msgdlg.h | |
1482 | wx/os2/notebook.h | |
1483 | wx/os2/palette.h | |
ddf98968 | 1484 | wx/os2/pen.h |
5df6736f VS |
1485 | wx/os2/pnghand.h |
1486 | wx/os2/pngread.h | |
1487 | wx/os2/print.h | |
1488 | wx/os2/private.h | |
1489 | wx/os2/radiobox.h | |
1490 | wx/os2/radiobut.h | |
1491 | wx/os2/region.h | |
1492 | wx/os2/scrolbar.h | |
1493 | wx/os2/settings.h | |
1494 | wx/os2/setup0.h | |
1495 | wx/os2/slider.h | |
1496 | wx/os2/spinbutt.h | |
ddf98968 VS |
1497 | wx/os2/spinctrl.h |
1498 | wx/os2/statbmp.h | |
ddf98968 | 1499 | wx/os2/statbox.h |
5df6736f VS |
1500 | wx/os2/statline.h |
1501 | wx/os2/stattext.h | |
1502 | wx/os2/tabctrl.h | |
1503 | wx/os2/textctrl.h | |
1504 | wx/os2/timer.h | |
1505 | wx/os2/toolbar.h | |
1506 | wx/os2/tooltip.h | |
ddf98968 | 1507 | wx/os2/toplevel.h |
5df6736f | 1508 | wx/os2/window.h |
ddf98968 VS |
1509 | </set> |
1510 | ||
1511 | ||
1512 | ||
1513 | <!-- ====================================================================== --> | |
1514 | <!-- wxMac --> | |
1515 | <!-- ====================================================================== --> | |
1516 | ||
22d2b5bf | 1517 | <set var="MAC_LOWLEVEL_SRC" hints="files"> |
ddf98968 | 1518 | </set> |
22d2b5bf | 1519 | <set var="MAC_LOWLEVEL_HDR" hints="files"> |
ddf98968 | 1520 | </set> |
22d2b5bf | 1521 | <set var="MAC_SRC" hints="files"> |
ddf98968 VS |
1522 | src/mac/accel.cpp |
1523 | src/mac/aga.cpp | |
1524 | src/mac/app.cpp | |
1525 | src/mac/bitmap.cpp | |
1526 | src/mac/bmpbuttn.cpp | |
1527 | src/mac/brush.cpp | |
1528 | src/mac/button.cpp | |
1529 | src/mac/checkbox.cpp | |
1530 | src/mac/checklst.cpp | |
1531 | src/mac/choice.cpp | |
1532 | src/mac/clipbrd.cpp | |
1533 | src/mac/colordlg.cpp | |
1534 | src/mac/colour.cpp | |
1535 | src/mac/combobox.cpp | |
1536 | src/mac/control.cpp | |
1537 | src/mac/cursor.cpp | |
1538 | src/mac/data.cpp | |
1539 | src/mac/dataobj.cpp | |
1540 | src/mac/dc.cpp | |
1541 | src/mac/dcclient.cpp | |
1542 | src/mac/dcmemory.cpp | |
1543 | src/mac/dcprint.cpp | |
1544 | src/mac/dcscreen.cpp | |
1545 | src/mac/dialog.cpp | |
1546 | src/mac/dirdlg.cpp | |
ddf98968 VS |
1547 | src/mac/dnd.cpp |
1548 | src/mac/filedlg.cpp | |
1549 | src/mac/font.cpp | |
1550 | src/mac/fontdlg.cpp | |
1551 | src/mac/fontenum.cpp | |
1552 | src/mac/fontutil.cpp | |
1553 | src/mac/frame.cpp | |
1554 | src/mac/gauge.cpp | |
1555 | src/mac/gdiobj.cpp | |
d40f26be | 1556 | src/mac/gsockosx.c |
ddf98968 | 1557 | src/mac/icon.cpp |
ddf98968 | 1558 | src/mac/listbox.cpp |
ddf98968 VS |
1559 | src/mac/mdi.cpp |
1560 | src/mac/menu.cpp | |
1561 | src/mac/menuitem.cpp | |
1562 | src/mac/metafile.cpp | |
ddf98968 VS |
1563 | src/mac/minifram.cpp |
1564 | src/mac/msgdlg.cpp | |
1565 | src/mac/notebmac.cpp | |
1566 | src/mac/palette.cpp | |
1567 | src/mac/pen.cpp | |
1568 | src/mac/pnghand.cpp | |
1569 | src/mac/printdlg.cpp | |
1570 | src/mac/printmac.cpp | |
1571 | src/mac/radiobox.cpp | |
1572 | src/mac/radiobut.cpp | |
1573 | src/mac/region.cpp | |
cea4cc79 | 1574 | src/mac/renderer.cpp |
ddf98968 VS |
1575 | src/mac/scrolbar.cpp |
1576 | src/mac/settings.cpp | |
1577 | src/mac/slider.cpp | |
1578 | src/mac/spinbutt.cpp | |
1579 | src/mac/statbmp.cpp | |
1580 | src/mac/statbox.cpp | |
1581 | src/mac/statbrma.cpp | |
1582 | src/mac/statlmac.cpp | |
1583 | src/mac/stattext.cpp | |
1584 | src/mac/tabctrl.cpp | |
1585 | src/mac/textctrl.cpp | |
ddf98968 | 1586 | src/mac/timer.cpp |
ddf98968 VS |
1587 | src/mac/toolbar.cpp |
1588 | src/mac/tooltip.cpp | |
5df6736f | 1589 | src/mac/toplevel.cpp |
ddf98968 | 1590 | src/mac/window.cpp |
ddf98968 | 1591 | <!-- Generic implementations used by wxMac: --> |
5df6736f VS |
1592 | src/generic/caret.cpp |
1593 | src/generic/fdrepdlg.cpp | |
1594 | src/generic/fontdlgg.cpp | |
ddf98968 VS |
1595 | src/generic/imaglist.cpp |
1596 | src/generic/listctrl.cpp | |
21041c70 | 1597 | src/generic/prntdlgg.cpp |
5df6736f | 1598 | src/generic/statusbr.cpp |
ddf98968 | 1599 | src/generic/tabg.cpp |
ddf98968 VS |
1600 | <!-- Unix files used by wxMac: --> |
1601 | src/unix/snglinst.cpp | |
ddf98968 | 1602 | </set> |
22d2b5bf | 1603 | <set var="MAC_HDR" hints="files"> |
ddf98968 VS |
1604 | wx/mac/accel.h |
1605 | wx/mac/aga.h | |
1606 | wx/mac/app.h | |
1607 | wx/mac/bitmap.h | |
1608 | wx/mac/bmpbuttn.h | |
1609 | wx/mac/brush.h | |
1610 | wx/mac/button.h | |
1611 | wx/mac/checkbox.h | |
1612 | wx/mac/checklst.h | |
5df6736f | 1613 | wx/mac/chkconf.h |
ddf98968 VS |
1614 | wx/mac/choice.h |
1615 | wx/mac/clipbrd.h | |
1616 | wx/mac/colordlg.h | |
1617 | wx/mac/colour.h | |
1618 | wx/mac/combobox.h | |
1619 | wx/mac/control.h | |
1620 | wx/mac/cursor.h | |
1621 | wx/mac/dataform.h | |
1622 | wx/mac/dataobj.h | |
1623 | wx/mac/dataobj2.h | |
1624 | wx/mac/dc.h | |
1625 | wx/mac/dcclient.h | |
1626 | wx/mac/dcmemory.h | |
1627 | wx/mac/dcprint.h | |
1628 | wx/mac/dcscreen.h | |
1629 | wx/mac/dialog.h | |
1630 | wx/mac/dirdlg.h | |
1631 | wx/mac/dnd.h | |
1632 | wx/mac/filedlg.h | |
1633 | wx/mac/font.h | |
1634 | wx/mac/fontdlg.h | |
1635 | wx/mac/frame.h | |
1636 | wx/mac/gauge.h | |
1637 | wx/mac/gdiobj.h | |
ddf98968 VS |
1638 | wx/mac/gsockmac.h |
1639 | wx/mac/helpxxxx.h | |
1640 | wx/mac/icon.h | |
1641 | wx/mac/imaglist.h | |
ddf98968 VS |
1642 | wx/mac/listbox.h |
1643 | wx/mac/listctrl.h | |
1644 | wx/mac/macnotfy.h | |
1645 | wx/mac/macsock.h | |
1646 | wx/mac/mdi.h | |
1647 | wx/mac/menu.h | |
1648 | wx/mac/menuitem.h | |
1649 | wx/mac/metafile.h | |
1650 | wx/mac/mimetype.h | |
1651 | wx/mac/minifram.h | |
1652 | wx/mac/msgdlg.h | |
1653 | wx/mac/notebook.h | |
1654 | wx/mac/palette.h | |
1655 | wx/mac/pen.h | |
1656 | wx/mac/pnghand.h | |
1657 | wx/mac/pngread.h | |
1658 | wx/mac/printdlg.h | |
1659 | wx/mac/printmac.h | |
1660 | wx/mac/private.h | |
1661 | wx/mac/radiobox.h | |
1662 | wx/mac/radiobut.h | |
1663 | wx/mac/region.h | |
1664 | wx/mac/scrolbar.h | |
1665 | wx/mac/slider.h | |
1666 | wx/mac/spinbutt.h | |
1667 | wx/mac/spinctrl.h | |
1668 | wx/mac/statbmp.h | |
1669 | wx/mac/statbox.h | |
1670 | wx/mac/statline.h | |
1671 | wx/mac/stattext.h | |
1672 | wx/mac/statusbr.h | |
1673 | wx/mac/tabctrl.h | |
1674 | wx/mac/textctrl.h | |
1675 | wx/mac/timer.h | |
1676 | wx/mac/toolbar.h | |
1677 | wx/mac/tooltip.h | |
1678 | wx/mac/toplevel.h | |
1679 | wx/mac/treectrl.h | |
1680 | wx/mac/uma.h | |
ddf98968 VS |
1681 | wx/mac/window.h |
1682 | <!-- Generic implementations used by wxMac: --> | |
5df6736f VS |
1683 | wx/generic/caret.h |
1684 | wx/generic/fdrepdlg.h | |
ddf98968 VS |
1685 | wx/generic/fontdlgg.h |
1686 | wx/generic/imaglist.h | |
1687 | wx/generic/listctrl.h | |
5df6736f | 1688 | wx/generic/statusbr.h |
ddf98968 VS |
1689 | wx/generic/tabg.h |
1690 | </set> | |
1691 | ||
1692 | ||
1693 | <!-- ====================================================================== --> | |
1694 | <!-- wxCocoa --> | |
1695 | <!-- ====================================================================== --> | |
1696 | ||
22d2b5bf | 1697 | <set var="COCOA_LOWLEVEL_SRC" hints="files"> |
ddf98968 | 1698 | </set> |
22d2b5bf | 1699 | <set var="COCOA_LOWLEVEL_HDR" hints="files"> |
ddf98968 | 1700 | </set> |
22d2b5bf | 1701 | <set var="COCOA_SRC" hints="files"> |
ddf98968 VS |
1702 | src/cocoa/NSBox.mm |
1703 | src/cocoa/NSButton.mm | |
1704 | src/cocoa/NSControl.mm | |
1705 | src/cocoa/NSMenu.mm | |
1706 | src/cocoa/NSPanel.mm | |
9f5fd077 | 1707 | src/cocoa/NSTableView.mm |
ddf98968 VS |
1708 | src/cocoa/NSTextField.mm |
1709 | src/cocoa/NSView.mm | |
1710 | src/cocoa/NSWindow.mm | |
1711 | src/cocoa/app.mm | |
ddf98968 | 1712 | src/cocoa/bitmap.mm |
5df6736f | 1713 | src/cocoa/bmpbuttn.mm |
f162a338 | 1714 | src/cocoa/brush.mm |
ddf98968 VS |
1715 | src/cocoa/button.mm |
1716 | src/cocoa/checkbox.mm | |
1717 | src/cocoa/checklst.mm | |
1718 | src/cocoa/choice.mm | |
374eabc1 | 1719 | src/cocoa/clipbrd.mm |
af515aad | 1720 | src/cocoa/colour.mm |
01a16fce | 1721 | src/cocoa/combobox.mm |
ddf98968 VS |
1722 | src/cocoa/control.mm |
1723 | src/cocoa/cursor.mm | |
1724 | src/cocoa/data.cpp | |
374eabc1 | 1725 | src/cocoa/dataobj.mm |
ddf98968 VS |
1726 | src/cocoa/dc.mm |
1727 | src/cocoa/dcclient.mm | |
fc1852c1 | 1728 | src/cocoa/dcmemory.mm |
ddf98968 VS |
1729 | src/cocoa/dcscreen.cpp |
1730 | src/cocoa/dialog.mm | |
8897ca05 | 1731 | src/cocoa/evtloop.mm |
ddf98968 | 1732 | src/cocoa/font.cpp |
4a5f4703 | 1733 | src/cocoa/fontenum.mm |
ddf98968 VS |
1734 | src/cocoa/fontutil.cpp |
1735 | src/cocoa/frame.mm | |
ec35ed7c | 1736 | src/cocoa/gauge.mm |
ddf98968 VS |
1737 | src/cocoa/gdiobj.cpp |
1738 | src/cocoa/icon.cpp | |
1739 | src/cocoa/listbox.mm | |
1740 | src/cocoa/main.cpp | |
1a249e04 | 1741 | src/cocoa/mbarman.mm |
9de2e75a | 1742 | src/cocoa/mdi.mm |
ddf98968 VS |
1743 | src/cocoa/menu.mm |
1744 | src/cocoa/menuitem.mm | |
0a0d1a61 | 1745 | src/cocoa/pen.mm |
ddf98968 VS |
1746 | src/cocoa/radiobox.mm |
1747 | src/cocoa/radiobut.mm | |
1748 | src/cocoa/region.cpp | |
1749 | src/cocoa/settings.cpp | |
af515aad | 1750 | src/cocoa/slider.mm |
36b46e25 | 1751 | src/cocoa/spinbutt.mm |
ddf98968 VS |
1752 | src/cocoa/statbmp.mm |
1753 | src/cocoa/statbox.mm | |
1754 | src/cocoa/statline2.mm | |
1755 | src/cocoa/stattext.mm | |
1756 | src/cocoa/textctrl.mm | |
715c1da4 | 1757 | src/cocoa/toolbar.mm |
ddf98968 VS |
1758 | src/cocoa/toplevel.mm |
1759 | src/cocoa/utils.cpp | |
1760 | src/cocoa/utilsexc.cpp | |
1761 | src/cocoa/window.mm | |
1936dc8b | 1762 | <!-- Generic implementations used by wxCocoa: --> |
5df6736f VS |
1763 | src/generic/accel.cpp |
1764 | src/generic/caret.cpp | |
31d20b58 | 1765 | src/generic/colrdlgg.cpp |
31d20b58 | 1766 | src/generic/dirdlgg.cpp |
5df6736f | 1767 | src/generic/fdrepdlg.cpp |
31d20b58 | 1768 | src/generic/filedlgg.cpp |
5df6736f VS |
1769 | src/generic/fontdlgg.cpp |
1770 | src/generic/imaglist.cpp | |
1771 | src/generic/listctrl.cpp | |
5df6736f | 1772 | src/generic/msgdlgg.cpp |
31d20b58 | 1773 | src/generic/notebook.cpp |
31d20b58 | 1774 | src/generic/paletteg.cpp |
5df6736f VS |
1775 | src/generic/statusbr.cpp |
1776 | src/generic/tabg.cpp | |
31d20b58 | 1777 | src/generic/timer.cpp |
7c52e8ef DE |
1778 | <!-- wxMac stuff used by wxCocoa: --> |
1779 | src/mac/gsockosx.c | |
ddf98968 | 1780 | </set> |
22d2b5bf | 1781 | <set var="COCOA_HDR" hints="files"> |
ddf98968 VS |
1782 | wx/cocoa/NSBox.h |
1783 | wx/cocoa/NSButton.h | |
1784 | wx/cocoa/NSControl.h | |
1785 | wx/cocoa/NSMenu.h | |
1786 | wx/cocoa/NSPanel.h | |
9f5fd077 | 1787 | wx/cocoa/NSTableView.h |
ddf98968 VS |
1788 | wx/cocoa/NSTextField.h |
1789 | wx/cocoa/NSView.h | |
1790 | wx/cocoa/NSWindow.h | |
1791 | wx/cocoa/ObjcAssociate.h | |
1792 | wx/cocoa/ObjcPose.h | |
1793 | wx/cocoa/app.h | |
1794 | wx/cocoa/bitmap.h | |
1795 | wx/cocoa/bmpbuttn.h | |
1796 | wx/cocoa/brush.h | |
1797 | wx/cocoa/button.h | |
1798 | wx/cocoa/checkbox.h | |
1799 | wx/cocoa/checklst.h | |
1800 | wx/cocoa/choice.h | |
374eabc1 | 1801 | wx/cocoa/clipbrd.h |
ddf98968 | 1802 | wx/cocoa/colour.h |
01a16fce | 1803 | wx/cocoa/combobox.h |
ddf98968 VS |
1804 | wx/cocoa/control.h |
1805 | wx/cocoa/cursor.h | |
374eabc1 DE |
1806 | wx/cocoa/dataform.h |
1807 | wx/cocoa/dataobj.h | |
1808 | wx/cocoa/dataobj2.h | |
ddf98968 VS |
1809 | wx/cocoa/dc.h |
1810 | wx/cocoa/dcclient.h | |
1811 | wx/cocoa/dcmemory.h | |
1812 | wx/cocoa/dcscreen.h | |
1813 | wx/cocoa/dialog.h | |
1814 | wx/cocoa/font.h | |
1815 | wx/cocoa/frame.h | |
ec35ed7c | 1816 | wx/cocoa/gauge.h |
ddf98968 VS |
1817 | wx/cocoa/gdiobj.h |
1818 | wx/cocoa/icon.h | |
1819 | wx/cocoa/listbox.h | |
1a249e04 | 1820 | wx/cocoa/mbarman.h |
9de2e75a | 1821 | wx/cocoa/mdi.h |
ddf98968 VS |
1822 | wx/cocoa/menu.h |
1823 | wx/cocoa/menuitem.h | |
1824 | wx/cocoa/pen.h | |
1825 | wx/cocoa/radiobox.h | |
1826 | wx/cocoa/radiobut.h | |
1827 | wx/cocoa/region.h | |
36b46e25 | 1828 | wx/cocoa/spinbutt.h |
ddf98968 VS |
1829 | wx/cocoa/statbmp.h |
1830 | wx/cocoa/statbox.h | |
1831 | wx/cocoa/statline.h | |
1832 | wx/cocoa/stattext.h | |
1833 | wx/cocoa/textctrl.h | |
715c1da4 | 1834 | wx/cocoa/toolbar.h |
ddf98968 VS |
1835 | wx/cocoa/toplevel.h |
1836 | wx/cocoa/window.h | |
d1d83c9b | 1837 | <!-- Generic implementations used by wxCocoa: --> |
5df6736f VS |
1838 | wx/generic/caret.h |
1839 | wx/generic/fdrepdlg.h | |
d1d83c9b VS |
1840 | wx/generic/fontdlgg.h |
1841 | wx/generic/imaglist.h | |
1842 | wx/generic/listctrl.h | |
eb9dd149 | 1843 | wx/generic/paletteg.h |
5df6736f VS |
1844 | wx/generic/statusbr.h |
1845 | wx/generic/tabg.h | |
ddf98968 VS |
1846 | </set> |
1847 | ||
1848 | ||
1849 | ||
1850 | <!-- ====================================================================== --> | |
1851 | <!-- wxUniversal --> | |
1852 | <!-- ====================================================================== --> | |
1853 | ||
88f23fdd | 1854 | |
22d2b5bf | 1855 | <set var="UNIV_THEMES_SRC" hints="files"> |
ddf98968 | 1856 | src/univ/themes/gtk.cpp |
ddf98968 | 1857 | src/univ/themes/metal.cpp |
5df6736f | 1858 | src/univ/themes/win32.cpp |
ddf98968 VS |
1859 | </set> |
1860 | ||
22d2b5bf | 1861 | <set var="UNIV_SRC" hints="files"> |
5df6736f VS |
1862 | src/generic/accel.cpp |
1863 | src/generic/colrdlgg.cpp | |
1864 | src/generic/dirdlgg.cpp | |
1865 | src/generic/fdrepdlg.cpp | |
1866 | src/generic/filedlgg.cpp | |
1867 | src/generic/fontdlgg.cpp | |
1868 | src/generic/imaglist.cpp | |
1869 | src/generic/listctrl.cpp | |
1870 | src/generic/mdig.cpp | |
1871 | src/generic/msgdlgg.cpp | |
1872 | src/generic/prntdlgg.cpp | |
1873 | src/generic/tabg.cpp | |
ddf98968 VS |
1874 | src/univ/bmpbuttn.cpp |
1875 | src/univ/button.cpp | |
1876 | src/univ/checkbox.cpp | |
1877 | src/univ/checklst.cpp | |
1878 | src/univ/choice.cpp | |
1879 | src/univ/colschem.cpp | |
1880 | src/univ/combobox.cpp | |
1881 | src/univ/control.cpp | |
2479d149 | 1882 | src/univ/ctrlrend.cpp |
ddf98968 VS |
1883 | src/univ/dialog.cpp |
1884 | src/univ/framuniv.cpp | |
ddf98968 VS |
1885 | src/univ/gauge.cpp |
1886 | src/univ/inpcons.cpp | |
1887 | src/univ/inphand.cpp | |
1888 | src/univ/listbox.cpp | |
1889 | src/univ/menu.cpp | |
1890 | src/univ/notebook.cpp | |
1891 | src/univ/radiobox.cpp | |
1892 | src/univ/radiobut.cpp | |
ddf98968 VS |
1893 | src/univ/scrarrow.cpp |
1894 | src/univ/scrolbar.cpp | |
1895 | src/univ/scrthumb.cpp | |
1896 | src/univ/slider.cpp | |
1897 | src/univ/spinbutt.cpp | |
1898 | src/univ/statbmp.cpp | |
1899 | src/univ/statbox.cpp | |
1900 | src/univ/statline.cpp | |
1901 | src/univ/stattext.cpp | |
1902 | src/univ/statusbr.cpp | |
c4836bee | 1903 | src/univ/textctrl.cpp |
ddf98968 | 1904 | src/univ/theme.cpp |
5df6736f VS |
1905 | src/univ/toolbar.cpp |
1906 | src/univ/topluniv.cpp | |
ddf98968 | 1907 | src/univ/winuniv.cpp |
ddf98968 | 1908 | </set> |
22d2b5bf | 1909 | <set var="UNIV_HDR" hints="files"> |
5df6736f VS |
1910 | wx/generic/accel.h |
1911 | wx/generic/dirdlgg.h | |
1912 | wx/generic/fdrepdlg.h | |
1913 | wx/generic/fontdlgg.h | |
1914 | wx/generic/listctrl.h | |
1915 | wx/generic/mdig.h | |
1916 | wx/generic/statusbr.h | |
1917 | wx/generic/tabg.h | |
ddf98968 VS |
1918 | wx/univ/app.h |
1919 | wx/univ/bmpbuttn.h | |
1920 | wx/univ/button.h | |
1921 | wx/univ/checkbox.h | |
1922 | wx/univ/checklst.h | |
1923 | wx/univ/choice.h | |
1924 | wx/univ/colschem.h | |
1925 | wx/univ/combobox.h | |
1926 | wx/univ/control.h | |
1927 | wx/univ/dialog.h | |
1928 | wx/univ/frame.h | |
ddf98968 VS |
1929 | wx/univ/gauge.h |
1930 | wx/univ/inpcons.h | |
1931 | wx/univ/inphand.h | |
1932 | wx/univ/listbox.h | |
1933 | wx/univ/menu.h | |
1934 | wx/univ/menuitem.h | |
1935 | wx/univ/notebook.h | |
1936 | wx/univ/radiobox.h | |
1937 | wx/univ/radiobut.h | |
1938 | wx/univ/renderer.h | |
1939 | wx/univ/scrarrow.h | |
1940 | wx/univ/scrolbar.h | |
1941 | wx/univ/scrthumb.h | |
1942 | wx/univ/scrtimer.h | |
ddf98968 VS |
1943 | wx/univ/slider.h |
1944 | wx/univ/spinbutt.h | |
1945 | wx/univ/statbmp.h | |
1946 | wx/univ/statbox.h | |
1947 | wx/univ/statline.h | |
1948 | wx/univ/stattext.h | |
1949 | wx/univ/statusbr.h | |
1950 | wx/univ/textctrl.h | |
1951 | wx/univ/theme.h | |
1952 | wx/univ/toolbar.h | |
5df6736f | 1953 | wx/univ/toplevel.h |
ddf98968 | 1954 | wx/univ/window.h |
ddf98968 VS |
1955 | </set> |
1956 | ||
1957 | ||
13cb46e0 VS |
1958 | <!-- ====================================================================== --> |
1959 | <!-- wxAdvanced --> | |
1960 | <!-- ====================================================================== --> | |
1961 | ||
13cb46e0 | 1962 | <set var="ADVANCED_CMN_SRC" hints="files"> |
13cb46e0 VS |
1963 | src/generic/calctrl.cpp |
1964 | src/generic/dcbuffer.cpp | |
1965 | src/generic/grid.cpp | |
1966 | src/generic/gridctrl.cpp | |
1967 | src/generic/gridsel.cpp | |
1968 | src/generic/helpext.cpp | |
1969 | src/generic/laywin.cpp | |
1970 | src/generic/sashwin.cpp | |
1971 | src/generic/splash.cpp | |
1972 | src/generic/tipdlg.cpp | |
1973 | src/generic/wizard.cpp | |
1974 | </set> | |
1975 | ||
1976 | <set var="ADVANCED_CMN_HDR" hints="files"> | |
1977 | wx/calctrl.h | |
13cb46e0 VS |
1978 | wx/dcbuffer.h |
1979 | wx/generic/calctrl.h | |
1980 | wx/generic/grid.h | |
1981 | wx/generic/gridctrl.h | |
1982 | wx/generic/gridsel.h | |
1983 | wx/generic/helpext.h | |
1984 | wx/generic/laywin.h | |
1985 | wx/generic/sashwin.h | |
1986 | wx/generic/splash.h | |
1987 | wx/generic/wizard.h | |
1988 | wx/grid.h | |
131f235d | 1989 | wx/joystick.h |
13cb46e0 VS |
1990 | wx/laywin.h |
1991 | wx/sashwin.h | |
1992 | wx/splash.h | |
131f235d | 1993 | wx/taskbar.h |
13cb46e0 | 1994 | wx/tipdlg.h |
131f235d | 1995 | wx/wave.h |
13cb46e0 VS |
1996 | wx/wizard.h |
1997 | </set> | |
1998 | ||
131f235d VS |
1999 | <set var="ADVANCED_MSW_SRC" hints="files"> |
2000 | src/common/taskbarcmn.cpp | |
2001 | src/msw/joystick.cpp | |
2002 | src/msw/taskbar.cpp | |
2003 | src/msw/wave.cpp | |
2004 | </set> | |
2005 | <set var="ADVANCED_MSW_HDR" hints="files"> | |
2006 | wx/msw/joystick.h | |
2007 | wx/msw/taskbar.h | |
2008 | wx/msw/wave.h | |
2009 | </set> | |
2010 | ||
2011 | <set var="ADVANCED_MAC_SRC" hints="files"> | |
2012 | src/mac/joystick.cpp | |
2013 | src/mac/wave.cpp | |
2014 | </set> | |
2015 | <set var="ADVANCED_MAC_HDR" hints="files"> | |
2016 | wx/mac/joystick.h | |
2017 | wx/mac/wave.h | |
2018 | </set> | |
2019 | ||
2020 | <set var="ADVANCED_OS2_SRC" hints="files"> | |
2021 | src/os2/joystick.cpp | |
2022 | src/os2/wave.cpp | |
2023 | </set> | |
2024 | <set var="ADVANCED_OS2_HDR" hints="files"> | |
2025 | wx/os2/joystick.h | |
2026 | wx/os2/wave.h | |
2027 | </set> | |
2028 | ||
2029 | <set var="ADVANCED_UNIX_SRC" hints="files"> | |
2030 | src/common/taskbarcmn.cpp | |
2031 | src/unix/joystick.cpp | |
2032 | src/unix/taskbarx11.cpp | |
2033 | src/unix/wave.cpp | |
2034 | </set> | |
2035 | <set var="ADVANCED_UNIX_HDR" hints="files"> | |
2036 | wx/unix/joystick.h | |
2037 | wx/unix/taskbarx11.h | |
2038 | wx/unix/wave.h | |
2039 | </set> | |
2040 | ||
ddf98968 VS |
2041 | |
2042 | <!-- ====================================================================== --> | |
2043 | <!-- wxHTML --> | |
2044 | <!-- ====================================================================== --> | |
2045 | ||
36b72b47 VS |
2046 | <set var="HTML_SRC_PLATFORM"> |
2047 | <if cond="TOOLKIT=='MSW'"> | |
2048 | src/msw/helpbest.cpp | |
2049 | </if> | |
c839485c VS |
2050 | <if cond="PLATFORM_UNIX=='1'"> |
2051 | src/html/chm.cpp | |
2052 | </if> | |
2053 | <if cond="PLATFORM_MACOSX=='1'"> | |
2054 | src/html/chm.cpp | |
2055 | </if> | |
36b72b47 | 2056 | </set> |
22d2b5bf | 2057 | <set var="HTML_SRC" hints="files"> |
36b72b47 | 2058 | $(HTML_SRC_PLATFORM) |
5df6736f | 2059 | src/html/helpctrl.cpp |
ddf98968 VS |
2060 | src/html/helpdata.cpp |
2061 | src/html/helpfrm.cpp | |
ddf98968 VS |
2062 | src/html/htmlcell.cpp |
2063 | src/html/htmlfilt.cpp | |
2064 | src/html/htmlpars.cpp | |
2065 | src/html/htmltag.cpp | |
2066 | src/html/htmlwin.cpp | |
5df6736f VS |
2067 | src/html/htmprint.cpp |
2068 | src/html/m_dflist.cpp | |
ddf98968 VS |
2069 | src/html/m_fonts.cpp |
2070 | src/html/m_hline.cpp | |
2071 | src/html/m_image.cpp | |
2072 | src/html/m_layout.cpp | |
2073 | src/html/m_links.cpp | |
2074 | src/html/m_list.cpp | |
ddf98968 | 2075 | src/html/m_pre.cpp |
ddf98968 | 2076 | src/html/m_style.cpp |
5df6736f VS |
2077 | src/html/m_tables.cpp |
2078 | src/html/winpars.cpp | |
a9035850 | 2079 | <!-- wxHTML users: --> |
a9035850 | 2080 | src/generic/htmllbox.cpp |
ddf98968 | 2081 | </set> |
22d2b5bf | 2082 | <set var="HTML_HDR" hints="files"> |
227a9855 VS |
2083 | wx/html/forcelnk.h |
2084 | wx/html/helpctrl.h | |
2085 | wx/html/helpdata.h | |
2086 | wx/html/helpfrm.h | |
2087 | wx/html/htmlcell.h | |
2088 | wx/html/htmldefs.h | |
2089 | wx/html/htmlfilt.h | |
2090 | wx/html/htmlpars.h | |
2091 | wx/html/htmlproc.h | |
2092 | wx/html/htmltag.h | |
2093 | wx/html/htmlwin.h | |
2094 | wx/html/htmprint.h | |
2095 | wx/html/m_templ.h | |
2096 | wx/html/winpars.h | |
5df6736f | 2097 | wx/wxhtml.h |
a9035850 | 2098 | <!-- wxHTML users: --> |
a9035850 | 2099 | wx/htmllbox.h |
ddf98968 VS |
2100 | </set> |
2101 | ||
2102 | ||
5df6736f | 2103 | |
a69544bf VS |
2104 | <!-- ====================================================================== --> |
2105 | <!-- XML classes --> | |
2106 | <!-- ====================================================================== --> | |
2107 | ||
22d2b5bf | 2108 | <set var="XML_SRC" hints="files"> |
a69544bf | 2109 | src/xml/xml.cpp |
e2412466 | 2110 | src/common/xtixml.cpp <!-- FIXME - temporary solution --> |
a69544bf | 2111 | </set> |
22d2b5bf | 2112 | <set var="XML_HDR" hints="files"> |
a69544bf | 2113 | wx/xml/xml.h |
e2412466 | 2114 | wx/xtixml.h <!-- FIXME - temporary solution --> |
a69544bf VS |
2115 | </set> |
2116 | ||
2117 | ||
4d264332 VS |
2118 | <!-- ====================================================================== --> |
2119 | <!-- OpenGL canvas --> | |
2120 | <!-- ====================================================================== --> | |
2121 | ||
22d2b5bf | 2122 | <set var="OPENGL_SRC" hints="files"> |
4d264332 VS |
2123 | <if cond="TOOLKIT=='MAC'">src/mac/glcanvas.cpp</if> |
2124 | <if cond="TOOLKIT=='GTK'">src/gtk/glcanvas.cpp</if> | |
2125 | <if cond="TOOLKIT=='MSW'">src/msw/glcanvas.cpp</if> | |
05e770c4 | 2126 | <if cond="TOOLKIT=='MOTIF'">src/x11/glcanvas.cpp</if> |
4d264332 | 2127 | <if cond="TOOLKIT=='X11'">src/x11/glcanvas.cpp</if> |
96c1699d | 2128 | <if cond="TOOLKIT=='PM'">src/os2/glcanvas.cpp</if> |
4d264332 VS |
2129 | </set> |
2130 | ||
22d2b5bf | 2131 | <set var="OPENGL_HDR" hints="files"> |
4d264332 VS |
2132 | <if cond="TOOLKIT=='MAC'">wx/mac/glcanvas.h</if> |
2133 | <if cond="TOOLKIT=='GTK'">wx/gtk/glcanvas.h</if> | |
2134 | <if cond="TOOLKIT=='MSW'">wx/msw/glcanvas.h</if> | |
05e770c4 | 2135 | <if cond="TOOLKIT=='MOTIF'">wx/x11/glcanvas.h</if> |
4d264332 | 2136 | <if cond="TOOLKIT=='X11'">wx/x11/glcanvas.h</if> |
96c1699d | 2137 | <if cond="TOOLKIT=='PM'">wx/os2/glcanvas.h</if> |
4d264332 VS |
2138 | </set> |
2139 | ||
ddf98968 VS |
2140 | |
2141 | ||
bb41dcbe VS |
2142 | <!-- ====================================================================== --> |
2143 | <!-- ODBD classes --> | |
2144 | <!-- ====================================================================== --> | |
2145 | ||
2146 | <set var="ODBC_SRC" hints="files"> | |
2147 | src/common/db.cpp | |
bb41dcbe VS |
2148 | src/common/dbtable.cpp |
2149 | </set> | |
2150 | <set var="ODBC_HDR" hints="files"> | |
2151 | wx/db.h | |
bb41dcbe VS |
2152 | wx/dbkeyg.h |
2153 | wx/dbtable.h | |
2154 | </set> | |
2155 | ||
83b9886f VS |
2156 | <set var="DBGRID_SRC" hints="files"> |
2157 | src/common/dbgrid.cpp | |
2158 | </set> | |
2159 | <set var="DBGRID_HDR" hints="files"> | |
2160 | wx/dbgrid.h | |
2161 | </set> | |
2162 | ||
bb41dcbe VS |
2163 | |
2164 | ||
ddf98968 VS |
2165 | <!-- ====================================================================== --> |
2166 | <!-- Define sources for specific libraries: --> | |
2167 | <!-- ====================================================================== --> | |
2168 | ||
7c4728f6 VS |
2169 | <!-- wxBase files: --> |
2170 | ||
4aa75221 | 2171 | <!-- Nested if would be nicer, but this works --> |
22d2b5bf | 2172 | <set var="BASE_MACOSX_SRC" hints="files"> |
4aa75221 DE |
2173 | <if cond="TOOLKIT=='MAC'">$(BASE_MAC_SRC)</if> |
2174 | <if cond="TOOLKIT=='COCOA'">$(BASE_DARWIN_SRC)</if> | |
2175 | <if cond="TOOLKIT=='GTK'">$(BASE_DARWIN_SRC)</if> | |
2176 | <!-- FIXME: TOOLKIT!='MAC' is what we really want --> | |
2177 | </set> | |
22d2b5bf | 2178 | <set var="BASE_PLATFORM_SRC" hints="files"> |
ddf98968 | 2179 | <if cond="PLATFORM_UNIX=='1'">$(BASE_UNIX_SRC)</if> |
ddf98968 | 2180 | <if cond="PLATFORM_WIN32=='1'">$(BASE_WIN32_SRC)</if> |
4aa75221 | 2181 | <if cond="PLATFORM_MACOSX=='1'">$(BASE_MACOSX_SRC)</if> |
96c1699d | 2182 | <if cond="PLATFORM_OS2=='1'">$(BASE_OS2_SRC)</if> |
ddf98968 | 2183 | </set> |
8b509749 | 2184 | <set var="BASE_AND_GUI_TOOLKIT_SRC" hints="files"> |
ab48b97b | 2185 | <if cond="TOOLKIT=='MAC'">$(BASE_AND_GUI_MAC_SRC)</if> |
8b509749 | 2186 | </set> |
22d2b5bf | 2187 | <set var="BASE_AND_GUI_PLATFORM_SRC" hints="files"> |
e86e1522 | 2188 | <if cond="PLATFORM_UNIX=='1'">$(BASE_AND_GUI_UNIX_SRC)</if> |
e86e1522 | 2189 | <if cond="PLATFORM_WIN32=='1'">$(BASE_AND_GUI_WIN32_SRC)</if> |
4aa75221 | 2190 | <if cond="PLATFORM_MACOSX=='1'">$(BASE_AND_GUI_DARWIN_SRC)</if> |
e86e1522 | 2191 | </set> |
22d2b5bf | 2192 | <set var="BASE_PLATFORM_HDR" hints="files"> |
ddf98968 | 2193 | <if cond="PLATFORM_UNIX=='1'">$(BASE_UNIX_HDR)</if> |
ddf98968 | 2194 | <if cond="PLATFORM_WIN32=='1'">$(BASE_WIN32_HDR)</if> |
9feb7716 VS |
2195 | <if cond="TOOLKIT=='MAC'">$(BASE_MAC_HDR)</if> |
2196 | <if cond="TOOLKIT=='COCOA'">$(BASE_DARWIN_HDR)</if> | |
ddf98968 | 2197 | </set> |
88f23fdd | 2198 | |
22d2b5bf | 2199 | <set var="BASE_SRC" hints="files"> |
ddf98968 VS |
2200 | $(BASE_CMN_SRC) $(BASE_PLATFORM_SRC) |
2201 | </set> | |
22d2b5bf | 2202 | <set var="BASE_AND_GUI_SRC" hints="files"> |
8b509749 VS |
2203 | $(BASE_AND_GUI_CMN_SRC) |
2204 | $(BASE_AND_GUI_PLATFORM_SRC) $(BASE_AND_GUI_TOOLKIT_SRC) | |
e86e1522 | 2205 | </set> |
21041c70 VS |
2206 | |
2207 | ||
7c4728f6 | 2208 | <!-- wxNet files: --> |
7c4728f6 VS |
2209 | <set var="NET_PLATFORM_SRC" hints="files"> |
2210 | <if cond="PLATFORM_UNIX=='1'">$(NET_UNIX_SRC)</if> | |
2211 | <if cond="PLATFORM_WIN32=='1'">$(NET_WIN32_SRC)</if> | |
d40f26be | 2212 | <if cond="PLATFORM_MACOSX=='1'">$(NET_DARWIN_SRC)</if> |
96c1699d | 2213 | <if cond="PLATFORM_OS2=='1'">$(NET_OS2_SRC)</if> |
7c4728f6 VS |
2214 | </set> |
2215 | <set var="NET_PLATFORM_HDR" hints="files"> | |
2216 | <if cond="PLATFORM_UNIX=='1'">$(NET_UNIX_HDR)</if> | |
2217 | <if cond="PLATFORM_WIN32=='1'">$(NET_WIN32_HDR)</if> | |
96c1699d | 2218 | <if cond="PLATFORM_OS2=='1'">$(NET_OS2_HDR)</if> |
d40f26be | 2219 | <if cond="PLATFORM_MACOSX=='1'">$(NET_DARWIN_HDR)</if> |
7c4728f6 VS |
2220 | </set> |
2221 | ||
2222 | <set var="NET_SRC" hints="files"> | |
2223 | $(NET_CMN_SRC) $(NET_PLATFORM_SRC) | |
2224 | </set> | |
88f23fdd | 2225 | |
7c4728f6 VS |
2226 | |
2227 | <!-- GUI sources: --> | |
21041c70 | 2228 | |
22d2b5bf | 2229 | <set var="LOWLEVEL_SRC" hints="files"> |
ddf98968 VS |
2230 | <if cond="TOOLKIT=='GTK'">$(GTK_LOWLEVEL_SRC)</if> |
2231 | <if cond="TOOLKIT=='MOTIF'">$(MOTIF_LOWLEVEL_SRC)</if> | |
2232 | <if cond="TOOLKIT=='MSW'">$(MSW_LOWLEVEL_SRC)</if> | |
2233 | <if cond="TOOLKIT=='MAC'">$(MAC_LOWLEVEL_SRC)</if> | |
2234 | <if cond="TOOLKIT=='COCOA'">$(COCOA_LOWLEVEL_SRC)</if> | |
96c1699d | 2235 | <if cond="TOOLKIT=='PM'">$(OS2_LOWLEVEL_SRC)</if> |
ddf98968 VS |
2236 | <if cond="TOOLKIT=='X11'">$(X11_LOWLEVEL_SRC)</if> |
2237 | <if cond="TOOLKIT=='MGL'">$(MGL_LOWLEVEL_SRC)</if> | |
2238 | </set> | |
22d2b5bf | 2239 | <set var="LOWLEVEL_HDR" hints="files"> |
ddf98968 VS |
2240 | <if cond="TOOLKIT=='GTK'">$(GTK_LOWLEVEL_HDR)</if> |
2241 | <if cond="TOOLKIT=='MOTIF'">$(MOTIF_LOWLEVEL_HDR)</if> | |
2242 | <if cond="TOOLKIT=='MSW'">$(MSW_LOWLEVEL_HDR)</if> | |
2243 | <if cond="TOOLKIT=='MAC'">$(MAC_LOWLEVEL_HDR)</if> | |
2244 | <if cond="TOOLKIT=='COCOA'">$(COCOA_LOWLEVEL_HDR)</if> | |
96c1699d | 2245 | <if cond="TOOLKIT=='PM'">$(OS2_LOWLEVEL_HDR)</if> |
ddf98968 VS |
2246 | <if cond="TOOLKIT=='X11'">$(X11_LOWLEVEL_HDR)</if> |
2247 | <if cond="TOOLKIT=='MGL'">$(MGL_LOWLEVEL_HDR)</if> | |
2248 | </set> | |
21041c70 | 2249 | |
22d2b5bf | 2250 | <set var="GUI_SRC" hints="files"> |
ddf98968 VS |
2251 | <if cond="TOOLKIT=='GTK'">$(GTK_SRC)</if> |
2252 | <if cond="TOOLKIT=='MOTIF'">$(MOTIF_SRC)</if> | |
2253 | <if cond="TOOLKIT=='MSW'">$(MSW_SRC)</if> | |
2254 | <if cond="TOOLKIT=='MAC'">$(MAC_SRC)</if> | |
2255 | <if cond="TOOLKIT=='COCOA'">$(COCOA_SRC)</if> | |
96c1699d | 2256 | <if cond="TOOLKIT=='PM'">$(OS2_SRC)</if> |
ddf98968 | 2257 | </set> |
22d2b5bf | 2258 | <set var="GUI_HDR" hints="files"> |
ddf98968 VS |
2259 | <if cond="TOOLKIT=='GTK'">$(GTK_HDR)</if> |
2260 | <if cond="TOOLKIT=='MOTIF'">$(MOTIF_HDR)</if> | |
2261 | <if cond="TOOLKIT=='MSW'">$(MSW_HDR)</if> | |
2262 | <if cond="TOOLKIT=='MAC'">$(MAC_HDR)</if> | |
2263 | <if cond="TOOLKIT=='COCOA'">$(COCOA_HDR)</if> | |
96c1699d | 2264 | <if cond="TOOLKIT=='PM'">$(OS2_HDR)</if> |
ddf98968 VS |
2265 | </set> |
2266 | ||
22d2b5bf | 2267 | <set var="CORE_SRC" hints="files"> |
ddf98968 | 2268 | <if cond="USE_GUI=='1' and WXUNIV=='0'"> |
e86e1522 | 2269 | $(LOWLEVEL_SRC) $(GUI_SRC) $(GUI_CMN_SRC) |
ddf98968 VS |
2270 | </if> |
2271 | <if cond="USE_GUI=='1' and WXUNIV=='1'"> | |
e86e1522 | 2272 | $(LOWLEVEL_SRC) $(UNIV_SRC) $(UNIV_THEMES_SRC) $(GUI_CMN_SRC) |
ddf98968 VS |
2273 | </if> |
2274 | </set> | |
21041c70 | 2275 | |
131f235d VS |
2276 | <!-- wxAdvanced files: --> |
2277 | <set var="ADVANCED_PLATFORM_SRC" hints="files"> | |
2278 | <if cond="TOOLKIT=='MSW'">$(ADVANCED_MSW_SRC)</if> | |
2279 | <if cond="TOOLKIT=='MAC'">$(ADVANCED_MAC_SRC)</if> | |
2280 | <if cond="TOOLKIT=='MOTIF'">$(ADVANCED_UNIX_SRC)</if> | |
2281 | <if cond="TOOLKIT=='GTK'">$(ADVANCED_UNIX_SRC)</if> | |
2282 | <if cond="TOOLKIT=='X11'">$(ADVANCED_UNIX_SRC)</if> | |
96c1699d | 2283 | <if cond="TOOLKIT=='PM'">$(ADVANCED_OS2_SRC)</if> |
131f235d VS |
2284 | </set> |
2285 | <set var="ADVANCED_PLATFORM_HDR" hints="files"> | |
2286 | <if cond="TOOLKIT=='MSW'">$(ADVANCED_MSW_HDR)</if> | |
2287 | <if cond="TOOLKIT=='MAC'">$(ADVANCED_MAC_HDR)</if> | |
2288 | <if cond="TOOLKIT=='MOTIF'">$(ADVANCED_UNIX_HDR)</if> | |
2289 | <if cond="TOOLKIT=='GTK'">$(ADVANCED_UNIX_HDR)</if> | |
2290 | <if cond="TOOLKIT=='X11'">$(ADVANCED_UNIX_HDR)</if> | |
96c1699d | 2291 | <if cond="TOOLKIT=='PM'">$(ADVANCED_OS2_HDR)</if> |
131f235d VS |
2292 | </set> |
2293 | <set var="ADVANCED_SRC">$(ADVANCED_CMN_SRC) $(ADVANCED_PLATFORM_SRC)</set> | |
2294 | <set var="ADVANCED_HDR">$(ADVANCED_CMN_HDR) $(ADVANCED_PLATFORM_HDR)</set> | |
2295 | ||
ddf98968 | 2296 | |
4d264332 | 2297 | |
ca58c9bb VS |
2298 | <set var="GUI_CORE_HEADERS" hints="files"> |
2299 | <if cond="USE_GUI=='1' and WXUNIV=='0'">$(GUI_HDR)</if> | |
2300 | <if cond="USE_GUI=='1' and WXUNIV=='1'">$(UNIV_HDR)</if> | |
2301 | </set> | |
2302 | ||
22d2b5bf | 2303 | <set var="ALL_GUI_HEADERS" hints="files"> |
ca58c9bb VS |
2304 | <if cond="USE_GUI=='1'"> |
2305 | $(GUI_CMN_HDR) | |
2306 | $(LOWLEVEL_HDR) | |
2307 | $(GUI_CORE_HEADERS) | |
2308 | $(ADVANCED_HDR) $(HTML_HDR) | |
21041c70 | 2309 | $(OPENGL_HDR) $(DBGRID_HDR) |
4d264332 VS |
2310 | </if> |
2311 | </set> | |
21041c70 | 2312 | |
921f5019 | 2313 | |
7affac1c | 2314 | <set var="ALL_BASE_HEADERS" make_var="1" hints="files"> |
ddf98968 | 2315 | $(BASE_CMN_HDR) $(BASE_PLATFORM_HDR) |
7c4728f6 | 2316 | $(NET_CMN_HDR) $(NET_PLATFORM_HDR) |
21041c70 | 2317 | $(XML_HDR) $(ODBC_HDR) |
7affac1c VS |
2318 | </set> |
2319 | ||
2320 | <set var="ALL_HEADERS" make_var="1" hints="files"> | |
ca58c9bb VS |
2321 | $(ALL_BASE_HEADERS) $(ALL_GUI_HEADERS) |
2322 | </set> | |
2323 | ||
2324 | <set var="ALL_BASE_SOURCES" make_var="1" hints="files"> | |
2325 | $(BASE_CMN_SRC) | |
2326 | $(BASE_UNIX_SRC) $(BASE_WIN32_SRC) $(BASE_MAC_SRC) $(BASE_DARWIN_SRC) | |
2327 | $(BASE_OS2_SRC) | |
2328 | $(BASE_AND_GUI_CMN_SRC) | |
2329 | $(BASE_AND_GUI_UNIX_SRC) | |
2330 | $(BASE_AND_GUI_MAC_SRC) | |
2331 | $(BASE_AND_GUI_DARWIN_SRC) | |
2332 | $(BASE_AND_GUI_WIN32_SRC) | |
d40f26be | 2333 | $(NET_CMN_SRC) $(NET_UNIX_SRC) $(NET_WIN32_SRC) |
21041c70 | 2334 | $(XML_SRC) $(ODBC_SRC) |
ddf98968 VS |
2335 | </set> |
2336 | ||
2337 | </makefile> |