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