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