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