]>
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 | |
a2897d43 | 25 | BASE_$(platform) base files used on platform |
e86e1522 | 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 | |
ca95ed8e VZ |
33 | MSW_DESKTOP files used only on desktop Windows |
34 | versions and not under Windows CE | |
35 | ||
36 | xxx_NATIVE native files not used by wxUniv (used as | |
37 | complement of LOWLEVEL when most of the | |
38 | files are lowlevel and only few are native) | |
39 | ||
e86e1522 | 40 | HTML wxHTML files |
3849327b | 41 | XRC wxXRC files |
88f23fdd | 42 | |
ddf98968 | 43 | * one file may be listed in several groups |
88f23fdd | 44 | |
ddf98968 VS |
45 | ====================================================================== --> |
46 | ||
47 | ||
48 | ||
ddf98968 VS |
49 | <!-- ====================================================================== --> |
50 | <!-- wxBase --> | |
51 | <!-- ====================================================================== --> | |
52 | ||
fc480dc1 DE |
53 | <!-- =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- --> |
54 | <!-- UNIX --> | |
55 | <!-- =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- --> | |
c0bf294f VZ |
56 | |
57 | <!-- Files used on all Unix systems, including Darwin --> | |
58 | <set var="BASE_UNIX_AND_DARWIN_SRC" hints="files"> | |
b46b1d59 VZ |
59 | src/common/fdiodispatcher.cpp |
60 | src/common/selectdispatcher.cpp | |
61 | src/unix/appunix.cpp | |
9a90985d | 62 | src/unix/baseunix.cpp |
b46b1d59 | 63 | src/unix/evtloopunix.cpp |
c0bf294f | 64 | src/unix/dlunix.cpp |
ddf98968 | 65 | src/unix/snglinst.cpp |
8e5d5108 | 66 | src/unix/stdpaths.cpp |
c2ca375c | 67 | src/unix/timerunx.cpp |
e86e1522 | 68 | </set> |
c0bf294f VZ |
69 | |
70 | <set var="BASE_UNIX_AND_DARWIN_HDR" hints="files"> | |
70550b22 RD |
71 | wx/private/fdiodispatcher.h |
72 | wx/private/selectdispatcher.h | |
b46b1d59 | 73 | wx/unix/app.h |
ca58c9bb VS |
74 | wx/unix/apptbase.h |
75 | wx/unix/apptrait.h | |
a1873279 | 76 | wx/unix/chkconf.h |
b46b1d59 | 77 | wx/unix/evtloop.h |
ca58c9bb | 78 | wx/unix/pipe.h |
c0bf294f VZ |
79 | wx/unix/stdpaths.h |
80 | </set> | |
81 | ||
82 | <!-- | |
83 | Files used on all Unix systems, including Darwin with any port but wxMac | |
84 | (this is really an aberration, we should also use these files for wxMac, | |
85 | it's not done because of some OS 9 support leftovers only now) | |
86 | --> | |
87 | <set var="BASE_UNIX_AND_DARWIN_NOTWXMAC_SRC" hints="files"> | |
88 | $(BASE_UNIX_AND_DARWIN_SRC) | |
89 | src/unix/dir.cpp | |
90 | src/unix/mimetype.cpp | |
91 | src/unix/threadpsx.cpp | |
92 | </set> | |
93 | ||
94 | <set var="BASE_UNIX_AND_DARWIN_NOTWXMAC_HDR" hints="files"> | |
95 | $(BASE_UNIX_AND_DARWIN_HDR) | |
96 | wx/unix/execute.h | |
97 | wx/unix/mimetype.h | |
17a1ebd1 | 98 | wx/unix/private.h |
c0bf294f VZ |
99 | </set> |
100 | ||
101 | <!-- | |
102 | Files used on all non-Darwin Unix systems (because Darwin provides other, | |
103 | better, native equivalents of the functionality they implement (e.g. | |
104 | CFSocket instead of BSD sockets) or doesn't provide it at all (epoll, | |
105 | backtrace()) | |
106 | --> | |
107 | <set var="BASE_UNIX_SRC" hints="files"> | |
108 | $(BASE_UNIX_AND_DARWIN_NOTWXMAC_SRC) | |
109 | src/common/gsocketiohandler.cpp | |
110 | src/unix/epolldispatcher.cpp | |
111 | src/unix/stackwalk.cpp | |
112 | </set> | |
113 | <set var="BASE_AND_GUI_UNIX_SRC" hints="files"> | |
114 | src/unix/utilsunx.cpp | |
115 | </set> | |
116 | <set var="BASE_UNIX_HDR" hints="files"> | |
117 | $(BASE_UNIX_AND_DARWIN_NOTWXMAC_HDR) | |
118 | wx/private/gsocketiohandler.h | |
eaff0f0d | 119 | wx/unix/stackwalk.h |
ddf98968 | 120 | </set> |
e86e1522 | 121 | |
fc480dc1 DE |
122 | <!-- =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- --> |
123 | <!-- Windows --> | |
124 | <!-- =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- --> | |
22d2b5bf | 125 | <set var="BASE_WIN32_SRC" hints="files"> |
9a90985d | 126 | src/msw/basemsw.cpp |
5df6736f | 127 | src/msw/crashrpt.cpp |
107d0fd4 | 128 | src/msw/debughlp.cpp |
ddf98968 VS |
129 | src/msw/dde.cpp |
130 | src/msw/dir.cpp | |
107d0fd4 | 131 | src/msw/dlmsw.cpp |
ddf98968 | 132 | src/msw/mimetype.cpp |
3032b7b5 | 133 | src/msw/power.cpp |
ddf98968 VS |
134 | src/msw/regconf.cpp |
135 | src/msw/registry.cpp | |
136 | src/msw/snglinst.cpp | |
107d0fd4 | 137 | src/msw/stackwalk.cpp |
6d3b231a | 138 | src/msw/stdpaths.cpp |
ddf98968 | 139 | src/msw/thread.cpp |
c2ca375c | 140 | src/msw/timer.cpp |
ddf98968 VS |
141 | src/msw/utils.cpp |
142 | src/msw/utilsexc.cpp | |
e86e1522 | 143 | </set> |
22d2b5bf | 144 | <set var="BASE_AND_GUI_WIN32_SRC" hints="files"> |
81df6af3 | 145 | src/msw/evtloop.cpp |
7340bea2 | 146 | src/msw/main.cpp |
e86e1522 | 147 | src/msw/mslu.cpp |
ddf98968 VS |
148 | src/msw/volume.cpp |
149 | </set> | |
af594eca VS |
150 | <set var="BASE_WINCE_SRC" hints="files"> |
151 | <if cond="TOOLKIT=='WINCE'">src/msw/wince/time.cpp</if> | |
152 | </set> | |
22d2b5bf | 153 | <set var="BASE_WIN32_HDR" hints="files"> |
ca58c9bb VS |
154 | wx/msw/apptrait.h |
155 | wx/msw/apptbase.h | |
5df6736f VS |
156 | wx/msw/chkconf.h |
157 | wx/msw/crashrpt.h | |
ddf98968 | 158 | wx/msw/dde.h |
107d0fd4 | 159 | wx/msw/debughlp.h |
ddf98968 | 160 | wx/msw/gccpriv.h |
8bda759f | 161 | wx/msw/libraries.h |
ddf98968 | 162 | wx/msw/mimetype.h |
40b13bcf | 163 | wx/msw/mslu.h |
bee413ee | 164 | wx/msw/private.h |
4835f3be WS |
165 | wx/msw/regconf.h |
166 | wx/msw/registry.h | |
39ea2103 | 167 | wx/msw/seh.h |
107d0fd4 | 168 | wx/msw/stackwalk.h |
76c35c88 | 169 | wx/msw/stdpaths.h |
ddf98968 | 170 | wx/msw/winundef.h |
0d236fd0 | 171 | wx/msw/wrapcctl.h |
660296aa | 172 | wx/msw/wrapcdlg.h |
d7e91db2 | 173 | wx/msw/wrapwin.h |
ddf98968 | 174 | </set> |
af594eca | 175 | <set var="BASE_WINCE_HDR" hints="files"> |
2227439b WS |
176 | <if cond="TOOLKIT=='WINCE'"> |
177 | wx/msw/wince/time.h | |
178 | wx/msw/wince/chkconf.h | |
179 | </if> | |
af594eca | 180 | </set> |
e86e1522 | 181 | |
fc480dc1 DE |
182 | <!-- =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- --> |
183 | <!-- Mac --> | |
184 | <!-- =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- --> | |
185 | ||
186 | <!-- Used on Mac OS CarbonLib, Mac OS X wxMac base, and Mac OS X darwin base --> | |
187 | <set var="BASE_COREFOUNDATION_SRC" hints="files"> | |
188 | src/mac/corefoundation/cfstring.cpp | |
2804f77d | 189 | src/mac/corefoundation/gsockosx.cpp |
fc480dc1 | 190 | src/mac/corefoundation/stdpaths_cf.cpp |
e4dd1e19 | 191 | src/mac/corefoundation/strconv_cf.cpp |
1ccb7433 | 192 | src/mac/corefoundation/utilsexc_base.cpp |
fc480dc1 DE |
193 | </set> |
194 | <set var="BASE_COREFOUNDATION_HDR" hints="files"> | |
a66571e5 DE |
195 | wx/mac/corefoundation/cfdataref.h |
196 | wx/mac/corefoundation/cfref.h | |
fc480dc1 | 197 | wx/mac/corefoundation/cfstring.h |
4cb1d3da | 198 | wx/mac/corefoundation/hid.h |
fc480dc1 | 199 | wx/mac/corefoundation/stdpaths.h |
e4dd1e19 | 200 | wx/mac/corefoundation/private/strconv_cf.h |
fc480dc1 DE |
201 | </set> |
202 | ||
7b860930 DE |
203 | <!-- Base files used by Carbon on OS X and CarbonLib (not true Classic) --> |
204 | <!-- FIXME: Maybe this ought to be named BASE_MAC_CARBON_SRC --> | |
22d2b5bf | 205 | <set var="BASE_MAC_SRC" hints="files"> |
56bb4a5e SC |
206 | src/mac/carbon/dirmac.cpp |
207 | src/mac/carbon/mimetmac.cpp | |
56bb4a5e | 208 | src/mac/carbon/thread.cpp |
7b860930 DE |
209 | <!-- One would think MoreFilesX is only for OS X but it seems to |
210 | apply to CarbonLib as well (FSRefMakeFSSpec) --> | |
56bb4a5e | 211 | src/mac/carbon/morefilex/MoreFilesX.c |
fc480dc1 DE |
212 | $(BASE_COREFOUNDATION_SRC) |
213 | </set> | |
214 | <set var="BASE_MAC_HDR" hints="files"> | |
215 | $(BASE_COREFOUNDATION_HDR) | |
216 | </set> | |
217 | <!-- Base and GUI files used by both OS X and CarbonLib --> | |
218 | <set var="BASE_AND_GUI_MAC_SRC" hints="files"> | |
219 | src/mac/carbon/utils.cpp | |
220 | src/mac/carbon/uma.cpp | |
8b509749 VS |
221 | </set> |
222 | ||
7b860930 DE |
223 | <!-- Base files used by Classic (not CarbonLib or OS X builds) --> |
224 | <!-- set var="BASE_MAC_CLASSIC_SRC"> | |
225 | </set --> | |
fc480dc1 DE |
226 | <!-- set var="BASE_MAC_CLASSIC_HDR"> |
227 | </set --> | |
7b860930 DE |
228 | |
229 | <!-- Base files used only by CarbonLib builds (not Classic or OS X) --> | |
230 | <set var="BASE_MAC_CARBONLIB_SRC" hints="files"> | |
231 | src/mac/carbon/morefile/DirectoryCopy.c | |
232 | src/mac/carbon/morefile/FSpCompat.c | |
233 | src/mac/carbon/morefile/FileCopy.c | |
234 | src/mac/carbon/morefile/FullPath.c | |
235 | src/mac/carbon/morefile/IterateDirectory.c | |
236 | src/mac/carbon/morefile/MoreDesktopMgr.c | |
237 | src/mac/carbon/morefile/MoreFiles.c | |
238 | src/mac/carbon/morefile/MoreFilesExtras.c | |
239 | src/mac/carbon/morefile/Search.c | |
d2647fb1 | 240 | src/mac/carbon/utilsexc.cpp |
7b860930 | 241 | </set> |
fc480dc1 DE |
242 | <!-- set var="BASE_MAC_CARBONLIB_HDR" hints="files"> |
243 | </set --> | |
7b860930 DE |
244 | |
245 | <!-- Base files used only by OS X builds (not CarbonLib or Classic) --> | |
df3c72ad DE |
246 | <set var="BASE_MACOSX_WXMAC_SRC" hints="files"> |
247 | $(BASE_MAC_SRC) | |
c0bf294f | 248 | $(BASE_UNIX_AND_DARWIN_SRC) |
7b860930 | 249 | </set> |
df3c72ad DE |
250 | <set var="BASE_MACOSX_WXMAC_HDR" hints="files"> |
251 | $(BASE_MAC_HDR) | |
c0bf294f | 252 | $(BASE_UNIX_AND_DARWIN_HDR) |
9feb7716 | 253 | </set> |
8b509749 | 254 | |
fc480dc1 | 255 | <!-- Base files used by non-wxMac OS X builds --> |
ad07ce2b | 256 | <set var="BASE_MACOSX_NOTWXMAC_SRC" hints="files"> |
c0bf294f | 257 | $(BASE_UNIX_AND_DARWIN_NOTWXMAC_SRC) |
fc480dc1 DE |
258 | $(BASE_COREFOUNDATION_SRC) |
259 | </set> | |
ad07ce2b | 260 | <set var="BASE_MACOSX_NOTWXMAC_HDR" hints="files"> |
c0bf294f | 261 | $(BASE_UNIX_AND_DARWIN_NOTWXMAC_HDR) |
fc480dc1 | 262 | $(BASE_COREFOUNDATION_HDR) |
ddf98968 | 263 | </set> |
e86e1522 | 264 | |
fc480dc1 DE |
265 | <!-- =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- --> |
266 | <!-- OS/2 --> | |
267 | <!-- =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- --> | |
a986efd0 | 268 | |
22d2b5bf | 269 | <set var="BASE_OS2_SRC" hints="files"> |
9a2b64ef SN |
270 | src/common/fdiodispatcher.cpp |
271 | src/common/selectdispatcher.cpp | |
f90913e2 | 272 | src/common/gsocketiohandler.cpp |
9a2b64ef SN |
273 | src/unix/appunix.cpp |
274 | src/unix/evtloopunix.cpp | |
62f98885 | 275 | src/unix/timerunx.cpp |
ddf98968 | 276 | src/os2/dir.cpp |
5cc55caf | 277 | src/os2/mimetype.cpp |
175bb578 | 278 | src/os2/stdpaths.cpp |
5cc55caf | 279 | src/os2/thread.cpp |
ddf98968 VS |
280 | src/os2/utils.cpp |
281 | src/os2/utilsexc.cpp | |
282 | </set> | |
22d2b5bf | 283 | <set var="BASE_AND_GUI_OS2_SRC" hints="files"> |
e86e1522 | 284 | </set> |
22d2b5bf | 285 | <set var="BASE_OS2_HDR" hints="files"> |
9a2b64ef SN |
286 | wx/private/fdiodispatcher.h |
287 | wx/private/selectdispatcher.h | |
f90913e2 | 288 | wx/private/gsocketiohandler.h |
62f98885 | 289 | wx/unix/app.h |
175bb578 SN |
290 | wx/os2/apptbase.h |
291 | wx/os2/apptrait.h | |
9a2b64ef | 292 | wx/unix/evtloop.h |
175bb578 | 293 | wx/os2/mimetype.h |
e918f058 | 294 | wx/os2/private.h |
175bb578 | 295 | wx/os2/stdpaths.h |
ddc2587f | 296 | wx/os2/chkconf.h |
7e04a500 | 297 | wx/os2/wxrsc.h |
ddf98968 | 298 | </set> |
e86e1522 | 299 | |
a986efd0 WS |
300 | <!-- =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- --> |
301 | <!-- PalmOS --> | |
302 | <!-- =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- --> | |
303 | ||
304 | <set var="BASE_PALMOS_SRC" hints="files"> | |
305 | src/palmos/base.cpp | |
306 | src/palmos/dir.cpp | |
307 | src/palmos/prefconf.cpp | |
308 | src/palmos/snglinst.cpp | |
e2fc40b4 | 309 | src/palmos/stdall.c |
a986efd0 WS |
310 | src/palmos/thread.cpp |
311 | src/palmos/utils.cpp | |
312 | src/palmos/utilsexc.cpp | |
313 | </set> | |
314 | ||
315 | <set var="BASE_AND_GUI_PALMOS_SRC" hints="files"> | |
316 | src/palmos/main.cpp | |
317 | src/palmos/volume.cpp | |
318 | </set> | |
319 | ||
320 | <set var="BASE_PALMOS_HDR" hints="files"> | |
321 | wx/palmos/apptbase.h | |
322 | wx/palmos/apptrait.h | |
323 | wx/palmos/chkconf.h | |
324 | wx/palmos/mimetype.h | |
e2fc40b4 | 325 | wx/palmos/missing.h |
a986efd0 WS |
326 | wx/palmos/stdpaths.h |
327 | </set> | |
328 | ||
83d8eb47 MW |
329 | <!-- =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- --> |
330 | <!-- MSDOS --> | |
331 | <!-- =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- --> | |
332 | ||
333 | <set var="BASE_MSDOS_SRC" hints="files"> | |
334 | src/msdos/dir.cpp | |
335 | src/msdos/mimetype.cpp | |
336 | src/msdos/utilsdos.cpp | |
337 | </set> | |
338 | <set var="BASE_AND_GUI_MSDOS_SRC" hints="files"> | |
339 | </set> | |
340 | <set var="BASE_MSDOS_HDR" hints="files"> | |
341 | wx/msdos/mimetype.h | |
342 | </set> | |
343 | ||
fc480dc1 DE |
344 | <!-- =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- --> |
345 | <!-- Common --> | |
346 | <!-- =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- --> | |
22d2b5bf | 347 | <set var="BASE_CMN_SRC" hints="files"> |
9a90985d | 348 | src/common/appbase.cpp |
56d5b4b8 MW |
349 | src/common/arcall.cpp |
350 | src/common/arcfind.cpp | |
2304e5c9 | 351 | src/common/archive.cpp |
a7ea63e2 | 352 | src/common/arrstr.cpp |
4db03d26 | 353 | src/common/base64.cpp |
93a15cf1 | 354 | src/common/clntdata.cpp |
ddf98968 VS |
355 | src/common/cmdline.cpp |
356 | src/common/config.cpp | |
830f8f11 | 357 | src/common/convauto.cpp |
ddf98968 VS |
358 | src/common/datetime.cpp |
359 | src/common/datstrm.cpp | |
ddf98968 VS |
360 | src/common/dircmn.cpp |
361 | src/common/dynarray.cpp | |
362 | src/common/dynlib.cpp | |
363 | src/common/dynload.cpp | |
364 | src/common/encconv.cpp | |
b46b1d59 | 365 | src/common/evtloopcmn.cpp |
ddf98968 VS |
366 | src/common/extended.c |
367 | src/common/ffile.cpp | |
368 | src/common/file.cpp | |
f8f6c91a | 369 | src/common/fileback.cpp |
ddf98968 VS |
370 | src/common/fileconf.cpp |
371 | src/common/filefn.cpp | |
372 | src/common/filename.cpp | |
373 | src/common/filesys.cpp | |
166c3ef0 MW |
374 | src/common/filtall.cpp |
375 | src/common/filtfind.cpp | |
9a90985d | 376 | src/common/fmapbase.cpp |
f068697b | 377 | src/common/fs_arc.cpp |
37671b82 | 378 | src/common/fs_filter.cpp |
ddf98968 VS |
379 | src/common/hash.cpp |
380 | src/common/hashmap.cpp | |
4f4a180e | 381 | src/common/init.cpp |
ddf98968 VS |
382 | src/common/intl.cpp |
383 | src/common/ipcbase.cpp | |
384 | src/common/list.cpp | |
385 | src/common/log.cpp | |
386 | src/common/longlong.cpp | |
387 | src/common/memory.cpp | |
388 | src/common/mimecmn.cpp | |
389 | src/common/module.cpp | |
ddf98968 VS |
390 | src/common/mstream.cpp |
391 | src/common/object.cpp | |
8bb6b2c0 | 392 | src/common/platinfo.cpp |
355debca | 393 | src/common/powercmn.cpp |
ddf98968 | 394 | src/common/process.cpp |
ddf98968 | 395 | src/common/regex.cpp |
8e5d5108 | 396 | src/common/stdpbase.cpp |
121fa06a | 397 | src/common/sstream.cpp |
9a90985d | 398 | src/common/stopwatch.cpp |
ddf98968 VS |
399 | src/common/strconv.cpp |
400 | src/common/stream.cpp | |
401 | src/common/string.cpp | |
a7ea63e2 | 402 | src/common/stringimpl.cpp |
467175ab | 403 | src/common/stringops.cpp |
c9f78968 | 404 | src/common/strvararg.cpp |
ddf98968 | 405 | src/common/sysopt.cpp |
56d5b4b8 | 406 | src/common/tarstrm.cpp |
ddf98968 VS |
407 | src/common/textbuf.cpp |
408 | src/common/textfile.cpp | |
c2ca375c VZ |
409 | src/common/timercmn.cpp |
410 | src/common/timerimpl.cpp | |
ddf98968 VS |
411 | src/common/tokenzr.cpp |
412 | src/common/txtstrm.cpp | |
dd0ef332 | 413 | src/common/unichar.cpp |
dd65d8c8 | 414 | src/common/uri.cpp |
ddf98968 VS |
415 | src/common/variant.cpp |
416 | src/common/wfstream.cpp | |
dd0ef332 VS |
417 | src/common/wxcrt.cpp |
418 | src/common/wxprintf.cpp | |
9c6cef05 JS |
419 | src/common/xti.cpp |
420 | src/common/xtistrm.cpp | |
ddf98968 VS |
421 | src/common/zipstrm.cpp |
422 | src/common/zstream.cpp | |
423 | </set> | |
22d2b5bf | 424 | <set var="BASE_AND_GUI_CMN_SRC" hints="files"> |
075131fd | 425 | src/common/event.cpp |
e86e1522 VS |
426 | src/common/fs_mem.cpp |
427 | src/common/msgout.cpp | |
428 | src/common/utilscmn.cpp | |
429 | </set> | |
22d2b5bf | 430 | <set var="BASE_CMN_HDR" hints="files"> |
21041c70 | 431 | wx/afterstd.h |
5df6736f | 432 | wx/app.h |
eb9dd149 | 433 | wx/apptrait.h |
2304e5c9 | 434 | wx/archive.h |
ddf98968 | 435 | wx/arrimpl.cpp |
5df6736f | 436 | wx/arrstr.h |
cde76cf2 | 437 | wx/atomic.h |
4db03d26 | 438 | wx/base64.h |
5df6736f | 439 | wx/beforestd.h |
ddf98968 VS |
440 | wx/buffer.h |
441 | wx/build.h | |
dd0ef332 | 442 | wx/chartype.h |
ddf98968 | 443 | wx/chkconf.h |
93a15cf1 | 444 | wx/clntdata.h |
541ea80f | 445 | wx/cmdargs.h |
ddf98968 VS |
446 | wx/cmdline.h |
447 | wx/confbase.h | |
448 | wx/config.h | |
830f8f11 | 449 | wx/convauto.h |
5df6736f | 450 | wx/containr.h |
cdd8d745 | 451 | wx/cpp.h |
abde3283 | 452 | wx/crt.h |
ddf98968 | 453 | wx/datetime.h |
ddf98968 | 454 | wx/datstrm.h |
ddf98968 VS |
455 | wx/dde.h |
456 | wx/debug.h | |
457 | wx/defs.h | |
458 | wx/dir.h | |
0cc66b6c | 459 | wx/dlimpexp.h |
ddf98968 VS |
460 | wx/dynarray.h |
461 | wx/dynlib.h | |
462 | wx/dynload.h | |
463 | wx/encconv.h | |
464 | wx/event.h | |
2524f1ce | 465 | wx/except.h |
ddf98968 | 466 | wx/features.h |
afc89ff4 | 467 | wx/flags.h |
ddf98968 VS |
468 | wx/ffile.h |
469 | wx/file.h | |
470 | wx/fileconf.h | |
471 | wx/filefn.h | |
472 | wx/filename.h | |
473 | wx/filesys.h | |
474 | wx/fontenc.h | |
475 | wx/fontmap.h | |
f068697b | 476 | wx/fs_arc.h |
37671b82 | 477 | wx/fs_filter.h |
ddf98968 | 478 | wx/fs_mem.h |
5df6736f | 479 | wx/fs_zip.h |
ddf98968 VS |
480 | wx/hash.h |
481 | wx/hashmap.h | |
ca58c9bb | 482 | wx/hashset.h |
520a495c | 483 | wx/html/forcelnk.h |
075131fd | 484 | wx/iconloc.h |
5df6736f | 485 | wx/init.h |
ddf98968 VS |
486 | wx/intl.h |
487 | wx/iosfwrap.h | |
488 | wx/ioswrap.h | |
489 | wx/ipc.h | |
490 | wx/ipcbase.h | |
6cf2fb76 | 491 | wx/link.h |
ddf98968 | 492 | wx/list.h |
5df6736f | 493 | wx/listimpl.cpp |
ddf98968 VS |
494 | wx/log.h |
495 | wx/longlong.h | |
496 | wx/math.h | |
ddf98968 | 497 | wx/memconf.h |
5df6736f | 498 | wx/memory.h |
ddf98968 VS |
499 | wx/memtext.h |
500 | wx/mimetype.h | |
501 | wx/module.h | |
502 | wx/msgout.h | |
503 | wx/mstream.h | |
504 | wx/object.h | |
505 | wx/platform.h | |
8bb6b2c0 | 506 | wx/platinfo.h |
355debca | 507 | wx/power.h |
ddf98968 | 508 | wx/process.h |
ca58c9bb | 509 | wx/ptr_scpd.h |
97d16ceb | 510 | wx/recguard.h |
ddf98968 | 511 | wx/regex.h |
ca58c9bb | 512 | wx/scopeguard.h |
ddf98968 | 513 | wx/snglinst.h |
121fa06a | 514 | wx/sstream.h |
4048a3c8 | 515 | wx/stack.h |
107d0fd4 | 516 | wx/stackwalk.h |
8e5d5108 | 517 | wx/stdpaths.h |
e6cbc5e1 | 518 | wx/stockitem.h |
21c557b8 | 519 | wx/stopwatch.h |
ddf98968 VS |
520 | wx/strconv.h |
521 | wx/stream.h | |
522 | wx/string.h | |
a7ea63e2 | 523 | wx/stringimpl.h |
467175ab | 524 | wx/stringops.h |
c9f78968 | 525 | wx/strvararg.h |
ddf98968 | 526 | wx/sysopt.h |
56d5b4b8 | 527 | wx/tarstrm.h |
ddf98968 VS |
528 | wx/textbuf.h |
529 | wx/textfile.h | |
530 | wx/thread.h | |
531 | wx/thrimpl.cpp | |
ca58c9bb | 532 | wx/timer.h |
ddf98968 | 533 | wx/tokenzr.h |
db7035e4 | 534 | wx/tracker.h |
ddf98968 | 535 | wx/txtstrm.h |
5df6736f | 536 | wx/types.h |
dd0ef332 | 537 | wx/unichar.h |
dd65d8c8 | 538 | wx/uri.h |
ddf98968 VS |
539 | wx/utils.h |
540 | wx/variant.h | |
541 | wx/vector.h | |
542 | wx/version.h | |
543 | wx/volume.h | |
db7035e4 | 544 | wx/weakref.h |
ddf98968 VS |
545 | wx/wfstream.h |
546 | wx/wx.h | |
547 | wx/wxchar.h | |
dd0ef332 | 548 | wx/wxcrt.h |
52de37c7 | 549 | wx/wxcrtbase.h |
e7308074 | 550 | wx/wxcrtvararg.h |
ddf98968 | 551 | wx/wxprec.h |
9c6cef05 JS |
552 | wx/xti.h |
553 | wx/xtistrm.h | |
ddf98968 VS |
554 | wx/zipstrm.h |
555 | wx/zstream.h | |
7c4728f6 VS |
556 | </set> |
557 | ||
558 | ||
559 | <!-- ====================================================================== --> | |
560 | <!-- wxNet (part of wxBase) --> | |
561 | <!-- ====================================================================== --> | |
562 | ||
563 | <set var="NET_UNIX_SRC" hints="files"> | |
83a9be34 | 564 | src/unix/gsocket.cpp |
7c4728f6 VS |
565 | </set> |
566 | <set var="NET_UNIX_HDR" hints="files"> | |
567 | wx/unix/gsockunx.h | |
568 | </set> | |
569 | ||
570 | <set var="NET_WIN32_SRC" hints="files"> | |
83a9be34 | 571 | src/msw/gsocket.cpp |
2804f77d | 572 | src/msw/gsockmsw.cpp |
25959b95 | 573 | src/msw/urlmsw.cpp |
7c4728f6 VS |
574 | </set> |
575 | <set var="NET_WIN32_HDR" hints="files"> | |
576 | wx/msw/gsockmsw.h | |
577 | </set> | |
578 | ||
af594eca VS |
579 | <set var="NET_WINCE_SRC" hints="files"> |
580 | <if cond="TOOLKIT=='WINCE'">src/msw/wince/net.cpp</if> | |
581 | </set> | |
582 | <set var="NET_WINCE_HDR" hints="files"> | |
583 | <if cond="TOOLKIT=='WINCE'">wx/msw/wince/net.h</if> | |
584 | </set> | |
585 | ||
7c4728f6 | 586 | <set var="NET_OS2_SRC" hints="files"> |
ebee3cd0 | 587 | src/unix/gsocket.cpp |
7c4728f6 VS |
588 | </set> |
589 | <set var="NET_OS2_HDR" hints="files"> | |
bd3b171d | 590 | wx/unix/gsockunx.h |
7c4728f6 | 591 | </set> |
7b860930 DE |
592 | <!-- Net files used only by CarbonLib (not Classic or OS X) --> |
593 | <set var="NET_MAC_CARBONLIB_SRC" hints="files"> | |
594 | src/mac/carbon/gsocket.cpp | |
595 | </set> | |
596 | <set var="NET_MAC_CARBONLIB_HDR" hints="files"> | |
0ec6ec32 | 597 | wx/mac/carbon/gsockmac.h |
7b860930 | 598 | </set> |
7c4728f6 VS |
599 | |
600 | <set var="NET_CMN_SRC" hints="files"> | |
601 | src/common/fs_inet.cpp | |
602 | src/common/ftp.cpp | |
603 | src/common/http.cpp | |
604 | src/common/protocol.cpp | |
7c4728f6 | 605 | src/common/sckaddr.cpp |
5df6736f | 606 | src/common/sckfile.cpp |
7c4728f6 VS |
607 | src/common/sckipc.cpp |
608 | src/common/sckstrm.cpp | |
609 | src/common/socket.cpp | |
5df6736f | 610 | src/common/url.cpp |
7c4728f6 VS |
611 | </set> |
612 | <set var="NET_CMN_HDR" hints="files"> | |
613 | wx/fs_inet.h | |
7c4728f6 | 614 | wx/gsocket.h |
5df6736f VS |
615 | wx/protocol/file.h |
616 | wx/protocol/ftp.h | |
617 | wx/protocol/http.h | |
618 | wx/protocol/protocol.h | |
7c4728f6 VS |
619 | wx/sckaddr.h |
620 | wx/sckipc.h | |
621 | wx/sckstrm.h | |
622 | wx/socket.h | |
5df6736f | 623 | wx/url.h |
ddf98968 VS |
624 | </set> |
625 | ||
61639efb VZ |
626 | <!-- ====================================================================== --> |
627 | <!-- wxQA (non GUI library) --> | |
628 | <!-- ====================================================================== --> | |
ddf98968 | 629 | |
61639efb VZ |
630 | <set var="QA_SRC" hints="files"> |
631 | src/common/debugrpt.cpp | |
632 | src/generic/dbgrptg.cpp | |
633 | </set> | |
634 | ||
635 | <set var="QA_HDR" hints="files"> | |
4ed30bab | 636 | wx/debugrpt.h |
61639efb | 637 | </set> |
ddf98968 VS |
638 | |
639 | <!-- ====================================================================== --> | |
640 | <!-- Common GUI files --> | |
641 | <!-- ====================================================================== --> | |
642 | ||
22d2b5bf | 643 | <set var="GUI_CMN_SRC" hints="files"> |
c36d4774 | 644 | src/common/accelcmn.cpp |
ddf98968 | 645 | src/common/accesscmn.cpp |
72045d57 | 646 | src/common/anidecod.cpp |
5df6736f | 647 | src/common/appcmn.cpp |
ddf98968 VS |
648 | src/common/artprov.cpp |
649 | src/common/artstd.cpp | |
650 | src/common/bmpbase.cpp | |
16aa9c84 | 651 | src/common/bookctrl.cpp |
94aff5ff | 652 | src/common/btncmn.cpp |
fd220f13 | 653 | src/common/cairo.cpp |
ddf98968 VS |
654 | src/common/choiccmn.cpp |
655 | src/common/clipcmn.cpp | |
ec376c8f | 656 | src/common/clrpickercmn.cpp |
40989e46 | 657 | src/common/colourcmn.cpp |
a340b80d | 658 | src/common/combocmn.cpp |
ddf98968 VS |
659 | src/common/cmdproc.cpp |
660 | src/common/cmndata.cpp | |
661 | src/common/containr.cpp | |
662 | src/common/cshelp.cpp | |
663 | src/common/ctrlcmn.cpp | |
664 | src/common/ctrlsub.cpp | |
6d7d8f3b | 665 | src/common/datacmn.cpp |
ddf98968 | 666 | src/common/dcbase.cpp |
2e992e06 | 667 | src/common/dcbufcmn.cpp |
e642beb2 | 668 | src/common/dcgraph.cpp |
54429bb3 | 669 | src/common/dcsvg.cpp |
ddf98968 VS |
670 | src/common/dlgcmn.cpp |
671 | src/common/dndcmn.cpp | |
672 | src/common/dobjcmn.cpp | |
673 | src/common/docmdi.cpp | |
674 | src/common/docview.cpp | |
675 | src/common/dpycmn.cpp | |
676 | src/common/dseldlg.cpp | |
677 | src/common/effects.cpp | |
678 | src/common/fddlgcmn.cpp | |
0cf3e587 | 679 | src/common/filectrlcmn.cpp |
ec376c8f VZ |
680 | src/common/filepickercmn.cpp |
681 | src/common/fontpickercmn.cpp | |
7e7336a7 | 682 | src/common/fldlgcmn.cpp |
ddf98968 | 683 | src/common/fontcmn.cpp |
6540132f | 684 | src/common/fontenumcmn.cpp |
5df6736f | 685 | src/common/fontmap.cpp |
c3a58b24 | 686 | src/common/fontutilcmn.cpp |
ddf98968 | 687 | src/common/framecmn.cpp |
ddf98968 | 688 | src/common/gaugecmn.cpp |
20b35a69 | 689 | src/common/gbsizer.cpp |
ddf98968 VS |
690 | src/common/gdicmn.cpp |
691 | src/common/geometry.cpp | |
692 | src/common/gifdecod.cpp | |
f43426c1 | 693 | src/common/graphcmn.cpp |
ddf98968 VS |
694 | src/common/helpbase.cpp |
695 | src/common/iconbndl.cpp | |
696 | src/common/imagall.cpp | |
697 | src/common/imagbmp.cpp | |
698 | src/common/image.cpp | |
5df6736f | 699 | src/common/imagfill.cpp |
ddf98968 VS |
700 | src/common/imaggif.cpp |
701 | src/common/imagiff.cpp | |
702 | src/common/imagjpeg.cpp | |
703 | src/common/imagpcx.cpp | |
704 | src/common/imagpng.cpp | |
705 | src/common/imagpnm.cpp | |
3af706cc | 706 | src/common/imagtga.cpp |
ddf98968 VS |
707 | src/common/imagtiff.cpp |
708 | src/common/imagxpm.cpp | |
709 | src/common/layout.cpp | |
710 | src/common/lboxcmn.cpp | |
e2bc1d69 | 711 | src/common/listctrlcmn.cpp |
ddf98968 VS |
712 | src/common/matrix.cpp |
713 | src/common/menucmn.cpp | |
714 | src/common/nbkbase.cpp | |
30c841c8 | 715 | src/common/overlaycmn.cpp |
ddf98968 | 716 | src/common/paper.cpp |
ec376c8f | 717 | src/common/pickerbase.cpp |
ddf98968 VS |
718 | src/common/popupcmn.cpp |
719 | src/common/prntbase.cpp | |
720 | src/common/quantize.cpp | |
721 | src/common/radiocmn.cpp | |
4a9cba9e | 722 | src/common/rendcmn.cpp |
ddf98968 VS |
723 | src/common/rgncmn.cpp |
724 | src/common/settcmn.cpp | |
725 | src/common/sizer.cpp | |
3f7f284d | 726 | src/common/srchcmn.cpp |
ddf98968 | 727 | src/common/statbar.cpp |
39bc0347 | 728 | src/common/stattextcmn.cpp |
401e3b6e | 729 | src/common/stockitem.cpp |
ddf98968 VS |
730 | src/common/tbarbase.cpp |
731 | src/common/textcmn.cpp | |
0ec1179b | 732 | src/common/textentrycmn.cpp |
5df6736f | 733 | src/common/toplvcmn.cpp |
ddf98968 VS |
734 | src/common/treebase.cpp |
735 | src/common/valgen.cpp | |
736 | src/common/validate.cpp | |
737 | src/common/valtext.cpp | |
738 | src/common/wincmn.cpp | |
cf2810aa | 739 | src/common/windowid.cpp |
ddf98968 | 740 | src/common/xpmdecod.cpp |
5df6736f | 741 | src/generic/busyinfo.cpp |
e328812d | 742 | src/generic/buttonbar.cpp |
5df6736f | 743 | src/generic/choicdgg.cpp |
f5e0b4bc | 744 | src/generic/choicbkg.cpp |
a340b80d | 745 | src/generic/combog.cpp |
5df6736f VS |
746 | src/generic/dcpsg.cpp |
747 | src/generic/dirctrlg.cpp | |
748 | src/generic/dragimgg.cpp | |
0cf3e587 | 749 | src/generic/filectrlg.cpp |
16aa9c84 | 750 | src/generic/listbkg.cpp |
5df6736f VS |
751 | src/generic/logg.cpp |
752 | src/generic/numdlgg.cpp | |
753 | src/generic/panelg.cpp | |
754 | src/generic/progdlgg.cpp | |
e32f4869 | 755 | src/generic/printps.cpp |
5df6736f | 756 | src/generic/renderg.cpp |
5df6736f VS |
757 | src/generic/scrlwing.cpp |
758 | src/generic/selstore.cpp | |
759 | src/generic/spinctlg.cpp | |
5df6736f | 760 | src/generic/splitter.cpp |
3f7f284d | 761 | src/generic/srchctlg.cpp |
5df6736f | 762 | src/generic/textdlgg.cpp |
5df6736f | 763 | src/generic/tipwin.cpp |
7dcea26b | 764 | src/generic/toolbkg.cpp |
5df6736f | 765 | src/generic/treectlg.cpp |
eca15c0d | 766 | src/generic/treebkg.cpp |
5df6736f VS |
767 | src/generic/vlbox.cpp |
768 | src/generic/vscroll.cpp | |
ddf98968 | 769 | </set> |
22d2b5bf | 770 | <set var="GUI_CMN_HDR" hints="files"> |
5df6736f VS |
771 | wx/bmpbuttn.h |
772 | wx/brush.h | |
773 | wx/button.h | |
fd220f13 | 774 | wx/cairo.h |
5df6736f VS |
775 | wx/checkbox.h |
776 | wx/checklst.h | |
777 | wx/choicdlg.h | |
778 | wx/choice.h | |
779 | wx/cmndata.h | |
3c6fa826 | 780 | wx/collpane.h |
a340b80d | 781 | wx/combo.h |
5df6736f VS |
782 | wx/combobox.h |
783 | wx/control.h | |
784 | wx/ctrlsub.h | |
d7e91db2 | 785 | wx/cursor.h |
d7e91db2 VS |
786 | wx/dc.h |
787 | wx/dcclient.h | |
f629895c | 788 | wx/dcgraph.h |
d7e91db2 VS |
789 | wx/dcmemory.h |
790 | wx/dcprint.h | |
791 | wx/dcscreen.h | |
54429bb3 | 792 | wx/dcsvg.h |
d7e91db2 | 793 | wx/dialog.h |
d7e91db2 | 794 | wx/dirdlg.h |
13cb46e0 | 795 | wx/dragimag.h |
e770e665 | 796 | wx/encinfo.h |
d7e91db2 | 797 | wx/filedlg.h |
5df6736f VS |
798 | wx/frame.h |
799 | wx/gauge.h | |
20b35a69 | 800 | wx/gbsizer.h |
5df6736f | 801 | wx/gdicmn.h |
ddf98968 | 802 | wx/generic/accel.h |
e328812d | 803 | wx/generic/buttonbar.h |
ddf98968 VS |
804 | wx/generic/choicdgg.h |
805 | wx/generic/colrdlgg.h | |
a340b80d | 806 | wx/generic/combo.h |
ddf98968 VS |
807 | wx/generic/dcpsg.h |
808 | wx/generic/dirctrlg.h | |
13cb46e0 | 809 | wx/generic/dragimgg.h |
0cf3e587 | 810 | wx/generic/filectrlg.h |
5df6736f | 811 | wx/generic/logg.h |
ddf98968 | 812 | wx/generic/msgdlgg.h |
aca6b1d7 | 813 | wx/generic/numdlgg.h |
ddf98968 VS |
814 | wx/generic/notebook.h |
815 | wx/generic/panelg.h | |
816 | wx/generic/prntdlgg.h | |
e32f4869 | 817 | wx/generic/printps.h |
ddf98968 | 818 | wx/generic/progdlgg.h |
ddf98968 VS |
819 | wx/generic/scrolwin.h |
820 | wx/generic/spinctlg.h | |
ddf98968 | 821 | wx/generic/splitter.h |
3f7f284d | 822 | wx/generic/srchctlg.h |
ddf98968 | 823 | wx/generic/textdlgg.h |
ddf98968 | 824 | wx/generic/treectlg.h |
f43426c1 | 825 | wx/graphics.h |
5df6736f VS |
826 | wx/helphtml.h |
827 | wx/icon.h | |
828 | wx/layout.h | |
829 | wx/listbox.h | |
830 | wx/mdi.h | |
831 | wx/menu.h | |
832 | wx/msgdlg.h | |
aca6b1d7 | 833 | wx/numdlg.h |
30c841c8 | 834 | wx/overlay.h |
5df6736f VS |
835 | wx/palette.h |
836 | wx/panel.h | |
837 | wx/pen.h | |
97660d42 | 838 | wx/position.h |
5df6736f VS |
839 | wx/radiobox.h |
840 | wx/radiobut.h | |
841 | wx/renderer.h | |
842 | wx/scrolbar.h | |
843 | wx/scrolbar.h | |
844 | wx/scrolwin.h | |
845 | wx/selstore.h | |
846 | wx/settings.h | |
847 | wx/sizer.h | |
848 | wx/slider.h | |
849 | wx/statbmp.h | |
850 | wx/statbox.h | |
851 | wx/stattext.h | |
852 | wx/statusbr.h | |
853 | wx/textctrl.h | |
854 | wx/textdlg.h | |
0ec1179b | 855 | wx/textentry.h |
5df6736f VS |
856 | wx/toolbar.h |
857 | wx/validate.h | |
858 | wx/valtext.h | |
859 | wx/window.h | |
cf2810aa | 860 | wx/windowid.h |
4efdec45 | 861 | wx/wupdlock.h |
88f23fdd | 862 | |
88f23fdd RD |
863 | wx/accel.h |
864 | wx/access.h | |
72045d57 | 865 | wx/anidecod.h |
beff65bf | 866 | wx/animdecod.h |
88f23fdd | 867 | wx/artprov.h |
88f23fdd | 868 | wx/bitmap.h |
16aa9c84 | 869 | wx/bookctrl.h |
88f23fdd | 870 | wx/busyinfo.h |
b7ba00e7 | 871 | wx/generic/busyinfo.h |
88f23fdd | 872 | wx/caret.h |
f5e0b4bc | 873 | wx/choicebk.h |
88f23fdd | 874 | wx/clipbrd.h |
ec376c8f | 875 | wx/clrpicker.h |
88f23fdd RD |
876 | wx/cmdproc.h |
877 | wx/colordlg.h | |
878 | wx/colour.h | |
88f23fdd RD |
879 | wx/cshelp.h |
880 | wx/dataobj.h | |
e4a7bbfc | 881 | wx/dcmirror.h |
88f23fdd RD |
882 | wx/dcps.h |
883 | wx/dialup.h | |
884 | wx/dirctrl.h | |
885 | wx/display.h | |
4efdec45 | 886 | wx/display_impl.h |
88f23fdd RD |
887 | wx/dnd.h |
888 | wx/docmdi.h | |
889 | wx/docview.h | |
88f23fdd RD |
890 | wx/effects.h |
891 | wx/evtloop.h | |
892 | wx/fdrepdlg.h | |
0cf3e587 | 893 | wx/filectrl.h |
ec376c8f VZ |
894 | wx/filepicker.h |
895 | wx/fontpicker.h | |
88f23fdd RD |
896 | wx/fmappriv.h |
897 | wx/font.h | |
898 | wx/fontdlg.h | |
899 | wx/fontenum.h | |
900 | wx/fontutil.h | |
901 | wx/gdiobj.h | |
902 | wx/geometry.h | |
903 | wx/gifdecod.h | |
88f23fdd RD |
904 | wx/help.h |
905 | wx/helpbase.h | |
906 | wx/helpwin.h | |
907 | wx/iconbndl.h | |
88f23fdd RD |
908 | wx/imagbmp.h |
909 | wx/image.h | |
910 | wx/imaggif.h | |
911 | wx/imagiff.h | |
912 | wx/imagjpeg.h | |
913 | wx/imaglist.h | |
914 | wx/imagpcx.h | |
915 | wx/imagpng.h | |
916 | wx/imagpnm.h | |
3af706cc | 917 | wx/imagtga.h |
88f23fdd RD |
918 | wx/imagtiff.h |
919 | wx/imagxpm.h | |
88f23fdd | 920 | wx/listbase.h |
16aa9c84 | 921 | wx/listbook.h |
88f23fdd RD |
922 | wx/listctrl.h |
923 | wx/matrix.h | |
924 | wx/menuitem.h | |
925 | wx/metafile.h | |
926 | wx/minifram.h | |
42b0d8b9 | 927 | wx/nonownedwnd.h |
88f23fdd RD |
928 | wx/notebook.h |
929 | wx/ownerdrw.h | |
930 | wx/paper.h | |
2c52450c | 931 | wx/pickerbase.h |
88f23fdd RD |
932 | wx/popupwin.h |
933 | wx/print.h | |
582f07c2 | 934 | wx/printdlg.h |
88f23fdd RD |
935 | wx/prntbase.h |
936 | wx/progdlg.h | |
937 | wx/ptr_scpd.h | |
938 | wx/quantize.h | |
939 | wx/rawbmp.h | |
940 | wx/region.h | |
88f23fdd RD |
941 | wx/scopeguard.h |
942 | wx/spinbutt.h | |
943 | wx/spinctrl.h | |
88f23fdd | 944 | wx/splitter.h |
3f7f284d | 945 | wx/srchctrl.h |
88f23fdd RD |
946 | wx/statline.h |
947 | wx/tab.h | |
948 | wx/tabctrl.h | |
88f23fdd | 949 | wx/tbarbase.h |
88f23fdd | 950 | wx/tglbtn.h |
88f23fdd | 951 | wx/tipwin.h |
7dcea26b | 952 | wx/toolbook.h |
88f23fdd RD |
953 | wx/tooltip.h |
954 | wx/toplevel.h | |
955 | wx/treebase.h | |
eca15c0d | 956 | wx/treebook.h |
88f23fdd | 957 | wx/treectrl.h |
88f23fdd | 958 | wx/valgen.h |
4048a3c8 | 959 | wx/vidmode.h |
88f23fdd RD |
960 | wx/vlbox.h |
961 | wx/vms_x_fix.h | |
962 | wx/vscroll.h | |
88f23fdd RD |
963 | wx/xpmdecod.h |
964 | wx/xpmhand.h | |
ddf98968 VS |
965 | </set> |
966 | ||
967 | ||
968 | <!-- ====================================================================== --> | |
969 | <!-- Common X11 code: --> | |
970 | <!-- ====================================================================== --> | |
971 | ||
22d2b5bf | 972 | <set var="XWIN_LOWLEVEL_SRC" hints="files"> |
c1eb1389 | 973 | src/generic/caret.cpp |
d4d680e6 | 974 | src/generic/imaglist.cpp |
e86e1522 | 975 | src/unix/dialup.cpp |
5df6736f VS |
976 | src/unix/fontenum.cpp |
977 | src/unix/fontutil.cpp | |
5df6736f | 978 | src/unix/utilsx11.cpp |
bed0b9a6 | 979 | src/unix/displayx11.cpp |
ddf98968 | 980 | </set> |
22d2b5bf | 981 | <set var="XWIN_LOWLEVEL_HDR" hints="files"> |
5df6736f | 982 | wx/generic/caret.h |
d4d680e6 | 983 | wx/generic/imaglist.h |
ddf98968 | 984 | wx/unix/fontutil.h |
5df6736f | 985 | wx/unix/utilsx11.h |
ddf98968 VS |
986 | </set> |
987 | ||
988 | ||
989 | <!-- ====================================================================== --> | |
990 | <!-- wxGTK --> | |
991 | <!-- ====================================================================== --> | |
992 | ||
22d2b5bf | 993 | <set var="GTK_LOWLEVEL_SRC" hints="files"> |
ddf98968 | 994 | $(XWIN_LOWLEVEL_SRC) |
71451a6d | 995 | src/generic/icon.cpp |
5df6736f | 996 | src/generic/paletteg.cpp |
ddf98968 | 997 | src/gtk/app.cpp |
588f4100 | 998 | src/gtk/assertdlg_gtk.c |
ddf98968 VS |
999 | src/gtk/bitmap.cpp |
1000 | src/gtk/brush.cpp | |
1001 | src/gtk/clipbrd.cpp | |
1002 | src/gtk/colour.cpp | |
1003 | src/gtk/cursor.cpp | |
ddf98968 VS |
1004 | src/gtk/dataobj.cpp |
1005 | src/gtk/dc.cpp | |
1006 | src/gtk/dcclient.cpp | |
1007 | src/gtk/dcmemory.cpp | |
1008 | src/gtk/dcscreen.cpp | |
1009 | src/gtk/dnd.cpp | |
1010 | src/gtk/evtloop.cpp | |
0cf3e587 | 1011 | src/gtk/filectrl.cpp |
ddf98968 | 1012 | src/gtk/font.cpp |
83a9be34 | 1013 | src/gtk/gsockgtk.cpp |
5a98fd8d | 1014 | src/gtk/minifram.cpp |
ddf98968 VS |
1015 | src/gtk/pen.cpp |
1016 | src/gtk/popupwin.cpp | |
1017 | src/gtk/region.cpp | |
2479d149 | 1018 | src/gtk/renderer.cpp |
ddf98968 VS |
1019 | src/gtk/settings.cpp |
1020 | src/gtk/timer.cpp | |
1021 | src/gtk/tooltip.cpp | |
5df6736f | 1022 | src/gtk/toplevel.cpp |
ddf98968 | 1023 | src/gtk/utilsgtk.cpp |
08f53168 | 1024 | src/gtk/win_gtk.cpp |
ddf98968 | 1025 | src/gtk/window.cpp |
ddf98968 | 1026 | </set> |
22d2b5bf | 1027 | <set var="GTK_LOWLEVEL_HDR" hints="files"> |
ddf98968 | 1028 | $(XWIN_LOWLEVEL_HDR) |
71451a6d | 1029 | wx/generic/icon.h |
eb9dd149 | 1030 | wx/generic/paletteg.h |
b521a84a | 1031 | wx/gtk/app.h |
588f4100 | 1032 | wx/gtk/assertdlg_gtk.h |
b521a84a VZ |
1033 | wx/gtk/bitmap.h |
1034 | wx/gtk/brush.h | |
1035 | wx/gtk/clipbrd.h | |
1036 | wx/gtk/colour.h | |
1037 | wx/gtk/cursor.h | |
1038 | wx/gtk/dataform.h | |
1039 | wx/gtk/dataobj.h | |
1040 | wx/gtk/dataobj2.h | |
1041 | wx/gtk/dc.h | |
1042 | wx/gtk/dcclient.h | |
1043 | wx/gtk/dcmemory.h | |
1044 | wx/gtk/dcscreen.h | |
1045 | wx/gtk/dnd.h | |
1046 | wx/gtk/font.h | |
b521a84a VZ |
1047 | wx/gtk/minifram.h |
1048 | wx/gtk/pen.h | |
1049 | wx/gtk/popupwin.h | |
1050 | wx/gtk/region.h | |
b521a84a VZ |
1051 | wx/gtk/tooltip.h |
1052 | wx/gtk/toplevel.h | |
1053 | wx/gtk/win_gtk.h | |
1054 | wx/gtk/window.h | |
ddf98968 | 1055 | </set> |
22d2b5bf | 1056 | <set var="GTK_SRC" hints="files"> |
ddf98968 | 1057 | <!-- Generic implementations used by wxGTK: --> |
5df6736f | 1058 | src/generic/accel.cpp |
ddf98968 | 1059 | src/generic/fdrepdlg.cpp |
773623f2 VZ |
1060 | <!-- Needed as long as we support GTK+ < 2.6 --> |
1061 | src/generic/filepickerg.cpp | |
f43426c1 | 1062 | src/generic/graphicc.cpp |
5df6736f | 1063 | src/generic/listctrl.cpp |
5df6736f | 1064 | src/generic/prntdlgg.cpp |
ddf98968 | 1065 | src/generic/statusbr.cpp |
5df6736f | 1066 | src/generic/tabg.cpp |
0f6792ad RR |
1067 | <!-- Generic implementations used by wxGPE: --> |
1068 | src/generic/fontdlgg.cpp | |
773623f2 | 1069 | src/generic/msgdlgg.cpp |
ddf98968 | 1070 | <!-- GTK+ specific files: --> |
7bebedd8 | 1071 | src/gtk/artgtk.cpp |
ddf98968 VS |
1072 | src/gtk/bmpbuttn.cpp |
1073 | src/gtk/button.cpp | |
1074 | src/gtk/checkbox.cpp | |
1075 | src/gtk/checklst.cpp | |
1076 | src/gtk/choice.cpp | |
3c6fa826 | 1077 | src/gtk/collpane.cpp |
274ad000 | 1078 | src/gtk/colordlg.cpp |
ddf98968 VS |
1079 | src/gtk/combobox.cpp |
1080 | src/gtk/control.cpp | |
ec376c8f | 1081 | src/gtk/clrpicker.cpp |
ddf98968 | 1082 | src/gtk/dialog.cpp |
ec376c8f VZ |
1083 | src/gtk/fontpicker.cpp |
1084 | src/gtk/filepicker.cpp | |
4d5beb1c | 1085 | src/gtk/dirdlg.cpp |
9755e73b | 1086 | src/gtk/filedlg.cpp |
ddf98968 VS |
1087 | src/gtk/fontdlg.cpp |
1088 | src/gtk/frame.cpp | |
1089 | src/gtk/gauge.cpp | |
2e350179 | 1090 | src/gtk/gnome/gprint.cpp |
2b850ae1 | 1091 | src/gtk/gnome/gvfs.cpp |
fa034c45 | 1092 | src/gtk/print.cpp |
ddf98968 VS |
1093 | src/gtk/listbox.cpp |
1094 | src/gtk/mdi.cpp | |
1095 | src/gtk/menu.cpp | |
b1f17bf0 | 1096 | src/gtk/mnemonics.cpp |
ddf98968 VS |
1097 | src/gtk/msgdlg.cpp |
1098 | src/gtk/notebook.cpp | |
1099 | src/gtk/radiobox.cpp | |
1100 | src/gtk/radiobut.cpp | |
1101 | src/gtk/scrolbar.cpp | |
1102 | src/gtk/scrolwin.cpp | |
1103 | src/gtk/slider.cpp | |
1104 | src/gtk/spinbutt.cpp | |
1105 | src/gtk/spinctrl.cpp | |
1106 | src/gtk/statbmp.cpp | |
1107 | src/gtk/statbox.cpp | |
1108 | src/gtk/statline.cpp | |
1109 | src/gtk/stattext.cpp | |
1110 | src/gtk/tbargtk.cpp | |
1111 | src/gtk/textctrl.cpp | |
0ec1179b | 1112 | src/gtk/textentry.cpp |
ddf98968 | 1113 | src/gtk/tglbtn.cpp |
4a46cbe8 | 1114 | src/gtk/treeentry_gtk.c |
ddf98968 | 1115 | </set> |
22d2b5bf | 1116 | <set var="GTK_HDR" hints="files"> |
5df6736f | 1117 | wx/generic/fdrepdlg.h |
773623f2 VZ |
1118 | wx/generic/filepickerg.h |
1119 | wx/generic/fontdlgg.h | |
5df6736f VS |
1120 | wx/generic/listctrl.h |
1121 | wx/generic/statusbr.h | |
1122 | wx/generic/tabg.h | |
ddf98968 | 1123 | wx/gtk/accel.h |
ddf98968 | 1124 | wx/gtk/bmpbuttn.h |
ddf98968 VS |
1125 | wx/gtk/button.h |
1126 | wx/gtk/checkbox.h | |
1127 | wx/gtk/checklst.h | |
6619edf0 | 1128 | wx/gtk/chkconf.h |
3c6fa826 | 1129 | wx/gtk/collpane.h |
274ad000 | 1130 | wx/gtk/colordlg.h |
ddf98968 | 1131 | wx/gtk/choice.h |
ddf98968 VS |
1132 | wx/gtk/combobox.h |
1133 | wx/gtk/control.h | |
ec376c8f | 1134 | wx/gtk/clrpicker.h |
ddf98968 | 1135 | wx/gtk/dialog.h |
4d5beb1c | 1136 | wx/gtk/dirdlg.h |
0cf3e587 | 1137 | wx/gtk/filectrl.h |
ddf98968 | 1138 | wx/gtk/filedlg.h |
ec376c8f VZ |
1139 | wx/gtk/fontpicker.h |
1140 | wx/gtk/filepicker.h | |
ddf98968 VS |
1141 | wx/gtk/fontdlg.h |
1142 | wx/gtk/frame.h | |
ddf98968 | 1143 | wx/gtk/gauge.h |
2e350179 | 1144 | wx/gtk/gnome/gprint.h |
2b850ae1 | 1145 | wx/gtk/gnome/gvfs.h |
fa034c45 | 1146 | wx/gtk/print.h |
ddf98968 VS |
1147 | wx/gtk/listbox.h |
1148 | wx/gtk/mdi.h | |
1149 | wx/gtk/menu.h | |
1150 | wx/gtk/menuitem.h | |
ddf98968 VS |
1151 | wx/gtk/msgdlg.h |
1152 | wx/gtk/notebook.h | |
ddf98968 VS |
1153 | wx/gtk/radiobox.h |
1154 | wx/gtk/radiobut.h | |
ddf98968 VS |
1155 | wx/gtk/scrolbar.h |
1156 | wx/gtk/scrolwin.h | |
1157 | wx/gtk/slider.h | |
1158 | wx/gtk/spinbutt.h | |
1159 | wx/gtk/spinctrl.h | |
1160 | wx/gtk/statbmp.h | |
1161 | wx/gtk/statbox.h | |
1162 | wx/gtk/statline.h | |
1163 | wx/gtk/stattext.h | |
1164 | wx/gtk/tbargtk.h | |
1165 | wx/gtk/textctrl.h | |
0ec1179b | 1166 | wx/gtk/textentry.h |
ddf98968 | 1167 | wx/gtk/tglbtn.h |
ddf98968 | 1168 | wx/gtk/treectrl.h |
4a46cbe8 | 1169 | wx/gtk/treeentry_gtk.h |
ddf98968 VS |
1170 | </set> |
1171 | ||
1172 | ||
8ff12d3d MR |
1173 | <!-- ====================================================================== --> |
1174 | <!-- wxGTK1 --> | |
1175 | <!-- ====================================================================== --> | |
1176 | ||
1177 | <set var="GTK1_LOWLEVEL_SRC" hints="files"> | |
1178 | $(XWIN_LOWLEVEL_SRC) | |
71451a6d | 1179 | src/generic/icon.cpp |
8ff12d3d MR |
1180 | src/generic/paletteg.cpp |
1181 | src/gtk1/app.cpp | |
1182 | src/gtk1/bitmap.cpp | |
1183 | src/gtk1/brush.cpp | |
1184 | src/gtk1/clipbrd.cpp | |
1185 | src/gtk1/colour.cpp | |
1186 | src/gtk1/cursor.cpp | |
1187 | src/gtk1/data.cpp | |
1188 | src/gtk1/dataobj.cpp | |
1189 | src/gtk1/dc.cpp | |
1190 | src/gtk1/dcclient.cpp | |
1191 | src/gtk1/dcmemory.cpp | |
1192 | src/gtk1/dcscreen.cpp | |
1193 | src/gtk1/dnd.cpp | |
1194 | src/gtk1/evtloop.cpp | |
1195 | src/gtk1/font.cpp | |
8ff12d3d | 1196 | src/gtk1/gsockgtk.cpp |
8ff12d3d MR |
1197 | src/gtk1/main.cpp |
1198 | src/gtk1/minifram.cpp | |
1199 | src/gtk1/pen.cpp | |
1200 | src/gtk1/popupwin.cpp | |
1201 | src/gtk1/region.cpp | |
1202 | src/gtk1/renderer.cpp | |
1203 | src/gtk1/settings.cpp | |
1204 | src/gtk1/timer.cpp | |
1205 | src/gtk1/tooltip.cpp | |
1206 | src/gtk1/toplevel.cpp | |
1207 | src/gtk1/utilsgtk.cpp | |
1208 | src/gtk1/win_gtk.c | |
1209 | src/gtk1/window.cpp | |
1210 | </set> | |
1211 | <set var="GTK1_LOWLEVEL_HDR" hints="files"> | |
1212 | $(XWIN_LOWLEVEL_HDR) | |
71451a6d | 1213 | wx/generic/icon.h |
8ff12d3d MR |
1214 | wx/generic/paletteg.h |
1215 | wx/gtk1/app.h | |
1216 | wx/gtk1/bitmap.h | |
1217 | wx/gtk1/brush.h | |
1218 | wx/gtk1/clipbrd.h | |
1219 | wx/gtk1/colour.h | |
1220 | wx/gtk1/cursor.h | |
1221 | wx/gtk1/dataform.h | |
1222 | wx/gtk1/dataobj.h | |
1223 | wx/gtk1/dataobj2.h | |
1224 | wx/gtk1/dc.h | |
1225 | wx/gtk1/dcclient.h | |
1226 | wx/gtk1/dcmemory.h | |
1227 | wx/gtk1/dcscreen.h | |
1228 | wx/gtk1/dnd.h | |
1229 | wx/gtk1/font.h | |
8ff12d3d MR |
1230 | wx/gtk1/minifram.h |
1231 | wx/gtk1/pen.h | |
1232 | wx/gtk1/popupwin.h | |
1233 | wx/gtk1/region.h | |
8ff12d3d MR |
1234 | wx/gtk1/tooltip.h |
1235 | wx/gtk1/toplevel.h | |
1236 | wx/gtk1/win_gtk.h | |
1237 | wx/gtk1/window.h | |
1238 | </set> | |
1239 | <set var="GTK1_SRC" hints="files"> | |
1240 | <!-- Generic implementations used by wxGTK1: --> | |
1241 | src/generic/accel.cpp | |
773623f2 VZ |
1242 | src/generic/clrpickerg.cpp |
1243 | src/generic/collpaneg.cpp | |
8ff12d3d MR |
1244 | src/generic/colrdlgg.cpp |
1245 | src/generic/dirdlgg.cpp | |
1246 | src/generic/fdrepdlg.cpp | |
1247 | src/generic/filedlgg.cpp | |
773623f2 VZ |
1248 | src/generic/filepickerg.cpp |
1249 | src/generic/fontdlgg.cpp | |
1250 | src/generic/fontpickerg.cpp | |
8ff12d3d MR |
1251 | src/generic/listctrl.cpp |
1252 | src/generic/msgdlgg.cpp | |
1253 | src/generic/prntdlgg.cpp | |
1254 | src/generic/statusbr.cpp | |
1255 | src/generic/tabg.cpp | |
8ff12d3d MR |
1256 | <!-- GTK1 specific files: --> |
1257 | src/gtk1/bmpbuttn.cpp | |
1258 | src/gtk1/button.cpp | |
1259 | src/gtk1/checkbox.cpp | |
1260 | src/gtk1/checklst.cpp | |
1261 | src/gtk1/choice.cpp | |
1262 | src/gtk1/combobox.cpp | |
1263 | src/gtk1/control.cpp | |
1264 | src/gtk1/dialog.cpp | |
1265 | src/gtk1/filedlg.cpp | |
1266 | src/gtk1/fontdlg.cpp | |
1267 | src/gtk1/frame.cpp | |
1268 | src/gtk1/gauge.cpp | |
1269 | src/gtk1/listbox.cpp | |
1270 | src/gtk1/mdi.cpp | |
1271 | src/gtk1/menu.cpp | |
1272 | src/gtk1/notebook.cpp | |
1273 | src/gtk1/radiobox.cpp | |
1274 | src/gtk1/radiobut.cpp | |
1275 | src/gtk1/scrolbar.cpp | |
1276 | src/gtk1/scrolwin.cpp | |
1277 | src/gtk1/slider.cpp | |
1278 | src/gtk1/spinbutt.cpp | |
1279 | src/gtk1/spinctrl.cpp | |
1280 | src/gtk1/statbmp.cpp | |
1281 | src/gtk1/statbox.cpp | |
1282 | src/gtk1/statline.cpp | |
1283 | src/gtk1/stattext.cpp | |
1284 | src/gtk1/tbargtk.cpp | |
1285 | src/gtk1/textctrl.cpp | |
1286 | src/gtk1/tglbtn.cpp | |
8ff12d3d MR |
1287 | </set> |
1288 | <set var="GTK1_HDR" hints="files"> | |
773623f2 VZ |
1289 | wx/generic/clrpickerg.h |
1290 | wx/generic/collpaneg.h | |
8ff12d3d MR |
1291 | wx/generic/colrdlgg.h |
1292 | wx/generic/dirdlgg.h | |
1293 | wx/generic/fdrepdlg.h | |
773623f2 VZ |
1294 | wx/generic/filedlgg.h |
1295 | wx/generic/filepickerg.h | |
1296 | wx/generic/fontdlgg.h | |
1297 | wx/generic/fontpickerg.h | |
8ff12d3d MR |
1298 | wx/generic/listctrl.h |
1299 | wx/generic/statusbr.h | |
1300 | wx/generic/tabg.h | |
1301 | wx/gtk1/accel.h | |
1302 | wx/gtk1/bmpbuttn.h | |
1303 | wx/gtk1/button.h | |
1304 | wx/gtk1/checkbox.h | |
1305 | wx/gtk1/checklst.h | |
1306 | wx/gtk1/choice.h | |
1307 | wx/gtk1/combobox.h | |
1308 | wx/gtk1/control.h | |
1309 | wx/gtk1/dialog.h | |
1310 | wx/gtk1/filedlg.h | |
1311 | wx/gtk1/fontdlg.h | |
1312 | wx/gtk1/frame.h | |
1313 | wx/gtk1/gauge.h | |
1314 | wx/gtk1/listbox.h | |
1315 | wx/gtk1/mdi.h | |
1316 | wx/gtk1/menu.h | |
1317 | wx/gtk1/menuitem.h | |
1318 | wx/gtk1/msgdlg.h | |
1319 | wx/gtk1/notebook.h | |
1320 | wx/gtk1/radiobox.h | |
1321 | wx/gtk1/radiobut.h | |
1322 | wx/gtk1/scrolbar.h | |
1323 | wx/gtk1/scrolwin.h | |
1324 | wx/gtk1/slider.h | |
1325 | wx/gtk1/spinbutt.h | |
1326 | wx/gtk1/spinctrl.h | |
1327 | wx/gtk1/statbmp.h | |
1328 | wx/gtk1/statbox.h | |
1329 | wx/gtk1/statline.h | |
1330 | wx/gtk1/stattext.h | |
1331 | wx/gtk1/tbargtk.h | |
1332 | wx/gtk1/textctrl.h | |
1333 | wx/gtk1/tglbtn.h | |
1334 | wx/gtk1/treectrl.h | |
1335 | </set> | |
1336 | ||
1337 | ||
ddf98968 VS |
1338 | <!-- ====================================================================== --> |
1339 | <!-- wxMotif --> | |
1340 | <!-- ====================================================================== --> | |
1341 | ||
22d2b5bf | 1342 | <set var="MOTIF_LOWLEVEL_SRC" hints="files"> |
ddf98968 | 1343 | $(XWIN_LOWLEVEL_SRC) |
ddf98968 | 1344 | src/x11/bitmap.cpp |
5df6736f | 1345 | src/x11/brush.cpp |
61845585 | 1346 | src/x11/palette.cpp |
5df6736f VS |
1347 | src/x11/pen.cpp |
1348 | src/x11/region.cpp | |
ddf98968 VS |
1349 | src/x11/utilsx.cpp |
1350 | </set> | |
22d2b5bf | 1351 | <set var="MOTIF_LOWLEVEL_HDR" hints="files"> |
ddf98968 | 1352 | $(XWIN_LOWLEVEL_HDR) |
e6a14306 MB |
1353 | wx/x11/bitmap.h |
1354 | wx/x11/brush.h | |
61845585 | 1355 | wx/x11/palette.h |
e6a14306 MB |
1356 | wx/x11/pen.h |
1357 | wx/x11/region.h | |
ddf98968 | 1358 | </set> |
22d2b5bf | 1359 | <set var="MOTIF_SRC" hints="files"> |
ddf98968 VS |
1360 | src/motif/accel.cpp |
1361 | src/motif/app.cpp | |
1362 | src/motif/bmpbuttn.cpp | |
1363 | src/motif/bmpmotif.cpp | |
1364 | src/motif/button.cpp | |
1365 | src/motif/checkbox.cpp | |
1366 | src/motif/checklst.cpp | |
1367 | src/motif/choice.cpp | |
1368 | src/motif/clipbrd.cpp | |
1369 | src/motif/colour.cpp | |
1370 | src/motif/combobox.cpp | |
1371 | src/motif/combobox_native.cpp | |
1372 | src/motif/control.cpp | |
1373 | src/motif/cursor.cpp | |
1374 | src/motif/data.cpp | |
1375 | src/motif/dataobj.cpp | |
1376 | src/motif/dc.cpp | |
1377 | src/motif/dcclient.cpp | |
1378 | src/motif/dcmemory.cpp | |
1379 | src/motif/dcscreen.cpp | |
1380 | src/motif/dialog.cpp | |
1381 | src/motif/evtloop.cpp | |
1382 | src/motif/filedlg.cpp | |
1383 | src/motif/font.cpp | |
1384 | src/motif/frame.cpp | |
1385 | src/motif/gauge.cpp | |
83a9be34 | 1386 | src/motif/gsockmot.cpp |
ddf98968 VS |
1387 | src/motif/icon.cpp |
1388 | src/motif/listbox.cpp | |
1389 | src/motif/main.cpp | |
1390 | src/motif/mdi.cpp | |
1391 | src/motif/menu.cpp | |
1392 | src/motif/menuitem.cpp | |
1393 | src/motif/minifram.cpp | |
1394 | src/motif/msgdlg.cpp | |
833a51f6 | 1395 | src/motif/popupwin.cpp |
ddf98968 VS |
1396 | src/motif/radiobox.cpp |
1397 | src/motif/radiobut.cpp | |
1398 | src/motif/scrolbar.cpp | |
1399 | src/motif/settings.cpp | |
1400 | src/motif/slider.cpp | |
1401 | src/motif/spinbutt.cpp | |
1402 | src/motif/statbmp.cpp | |
1403 | src/motif/statbox.cpp | |
1404 | src/motif/stattext.cpp | |
ddf98968 | 1405 | src/motif/textctrl.cpp |
978c6e41 | 1406 | src/motif/textentry.cpp |
ddf98968 | 1407 | src/motif/timer.cpp |
5df6736f | 1408 | src/motif/toolbar.cpp |
ddf98968 VS |
1409 | src/motif/toplevel.cpp |
1410 | src/motif/utils.cpp | |
1411 | src/motif/window.cpp | |
f4a3e0a9 | 1412 | src/motif/xmcombo/xmcombo.c |
ddf98968 | 1413 | <!-- Generic files used by wxMotif: --> |
773623f2 VZ |
1414 | src/generic/clrpickerg.cpp |
1415 | src/generic/collpaneg.cpp | |
5df6736f VS |
1416 | src/generic/colrdlgg.cpp |
1417 | src/generic/dirdlgg.cpp | |
ddf98968 | 1418 | src/generic/fdrepdlg.cpp |
773623f2 | 1419 | src/generic/filepickerg.cpp |
5df6736f | 1420 | src/generic/fontdlgg.cpp |
773623f2 | 1421 | src/generic/fontpickerg.cpp |
5df6736f | 1422 | src/generic/listctrl.cpp |
ddf98968 | 1423 | src/generic/notebook.cpp |
ddf98968 | 1424 | src/generic/prntdlgg.cpp |
5df6736f | 1425 | src/generic/statline.cpp |
ddf98968 | 1426 | src/generic/statusbr.cpp |
5df6736f | 1427 | src/generic/tabg.cpp |
ddf98968 | 1428 | </set> |
22d2b5bf | 1429 | <set var="MOTIF_HDR" hints="files"> |
773623f2 VZ |
1430 | wx/generic/clrpickerg.h |
1431 | wx/generic/collpaneg.h | |
5df6736f | 1432 | wx/generic/colrdlgg.h |
a236aa20 | 1433 | wx/generic/ctrlsub.h |
5df6736f VS |
1434 | wx/generic/dirdlgg.h |
1435 | wx/generic/fdrepdlg.h | |
773623f2 | 1436 | wx/generic/filepickerg.h |
5df6736f | 1437 | wx/generic/fontdlgg.h |
773623f2 | 1438 | wx/generic/fontpickerg.h |
5df6736f VS |
1439 | wx/generic/listctrl.h |
1440 | wx/generic/notebook.h | |
1441 | wx/generic/prntdlgg.h | |
1442 | wx/generic/statline.h | |
1443 | wx/generic/statusbr.h | |
1444 | wx/generic/tabg.h | |
ddf98968 VS |
1445 | wx/motif/accel.h |
1446 | wx/motif/app.h | |
1447 | wx/motif/bmpbuttn.h | |
1448 | wx/motif/bmpmotif.h | |
1449 | wx/motif/button.h | |
1450 | wx/motif/checkbox.h | |
1451 | wx/motif/checklst.h | |
b45f79ec | 1452 | wx/motif/chkconf.h |
ddf98968 VS |
1453 | wx/motif/choice.h |
1454 | wx/motif/clipbrd.h | |
1455 | wx/motif/colour.h | |
1456 | wx/motif/combobox.h | |
1457 | wx/motif/control.h | |
a236aa20 | 1458 | wx/motif/ctrlsub.h |
ddf98968 VS |
1459 | wx/motif/cursor.h |
1460 | wx/motif/dataform.h | |
1461 | wx/motif/dataobj.h | |
d0b02878 | 1462 | wx/motif/dataobj2.h |
ddf98968 VS |
1463 | wx/motif/dc.h |
1464 | wx/motif/dcclient.h | |
1465 | wx/motif/dcmemory.h | |
1466 | wx/motif/dcprint.h | |
1467 | wx/motif/dcscreen.h | |
1468 | wx/motif/dialog.h | |
1469 | wx/motif/dnd.h | |
1470 | wx/motif/filedlg.h | |
1471 | wx/motif/font.h | |
1472 | wx/motif/frame.h | |
1473 | wx/motif/gauge.h | |
ddf98968 VS |
1474 | wx/motif/icon.h |
1475 | wx/motif/listbox.h | |
1476 | wx/motif/mdi.h | |
1477 | wx/motif/menu.h | |
1478 | wx/motif/menuitem.h | |
1479 | wx/motif/minifram.h | |
1480 | wx/motif/msgdlg.h | |
833a51f6 | 1481 | wx/motif/popupwin.h |
ddf98968 VS |
1482 | wx/motif/print.h |
1483 | wx/motif/private.h | |
1484 | wx/motif/radiobox.h | |
1485 | wx/motif/radiobut.h | |
ddf98968 | 1486 | wx/motif/scrolbar.h |
ddf98968 VS |
1487 | wx/motif/slider.h |
1488 | wx/motif/spinbutt.h | |
1489 | wx/motif/statbmp.h | |
1490 | wx/motif/statbox.h | |
1491 | wx/motif/stattext.h | |
1492 | wx/motif/textctrl.h | |
978c6e41 | 1493 | wx/motif/textentry.h |
ddf98968 | 1494 | wx/motif/tglbtn.h |
ddf98968 VS |
1495 | wx/motif/toolbar.h |
1496 | wx/motif/toplevel.h | |
1497 | wx/motif/window.h | |
ddf98968 VS |
1498 | </set> |
1499 | ||
1500 | ||
1501 | <!-- ====================================================================== --> | |
1502 | <!-- wxX11 --> | |
1503 | <!-- ====================================================================== --> | |
1504 | ||
1505 | ||
22d2b5bf | 1506 | <set var="X11_LOWLEVEL_SRC" hints="files"> |
ddf98968 | 1507 | $(XWIN_LOWLEVEL_SRC) |
71451a6d | 1508 | src/generic/icon.cpp |
5df6736f | 1509 | src/generic/timer.cpp |
ddf98968 VS |
1510 | src/x11/app.cpp |
1511 | src/x11/bitmap.cpp | |
1512 | src/x11/brush.cpp | |
1513 | src/x11/clipbrd.cpp | |
1514 | src/x11/colour.cpp | |
1515 | src/x11/cursor.cpp | |
1516 | src/x11/data.cpp | |
1517 | src/x11/dataobj.cpp | |
1518 | src/x11/dc.cpp | |
1519 | src/x11/dcclient.cpp | |
1520 | src/x11/dcmemory.cpp | |
1521 | src/x11/dcscreen.cpp | |
1522 | src/x11/evtloop.cpp | |
1523 | src/x11/font.cpp | |
ddf98968 | 1524 | src/x11/minifram.cpp |
5df6736f | 1525 | src/x11/nanox.c |
ddf98968 VS |
1526 | src/x11/palette.cpp |
1527 | src/x11/pen.cpp | |
1528 | src/x11/popupwin.cpp | |
1529 | src/x11/region.cpp | |
1530 | src/x11/reparent.cpp | |
1531 | src/x11/settings.cpp | |
1532 | src/x11/toplevel.cpp | |
1533 | src/x11/utils.cpp | |
1534 | src/x11/utilsx.cpp | |
1535 | src/x11/window.cpp | |
ddf98968 | 1536 | </set> |
22d2b5bf | 1537 | <set var="X11_LOWLEVEL_HDR" hints="files"> |
ddf98968 | 1538 | $(XWIN_LOWLEVEL_HDR) |
71451a6d | 1539 | wx/generic/icon.h |
ddf98968 VS |
1540 | wx/x11/app.h |
1541 | wx/x11/bitmap.h | |
1542 | wx/x11/brush.h | |
05024233 | 1543 | wx/x11/chkconf.h |
ddf98968 VS |
1544 | wx/x11/clipbrd.h |
1545 | wx/x11/colour.h | |
1546 | wx/x11/cursor.h | |
1547 | wx/x11/dataform.h | |
1548 | wx/x11/dataobj.h | |
1549 | wx/x11/dataobj2.h | |
1550 | wx/x11/dc.h | |
1551 | wx/x11/dcclient.h | |
1552 | wx/x11/dcmemory.h | |
1553 | wx/x11/dcprint.h | |
1554 | wx/x11/dcscreen.h | |
1555 | wx/x11/dnd.h | |
1556 | wx/x11/font.h | |
ddf98968 VS |
1557 | wx/x11/minifram.h |
1558 | wx/x11/palette.h | |
1559 | wx/x11/pen.h | |
7fcf27da | 1560 | wx/x11/popupwin.h |
ddf98968 VS |
1561 | wx/x11/print.h |
1562 | wx/x11/private.h | |
1563 | wx/x11/privx.h | |
1564 | wx/x11/region.h | |
1565 | wx/x11/reparent.h | |
1566 | wx/x11/textctrl.h | |
1567 | wx/x11/toplevel.h | |
1568 | wx/x11/window.h | |
ddf98968 VS |
1569 | </set> |
1570 | ||
1571 | ||
1572 | ||
1573 | <!-- ====================================================================== --> | |
1574 | <!-- wxMSW --> | |
1575 | <!-- ====================================================================== --> | |
1576 | ||
22d2b5bf | 1577 | <set var="MSW_LOWLEVEL_SRC" hints="files"> |
ddf98968 VS |
1578 | src/msw/app.cpp |
1579 | src/msw/bitmap.cpp | |
1580 | src/msw/brush.cpp | |
1581 | src/msw/caret.cpp | |
1582 | src/msw/clipbrd.cpp | |
1583 | src/msw/colour.cpp | |
1584 | src/msw/cursor.cpp | |
1585 | src/msw/data.cpp | |
1586 | src/msw/dc.cpp | |
1587 | src/msw/dcclient.cpp | |
1588 | src/msw/dcmemory.cpp | |
1589 | src/msw/dcprint.cpp | |
1590 | src/msw/dcscreen.cpp | |
1591 | src/msw/dialup.cpp | |
1592 | src/msw/dib.cpp | |
ddf98968 VS |
1593 | src/msw/display.cpp |
1594 | src/msw/enhmeta.cpp | |
ddf98968 VS |
1595 | src/msw/font.cpp |
1596 | src/msw/fontenum.cpp | |
1597 | src/msw/fontutil.cpp | |
1598 | src/msw/gdiimage.cpp | |
1599 | src/msw/gdiobj.cpp | |
fa5f72b3 | 1600 | src/msw/gdiplus.cpp |
f43426c1 | 1601 | src/msw/graphics.cpp |
ddf98968 | 1602 | src/msw/icon.cpp |
9cd7a3f7 | 1603 | src/msw/imaglist.cpp |
ddf98968 | 1604 | src/msw/minifram.cpp |
5df6736f VS |
1605 | src/msw/ole/dataobj.cpp |
1606 | src/msw/ole/dropsrc.cpp | |
1607 | src/msw/ole/droptgt.cpp | |
1608 | src/msw/ole/oleutils.cpp | |
ddf98968 VS |
1609 | src/msw/palette.cpp |
1610 | src/msw/pen.cpp | |
1611 | src/msw/popupwin.cpp | |
e32f4869 JS |
1612 | src/msw/printdlg.cpp |
1613 | src/msw/printwin.cpp | |
ddf98968 | 1614 | src/msw/region.cpp |
2479d149 | 1615 | src/msw/renderer.cpp |
ddf98968 | 1616 | src/msw/settings.cpp |
ddf98968 VS |
1617 | src/msw/tooltip.cpp |
1618 | src/msw/toplevel.cpp | |
9a90985d | 1619 | src/msw/utilsgui.cpp |
1b7031bc | 1620 | src/msw/uxtheme.cpp |
ddf98968 | 1621 | src/msw/window.cpp |
ddf98968 | 1622 | </set> |
22d2b5bf | 1623 | <set var="MSW_LOWLEVEL_HDR" hints="files"> |
23e42d9d | 1624 | wx/msw/popupwin.h |
51fb93f1 | 1625 | wx/msw/uxtheme.h |
68c675a6 JS |
1626 | wx/msw/uxthemep.h |
1627 | wx/msw/htmlhelp.h | |
ddf98968 | 1628 | </set> |
f9c4805a | 1629 | |
ca95ed8e | 1630 | <set var="MSW_DESKTOP_LOWLEVEL_SRC" hints="files"> |
de20cd5f VZ |
1631 | src/msw/helpchm.cpp |
1632 | src/msw/helpwin.cpp | |
89220840 | 1633 | src/msw/ole/automtn.cpp |
37699af5 | 1634 | src/msw/ole/uuid.cpp |
de20cd5f VZ |
1635 | </set> |
1636 | ||
ca95ed8e | 1637 | <set var="MSW_DESKTOP_LOWLEVEL_HDR" hints="files"> |
de20cd5f VZ |
1638 | wx/msw/helpchm.h |
1639 | wx/msw/helpwin.h | |
f9c4805a VS |
1640 | </set> |
1641 | ||
22d2b5bf | 1642 | <set var="MSW_SRC" hints="files"> |
773623f2 VZ |
1643 | src/generic/clrpickerg.cpp |
1644 | src/generic/collpaneg.cpp | |
1645 | src/generic/filepickerg.cpp | |
1646 | src/generic/fontpickerg.cpp | |
cdc0282e | 1647 | src/generic/statusbr.cpp |
94d04b7e | 1648 | src/generic/prntdlgg.cpp |
ddf98968 VS |
1649 | src/msw/accel.cpp |
1650 | src/msw/bmpbuttn.cpp | |
1651 | src/msw/button.cpp | |
1652 | src/msw/checkbox.cpp | |
ddf98968 VS |
1653 | src/msw/choice.cpp |
1654 | src/msw/colordlg.cpp | |
a340b80d | 1655 | src/msw/combo.cpp |
ddf98968 VS |
1656 | src/msw/combobox.cpp |
1657 | src/msw/control.cpp | |
1658 | src/msw/dialog.cpp | |
de20cd5f | 1659 | src/msw/dirdlg.cpp |
ddf98968 | 1660 | src/msw/dragimag.cpp |
ddf98968 | 1661 | src/msw/filedlg.cpp |
ddf98968 VS |
1662 | src/msw/frame.cpp |
1663 | src/msw/gauge95.cpp | |
ddf98968 VS |
1664 | src/msw/iniconf.cpp |
1665 | src/msw/listbox.cpp | |
1666 | src/msw/listctrl.cpp | |
1667 | src/msw/mdi.cpp | |
1668 | src/msw/menu.cpp | |
1669 | src/msw/menuitem.cpp | |
1670 | src/msw/metafile.cpp | |
1671 | src/msw/msgdlg.cpp | |
ddf98968 VS |
1672 | src/msw/nativdlg.cpp |
1673 | src/msw/notebook.cpp | |
5df6736f | 1674 | src/msw/ole/access.cpp |
ddf98968 | 1675 | src/msw/ownerdrw.cpp |
ddf98968 VS |
1676 | src/msw/radiobox.cpp |
1677 | src/msw/radiobut.cpp | |
1678 | src/msw/scrolbar.cpp | |
1679 | src/msw/slider95.cpp | |
1680 | src/msw/spinbutt.cpp | |
1681 | src/msw/spinctrl.cpp | |
1682 | src/msw/statbmp.cpp | |
1683 | src/msw/statbox.cpp | |
1684 | src/msw/statbr95.cpp | |
1685 | src/msw/statline.cpp | |
1686 | src/msw/stattext.cpp | |
1687 | src/msw/tabctrl.cpp | |
1688 | src/msw/tbar95.cpp | |
1689 | src/msw/textctrl.cpp | |
30e62fdc | 1690 | src/msw/textentry.cpp |
ddf98968 VS |
1691 | src/msw/tglbtn.cpp |
1692 | src/msw/treectrl.cpp | |
ddf98968 | 1693 | </set> |
22d2b5bf | 1694 | <set var="MSW_HDR" hints="files"> |
000cdd5e | 1695 | wx/generic/clrpickerg.h |
773623f2 | 1696 | wx/generic/collpaneg.h |
000cdd5e | 1697 | wx/generic/filepickerg.h |
773623f2 | 1698 | wx/generic/fontpickerg.h |
ddf98968 VS |
1699 | wx/msw/accel.h |
1700 | wx/msw/app.h | |
1701 | wx/msw/bitmap.h | |
1702 | wx/msw/bmpbuttn.h | |
1703 | wx/msw/brush.h | |
1704 | wx/msw/button.h | |
1705 | wx/msw/caret.h | |
1706 | wx/msw/checkbox.h | |
ddf98968 VS |
1707 | wx/msw/choice.h |
1708 | wx/msw/clipbrd.h | |
1709 | wx/msw/colordlg.h | |
1710 | wx/msw/colour.h | |
a340b80d | 1711 | wx/msw/combo.h |
ddf98968 VS |
1712 | wx/msw/combobox.h |
1713 | wx/msw/control.h | |
a236aa20 | 1714 | wx/msw/ctrlsub.h |
ddf98968 VS |
1715 | wx/msw/cursor.h |
1716 | wx/msw/dc.h | |
1717 | wx/msw/dcclient.h | |
1718 | wx/msw/dcmemory.h | |
1719 | wx/msw/dcprint.h | |
1720 | wx/msw/dcscreen.h | |
1721 | wx/msw/dialog.h | |
1722 | wx/msw/dib.h | |
1723 | wx/msw/dirdlg.h | |
1724 | wx/msw/dragimag.h | |
1725 | wx/msw/enhmeta.h | |
de20cd5f | 1726 | wx/msw/evtloop.h |
ddf98968 VS |
1727 | wx/msw/filedlg.h |
1728 | wx/msw/font.h | |
ddf98968 VS |
1729 | wx/msw/frame.h |
1730 | wx/msw/gauge95.h | |
1731 | wx/msw/gdiimage.h | |
ddf98968 VS |
1732 | wx/msw/icon.h |
1733 | wx/msw/imaglist.h | |
1734 | wx/msw/iniconf.h | |
ddf98968 VS |
1735 | wx/msw/listbox.h |
1736 | wx/msw/listctrl.h | |
1737 | wx/msw/mdi.h | |
1738 | wx/msw/menu.h | |
1739 | wx/msw/menuitem.h | |
1740 | wx/msw/metafile.h | |
1741 | wx/msw/minifram.h | |
1742 | wx/msw/missing.h | |
1743 | wx/msw/msgdlg.h | |
ddf98968 VS |
1744 | wx/msw/msvcrt.h |
1745 | wx/msw/notebook.h | |
5df6736f | 1746 | wx/msw/ole/access.h |
5df6736f VS |
1747 | wx/msw/ole/dataform.h |
1748 | wx/msw/ole/dataobj.h | |
1749 | wx/msw/ole/dataobj2.h | |
1750 | wx/msw/ole/dropsrc.h | |
1751 | wx/msw/ole/droptgt.h | |
1752 | wx/msw/ole/oleutils.h | |
ddf98968 VS |
1753 | wx/msw/palette.h |
1754 | wx/msw/pen.h | |
1755 | wx/msw/printdlg.h | |
1756 | wx/msw/printwin.h | |
ddf98968 VS |
1757 | wx/msw/radiobox.h |
1758 | wx/msw/radiobut.h | |
ddf98968 | 1759 | wx/msw/region.h |
c8d58531 | 1760 | wx/msw/rcdefs.h |
ddf98968 VS |
1761 | wx/msw/scrolbar.h |
1762 | wx/msw/setup0.h | |
1763 | wx/msw/slider95.h | |
ddf98968 | 1764 | wx/msw/spinbutt.h |
5df6736f | 1765 | wx/msw/spinctrl.h |
ddf98968 VS |
1766 | wx/msw/statbmp.h |
1767 | wx/msw/statbox.h | |
1768 | wx/msw/statbr95.h | |
1769 | wx/msw/statline.h | |
1770 | wx/msw/stattext.h | |
1771 | wx/msw/tabctrl.h | |
ddf98968 | 1772 | wx/msw/tbar95.h |
ddf98968 | 1773 | wx/msw/textctrl.h |
30e62fdc | 1774 | wx/msw/textentry.h |
ddf98968 | 1775 | wx/msw/tglbtn.h |
ddf98968 VS |
1776 | wx/msw/tooltip.h |
1777 | wx/msw/toplevel.h | |
1778 | wx/msw/treectrl.h | |
ddf98968 | 1779 | wx/msw/window.h |
8a7b0583 | 1780 | |
5df6736f | 1781 | <!-- Resources must be installed together with headers: --> |
5df6736f | 1782 | wx/msw/wx.manifest |
8bda759f MW |
1783 | wx/msw/amd64.manifest |
1784 | wx/msw/ia64.manifest | |
5df6736f VS |
1785 | wx/msw/wx.rc |
1786 | <!-- bitmaps --> | |
8a7b0583 VS |
1787 | wx/msw/colours.bmp |
1788 | wx/msw/csquery.bmp | |
5df6736f | 1789 | <!-- cursors --> |
8a7b0583 VS |
1790 | wx/msw/blank.cur |
1791 | wx/msw/bullseye.cur | |
8055b744 | 1792 | wx/msw/cross.cur |
8a7b0583 | 1793 | wx/msw/hand.cur |
8a7b0583 | 1794 | wx/msw/magnif1.cur |
8a7b0583 VS |
1795 | wx/msw/pbrush.cur |
1796 | wx/msw/pencil.cur | |
1797 | wx/msw/pntleft.cur | |
1798 | wx/msw/pntright.cur | |
8a7b0583 VS |
1799 | wx/msw/rightarr.cur |
1800 | wx/msw/roller.cur | |
5df6736f | 1801 | <!-- icons --> |
8a7b0583 VS |
1802 | wx/msw/cdrom.ico |
1803 | wx/msw/child.ico | |
1804 | wx/msw/computer.ico | |
1805 | wx/msw/drive.ico | |
8a7b0583 VS |
1806 | wx/msw/file1.ico |
1807 | wx/msw/floppy.ico | |
1808 | wx/msw/folder1.ico | |
1809 | wx/msw/folder2.ico | |
8a7b0583 VS |
1810 | wx/msw/mdi.ico |
1811 | wx/msw/question.ico | |
1812 | wx/msw/removble.ico | |
1813 | wx/msw/std.ico | |
ddf98968 VS |
1814 | </set> |
1815 | ||
ba9e5bc4 | 1816 | <!-- Files used only by desktop MSW port, but *not* WindowsCE one: --> |
ca95ed8e | 1817 | <set var="MSW_DESKTOP_SRC" hints="files"> |
31618973 | 1818 | src/msw/checklst.cpp |
ba9e5bc4 VS |
1819 | src/msw/fdrepdlg.cpp |
1820 | src/msw/fontdlg.cpp | |
ba9e5bc4 | 1821 | </set> |
ca95ed8e | 1822 | <set var="MSW_DESKTOP_HDR" hints="files"> |
31618973 | 1823 | wx/msw/checklst.h |
ba9e5bc4 VS |
1824 | wx/msw/fdrepdlg.h |
1825 | wx/msw/fontdlg.h | |
89220840 | 1826 | wx/msw/ole/automtn.h |
ba9e5bc4 VS |
1827 | wx/msw/ole/uuid.h |
1828 | </set> | |
1829 | ||
1830 | <!-- Files used by WindowsCE port but not by desktop MSW port: --> | |
af594eca | 1831 | <set var="WINCE_SRC" hints="files"> |
f9c4805a | 1832 | src/generic/dirdlgg.cpp |
ba9e5bc4 | 1833 | src/generic/fdrepdlg.cpp |
818f3946 | 1834 | src/generic/filedlgg.cpp |
ba9e5bc4 | 1835 | src/generic/fontdlgg.cpp |
31618973 | 1836 | src/msw/wince/checklst.cpp |
302e251b | 1837 | src/msw/wince/choicece.cpp |
e3bf2e8c | 1838 | src/msw/wince/crt.cpp |
af594eca | 1839 | src/msw/wince/filedlgwce.cpp |
a4e391f8 | 1840 | src/msw/wince/filefnwce.cpp |
af594eca | 1841 | src/msw/wince/helpwce.cpp |
fb8a56b7 | 1842 | src/msw/wince/menuce.cpp |
1550d5f8 | 1843 | src/msw/wince/tbarwce.cpp |
302e251b | 1844 | src/msw/wince/textctrlce.cpp |
af594eca VS |
1845 | </set> |
1846 | <set var="WINCE_HDR" hints="files"> | |
ba9e5bc4 | 1847 | wx/generic/fdrepdlg.h |
818f3946 | 1848 | wx/generic/filedlgg.h |
ba9e5bc4 | 1849 | wx/generic/fontdlgg.h |
31618973 | 1850 | wx/msw/wince/checklst.h |
302e251b | 1851 | wx/msw/wince/choicece.h |
af594eca | 1852 | wx/msw/wince/helpwce.h |
eddb3250 | 1853 | wx/msw/wince/libraries.h |
af594eca VS |
1854 | wx/msw/wince/missing.h |
1855 | wx/msw/wince/tbarwce.h | |
302e251b | 1856 | wx/msw/wince/textctrlce.h |
fb8a56b7 | 1857 | wx/msw/wince/resources.h |
af594eca VS |
1858 | </set> |
1859 | ||
ddf98968 VS |
1860 | |
1861 | <!-- ====================================================================== --> | |
1862 | <!-- wxMGL --> | |
1863 | <!-- ====================================================================== --> | |
1864 | ||
22d2b5bf | 1865 | <set var="MGL_LOWLEVEL_SRC" hints="files"> |
d7ae4a62 | 1866 | src/common/fontmgrcmn.cpp |
5df6736f | 1867 | src/generic/caret.cpp |
3da12c22 | 1868 | src/generic/colour.cpp |
71451a6d | 1869 | src/generic/icon.cpp |
d4d680e6 | 1870 | src/generic/imaglist.cpp |
87f83ac8 | 1871 | src/generic/mask.cpp |
5df6736f | 1872 | src/generic/timer.cpp |
ddf98968 VS |
1873 | src/mgl/app.cpp |
1874 | src/mgl/bitmap.cpp | |
5df6736f | 1875 | src/mgl/brush.cpp |
ddf98968 VS |
1876 | src/mgl/clipbrd.cpp |
1877 | src/mgl/cursor.cpp | |
5df6736f VS |
1878 | src/mgl/data.cpp |
1879 | src/mgl/dc.cpp | |
ddf98968 VS |
1880 | src/mgl/dcclient.cpp |
1881 | src/mgl/dcmemory.cpp | |
1882 | src/mgl/dcscreen.cpp | |
5df6736f VS |
1883 | src/mgl/dirmgl.cpp |
1884 | src/mgl/evtloop.cpp | |
1885 | src/mgl/font.cpp | |
1886 | src/mgl/fontenum.cpp | |
d7ae4a62 | 1887 | src/mgl/fontmgr.cpp |
5df6736f | 1888 | src/mgl/fontutil.cpp |
5df6736f VS |
1889 | src/mgl/palette.cpp |
1890 | src/mgl/pen.cpp | |
1891 | src/mgl/region.cpp | |
ddf98968 | 1892 | src/mgl/settings.cpp |
5df6736f | 1893 | src/mgl/toplevel.cpp |
ddf98968 | 1894 | src/mgl/utils.cpp |
5df6736f | 1895 | src/mgl/window.cpp |
ddf98968 | 1896 | </set> |
22d2b5bf | 1897 | <set var="MGL_LOWLEVEL_HDR" hints="files"> |
5df6736f | 1898 | wx/generic/caret.h |
3da12c22 | 1899 | wx/generic/colour.h |
71451a6d | 1900 | wx/generic/icon.h |
d4d680e6 | 1901 | wx/generic/imaglist.h |
87f83ac8 | 1902 | wx/generic/mask.h |
ddf98968 VS |
1903 | wx/mgl/app.h |
1904 | wx/mgl/bitmap.h | |
1905 | wx/mgl/brush.h | |
b8af111f | 1906 | wx/mgl/chkconf.h |
ddf98968 | 1907 | wx/mgl/clipbrd.h |
ddf98968 VS |
1908 | wx/mgl/cursor.h |
1909 | wx/mgl/dc.h | |
1910 | wx/mgl/dcclient.h | |
1911 | wx/mgl/dcmemory.h | |
1912 | wx/mgl/dcscreen.h | |
1913 | wx/mgl/font.h | |
ddf98968 VS |
1914 | wx/mgl/palette.h |
1915 | wx/mgl/pen.h | |
1916 | wx/mgl/popupwin.h | |
1917 | wx/mgl/private.h | |
1918 | wx/mgl/region.h | |
1919 | wx/mgl/toplevel.h | |
1920 | wx/mgl/window.h | |
ddf98968 VS |
1921 | </set> |
1922 | ||
1923 | ||
b3c86150 VS |
1924 | <!-- ====================================================================== --> |
1925 | <!-- wxDFB --> | |
1926 | <!-- ====================================================================== --> | |
1927 | ||
1928 | <set var="DFB_LOWLEVEL_SRC" hints="files"> | |
d7ae4a62 | 1929 | src/common/fontmgrcmn.cpp |
4353a8df VZ |
1930 | src/generic/caret.cpp |
1931 | src/generic/colour.cpp | |
1932 | src/generic/icon.cpp | |
1933 | src/generic/imaglist.cpp | |
87f83ac8 | 1934 | src/generic/mask.cpp |
4353a8df | 1935 | src/generic/timer.cpp |
b3c86150 VS |
1936 | src/dfb/app.cpp |
1937 | src/dfb/bitmap.cpp | |
1938 | src/dfb/brush.cpp | |
1939 | src/dfb/cursor.cpp | |
1940 | <!-- src/dfb/data.cpp --> | |
1941 | src/dfb/dc.cpp | |
1942 | src/dfb/dcclient.cpp | |
1943 | src/dfb/dcmemory.cpp | |
1944 | src/dfb/dcscreen.cpp | |
1945 | src/dfb/evtloop.cpp | |
1946 | src/dfb/font.cpp | |
1947 | src/dfb/fontenum.cpp | |
d7ae4a62 | 1948 | src/dfb/fontmgr.cpp |
42b0d8b9 | 1949 | src/dfb/nonownedwnd.cpp |
30c841c8 | 1950 | src/dfb/overlay.cpp |
b3c86150 VS |
1951 | src/dfb/pen.cpp |
1952 | src/dfb/region.cpp | |
1953 | src/dfb/settings.cpp | |
1954 | src/dfb/toplevel.cpp | |
1955 | src/dfb/utils.cpp | |
1956 | src/dfb/window.cpp | |
52c8d32a | 1957 | src/dfb/wrapdfb.cpp |
b3c86150 VS |
1958 | </set> |
1959 | <set var="DFB_LOWLEVEL_HDR" hints="files"> | |
4353a8df VZ |
1960 | wx/generic/caret.h |
1961 | wx/generic/colour.h | |
1962 | wx/generic/icon.h | |
1963 | wx/generic/imaglist.h | |
87f83ac8 | 1964 | wx/generic/mask.h |
b3c86150 VS |
1965 | wx/dfb/app.h |
1966 | wx/dfb/bitmap.h | |
1967 | wx/dfb/brush.h | |
1968 | wx/dfb/chkconf.h | |
1969 | wx/dfb/cursor.h | |
1970 | wx/dfb/dc.h | |
1971 | wx/dfb/dcclient.h | |
1972 | wx/dfb/dcmemory.h | |
1973 | wx/dfb/dcscreen.h | |
52c8d32a | 1974 | wx/dfb/dfbptr.h |
b3c86150 VS |
1975 | wx/dfb/evtloop.h |
1976 | wx/dfb/font.h | |
42b0d8b9 | 1977 | wx/dfb/nonownedwnd.h |
b3c86150 | 1978 | wx/dfb/pen.h |
42b0d8b9 | 1979 | wx/dfb/popupwin.h |
b3c86150 VS |
1980 | wx/dfb/private.h |
1981 | wx/dfb/region.h | |
1982 | wx/dfb/toplevel.h | |
1983 | wx/dfb/window.h | |
52c8d32a | 1984 | wx/dfb/wrapdfb.h |
b3c86150 VS |
1985 | </set> |
1986 | ||
1987 | ||
ddf98968 VS |
1988 | <!-- ====================================================================== --> |
1989 | <!-- wxOS/2 --> | |
1990 | <!-- ====================================================================== --> | |
1991 | ||
22d2b5bf | 1992 | <set var="OS2_LOWLEVEL_SRC" hints="files"> |
d4d680e6 | 1993 | <!-- wxUniv builds not supported under OS/2 --> |
ddf98968 | 1994 | </set> |
22d2b5bf | 1995 | <set var="OS2_LOWLEVEL_HDR" hints="files"> |
ddf98968 | 1996 | </set> |
22d2b5bf | 1997 | <set var="OS2_SRC" hints="files"> |
a318e447 | 1998 | <!-- Generic implementations used by wxOS2: --> |
5df6736f | 1999 | src/generic/caret.cpp |
773623f2 VZ |
2000 | src/generic/clrpickerg.cpp |
2001 | src/generic/collpaneg.cpp | |
a318e447 SN |
2002 | src/generic/colrdlgg.cpp |
2003 | src/generic/dirdlgg.cpp | |
2004 | src/generic/fdrepdlg.cpp | |
773623f2 VZ |
2005 | src/generic/filepickerg.cpp |
2006 | src/generic/fontpickerg.cpp | |
a318e447 | 2007 | src/generic/imaglist.cpp |
dd133a20 | 2008 | src/generic/listctrl.cpp |
f4a917a7 | 2009 | src/generic/mdig.cpp |
a318e447 SN |
2010 | src/generic/prntdlgg.cpp |
2011 | src/generic/statusbr.cpp | |
2012 | <!-- OS/2 specific files: --> | |
ddf98968 VS |
2013 | src/os2/accel.cpp |
2014 | src/os2/app.cpp | |
2015 | src/os2/bitmap.cpp | |
2016 | src/os2/bmpbuttn.cpp | |
2017 | src/os2/brush.cpp | |
2018 | src/os2/button.cpp | |
2019 | src/os2/checkbox.cpp | |
2020 | src/os2/checklst.cpp | |
2021 | src/os2/choice.cpp | |
2022 | src/os2/clipbrd.cpp | |
2023 | src/os2/colour.cpp | |
2024 | src/os2/combobox.cpp | |
2025 | src/os2/control.cpp | |
2026 | src/os2/cursor.cpp | |
2027 | src/os2/data.cpp | |
2028 | src/os2/dataobj.cpp | |
2029 | src/os2/dc.cpp | |
2030 | src/os2/dcclient.cpp | |
2031 | src/os2/dcmemory.cpp | |
2032 | src/os2/dcprint.cpp | |
2033 | src/os2/dcscreen.cpp | |
2034 | src/os2/dialog.cpp | |
2035 | src/os2/dnd.cpp | |
d7a8eaca | 2036 | src/os2/evtloop.cpp |
ddf98968 VS |
2037 | src/os2/filedlg.cpp |
2038 | src/os2/font.cpp | |
2039 | src/os2/fontdlg.cpp | |
2040 | src/os2/fontenum.cpp | |
2041 | src/os2/fontutil.cpp | |
2042 | src/os2/frame.cpp | |
2043 | src/os2/gauge.cpp | |
2044 | src/os2/gdiimage.cpp | |
0f45d57f | 2045 | src/os2/gsockpm.cpp |
ddf98968 VS |
2046 | src/os2/helpwin.cpp |
2047 | src/os2/icon.cpp | |
2048 | src/os2/iniconf.cpp | |
ddf98968 VS |
2049 | src/os2/listbox.cpp |
2050 | src/os2/main.cpp | |
2051 | src/os2/menu.cpp | |
2052 | src/os2/menuitem.cpp | |
2053 | src/os2/metafile.cpp | |
ddf98968 VS |
2054 | src/os2/msgdlg.cpp |
2055 | src/os2/nativdlg.cpp | |
2056 | src/os2/notebook.cpp | |
2057 | src/os2/ownerdrw.cpp | |
2058 | src/os2/palette.cpp | |
2059 | src/os2/pen.cpp | |
1dba7b4c | 2060 | src/os2/popupwin.cpp |
ddf98968 VS |
2061 | src/os2/print.cpp |
2062 | src/os2/radiobox.cpp | |
2063 | src/os2/radiobut.cpp | |
2064 | src/os2/region.cpp | |
2065 | src/os2/scrolbar.cpp | |
2066 | src/os2/settings.cpp | |
2067 | src/os2/slider.cpp | |
2068 | src/os2/spinbutt.cpp | |
2069 | src/os2/spinctrl.cpp | |
2070 | src/os2/statbmp.cpp | |
2071 | src/os2/statbox.cpp | |
2072 | src/os2/statline.cpp | |
2073 | src/os2/stattext.cpp | |
2074 | src/os2/tabctrl.cpp | |
2075 | src/os2/textctrl.cpp | |
9a3a5e5e | 2076 | src/os2/textentry.cpp |
fbe2ca43 | 2077 | src/os2/tglbtn.cpp |
5df6736f | 2078 | src/os2/timer.cpp |
ddf98968 VS |
2079 | src/os2/toolbar.cpp |
2080 | src/os2/tooltip.cpp | |
2081 | src/os2/toplevel.cpp | |
bd3b171d | 2082 | src/os2/utilsgui.cpp |
ddf98968 | 2083 | src/os2/window.cpp |
ddf98968 | 2084 | </set> |
22d2b5bf | 2085 | <set var="OS2_HDR" hints="files"> |
5df6736f | 2086 | wx/generic/caret.h |
773623f2 VZ |
2087 | wx/generic/clrpickerg.h |
2088 | wx/generic/collpaneg.h | |
a318e447 SN |
2089 | wx/generic/colrdlgg.h |
2090 | wx/generic/dirdlgg.h | |
2091 | wx/generic/fdrepdlg.h | |
dd133a20 | 2092 | wx/generic/listctrl.h |
f4a917a7 | 2093 | wx/generic/mdig.h |
a318e447 | 2094 | wx/generic/statusbr.h |
ddf98968 | 2095 | wx/os2/accel.h |
ddf98968 | 2096 | wx/os2/app.h |
ddf98968 | 2097 | wx/os2/bitmap.h |
5df6736f VS |
2098 | wx/os2/bmpbuttn.h |
2099 | wx/os2/brush.h | |
2100 | wx/os2/button.h | |
2101 | wx/os2/checkbox.h | |
2102 | wx/os2/checklst.h | |
2103 | wx/os2/choice.h | |
2104 | wx/os2/clipbrd.h | |
2105 | wx/os2/colour.h | |
2106 | wx/os2/combobox.h | |
2107 | wx/os2/control.h | |
2108 | wx/os2/cursor.h | |
2109 | wx/os2/dataform.h | |
2110 | wx/os2/dataobj.h | |
2111 | wx/os2/dataobj2.h | |
ddf98968 | 2112 | wx/os2/dc.h |
ddf98968 | 2113 | wx/os2/dcclient.h |
ddf98968 | 2114 | wx/os2/dcmemory.h |
ddf98968 | 2115 | wx/os2/dcprint.h |
ddf98968 | 2116 | wx/os2/dcscreen.h |
ddf98968 | 2117 | wx/os2/dialog.h |
ddf98968 | 2118 | wx/os2/dnd.h |
ddf98968 | 2119 | wx/os2/filedlg.h |
ddf98968 | 2120 | wx/os2/font.h |
ddf98968 | 2121 | wx/os2/fontdlg.h |
ddf98968 | 2122 | wx/os2/frame.h |
ddf98968 | 2123 | wx/os2/gauge.h |
ddf98968 | 2124 | wx/os2/gdiimage.h |
5df6736f VS |
2125 | wx/os2/helpwin.h |
2126 | wx/os2/icon.h | |
2127 | wx/os2/iniconf.h | |
5df6736f VS |
2128 | wx/os2/listbox.h |
2129 | wx/os2/menu.h | |
2130 | wx/os2/menuitem.h | |
2131 | wx/os2/metafile.h | |
2132 | wx/os2/minifram.h | |
2133 | wx/os2/msgdlg.h | |
2134 | wx/os2/notebook.h | |
2135 | wx/os2/palette.h | |
ddf98968 | 2136 | wx/os2/pen.h |
5df6736f VS |
2137 | wx/os2/pnghand.h |
2138 | wx/os2/pngread.h | |
2139 | wx/os2/print.h | |
5df6736f VS |
2140 | wx/os2/radiobox.h |
2141 | wx/os2/radiobut.h | |
2142 | wx/os2/region.h | |
2143 | wx/os2/scrolbar.h | |
2144 | wx/os2/settings.h | |
2145 | wx/os2/setup0.h | |
2146 | wx/os2/slider.h | |
2147 | wx/os2/spinbutt.h | |
ddf98968 VS |
2148 | wx/os2/spinctrl.h |
2149 | wx/os2/statbmp.h | |
ddf98968 | 2150 | wx/os2/statbox.h |
5df6736f VS |
2151 | wx/os2/statline.h |
2152 | wx/os2/stattext.h | |
2153 | wx/os2/tabctrl.h | |
2154 | wx/os2/textctrl.h | |
9a3a5e5e | 2155 | wx/os2/textentry.h |
fbe2ca43 | 2156 | wx/os2/tglbtn.h |
5df6736f VS |
2157 | wx/os2/toolbar.h |
2158 | wx/os2/tooltip.h | |
ddf98968 | 2159 | wx/os2/toplevel.h |
5df6736f | 2160 | wx/os2/window.h |
ddf98968 VS |
2161 | </set> |
2162 | ||
2163 | ||
2164 | ||
2165 | <!-- ====================================================================== --> | |
2166 | <!-- wxMac --> | |
2167 | <!-- ====================================================================== --> | |
2168 | ||
fc480dc1 DE |
2169 | <set var="MAC_OSX_LOWLEVEL_SRC" hints="files"> |
2170 | <!-- Shared wxMac and wxCocoa files --> | |
44d64ab2 | 2171 | src/mac/corefoundation/hid.cpp |
fc480dc1 DE |
2172 | src/mac/corefoundation/utilsexc_cf.cpp |
2173 | </set> | |
2174 | ||
4cb1d3da RN |
2175 | <set var="MAC_OSX_LOWLEVEL_HDR" hints="files"> |
2176 | </set> | |
2177 | ||
22d2b5bf | 2178 | <set var="MAC_LOWLEVEL_SRC" hints="files"> |
fc480dc1 | 2179 | <if cond="PLATFORM_MACOSX=='1'">$(MAC_OSX_LOWLEVEL_SRC)</if> |
ddf98968 | 2180 | </set> |
22d2b5bf | 2181 | <set var="MAC_LOWLEVEL_HDR" hints="files"> |
4cb1d3da | 2182 | <if cond="PLATFORM_MACOSX=='1'">$(MAC_OSX_LOWLEVEL_HDR)</if> |
ddf98968 | 2183 | </set> |
fc480dc1 | 2184 | |
0334f97f DE |
2185 | <set var="MAC_OSX_SRC" hints="files"> |
2186 | <if cond="PLATFORM_MACOSX=='1'"> | |
0334f97f DE |
2187 | <!-- wxWebKit files --> |
2188 | src/html/htmlctrl/webkit/webkit.mm | |
356c775f | 2189 | <!-- Native color/font dialogs --> |
4e69ff22 RN |
2190 | src/mac/carbon/fontdlgosx.mm |
2191 | src/mac/carbon/colordlgosx.mm | |
6257c726 SC |
2192 | <!-- cocoa bridge --> |
2193 | src/mac/carbon/utilscocoa.mm | |
0334f97f DE |
2194 | </if> |
2195 | </set> | |
2196 | ||
22d2b5bf | 2197 | <set var="MAC_SRC" hints="files"> |
56bb4a5e SC |
2198 | src/mac/carbon/accel.cpp |
2199 | src/mac/carbon/aga.cpp | |
5ed2e138 | 2200 | src/mac/carbon/app.cpp |
52734360 | 2201 | src/mac/carbon/artmac.cpp |
56bb4a5e SC |
2202 | src/mac/carbon/bitmap.cpp |
2203 | src/mac/carbon/bmpbuttn.cpp | |
2204 | src/mac/carbon/brush.cpp | |
2205 | src/mac/carbon/button.cpp | |
2206 | src/mac/carbon/checkbox.cpp | |
2207 | src/mac/carbon/checklst.cpp | |
2208 | src/mac/carbon/choice.cpp | |
2209 | src/mac/carbon/clipbrd.cpp | |
2210 | src/mac/carbon/colordlg.cpp | |
2211 | src/mac/carbon/colour.cpp | |
2212 | src/mac/carbon/combobox.cpp | |
2213 | src/mac/carbon/control.cpp | |
2214 | src/mac/carbon/cursor.cpp | |
2215 | src/mac/carbon/data.cpp | |
2216 | src/mac/carbon/dataobj.cpp | |
2217 | src/mac/carbon/dc.cpp | |
5ecd3929 | 2218 | src/mac/carbon/dccg.cpp |
56bb4a5e SC |
2219 | src/mac/carbon/dcclient.cpp |
2220 | src/mac/carbon/dcmemory.cpp | |
2221 | src/mac/carbon/dcprint.cpp | |
2222 | src/mac/carbon/dcscreen.cpp | |
2223 | src/mac/carbon/dialog.cpp | |
2224 | src/mac/carbon/dirdlg.cpp | |
2225 | src/mac/carbon/display.cpp | |
2226 | src/mac/carbon/dnd.cpp | |
4d90072c | 2227 | src/mac/carbon/evtloop.cpp |
56bb4a5e SC |
2228 | src/mac/carbon/filedlg.cpp |
2229 | src/mac/carbon/font.cpp | |
dcb68102 | 2230 | src/mac/carbon/fontdlg.cpp |
56bb4a5e SC |
2231 | src/mac/carbon/fontenum.cpp |
2232 | src/mac/carbon/fontutil.cpp | |
2233 | src/mac/carbon/frame.cpp | |
2234 | src/mac/carbon/gauge.cpp | |
2235 | src/mac/carbon/gdiobj.cpp | |
f43426c1 | 2236 | src/mac/carbon/graphics.cpp |
56bb4a5e | 2237 | src/mac/carbon/icon.cpp |
6ce43ac9 | 2238 | src/mac/carbon/imaglist.cpp |
56bb4a5e | 2239 | src/mac/carbon/listbox.cpp |
e2bc1d69 | 2240 | src/mac/carbon/listctrl_mac.cpp |
56bb4a5e SC |
2241 | src/mac/carbon/mdi.cpp |
2242 | src/mac/carbon/menu.cpp | |
2243 | src/mac/carbon/menuitem.cpp | |
2244 | src/mac/carbon/metafile.cpp | |
2245 | src/mac/carbon/minifram.cpp | |
2246 | src/mac/carbon/msgdlg.cpp | |
2247 | src/mac/carbon/notebmac.cpp | |
30c841c8 | 2248 | src/mac/carbon/overlay.cpp |
56bb4a5e SC |
2249 | src/mac/carbon/palette.cpp |
2250 | src/mac/carbon/pen.cpp | |
7cd8fc64 | 2251 | src/mac/carbon/popupwin.cpp |
56bb4a5e SC |
2252 | src/mac/carbon/printdlg.cpp |
2253 | src/mac/carbon/printmac.cpp | |
2254 | src/mac/carbon/radiobox.cpp | |
2255 | src/mac/carbon/radiobut.cpp | |
2256 | src/mac/carbon/region.cpp | |
2257 | src/mac/carbon/renderer.cpp | |
2258 | src/mac/carbon/scrolbar.cpp | |
2259 | src/mac/carbon/settings.cpp | |
2260 | src/mac/carbon/slider.cpp | |
2261 | src/mac/carbon/spinbutt.cpp | |
571d14b2 | 2262 | src/mac/carbon/spinctrl.cpp |
3f7f284d | 2263 | src/mac/carbon/srchctrl.cpp |
56bb4a5e SC |
2264 | src/mac/carbon/statbmp.cpp |
2265 | src/mac/carbon/statbox.cpp | |
2266 | src/mac/carbon/statbrma.cpp | |
2267 | src/mac/carbon/statlmac.cpp | |
2268 | src/mac/carbon/stattext.cpp | |
2269 | src/mac/carbon/tabctrl.cpp | |
2270 | src/mac/carbon/textctrl.cpp | |
2271 | src/mac/carbon/timer.cpp | |
2272 | src/mac/carbon/tglbtn.cpp | |
2273 | src/mac/carbon/toolbar.cpp | |
2274 | src/mac/carbon/tooltip.cpp | |
2275 | src/mac/carbon/toplevel.cpp | |
2276 | src/mac/carbon/window.cpp | |
ddf98968 | 2277 | <!-- Generic implementations used by wxMac: --> |
5df6736f | 2278 | src/generic/caret.cpp |
773623f2 VZ |
2279 | src/generic/clrpickerg.cpp |
2280 | src/generic/collpaneg.cpp | |
5df6736f | 2281 | src/generic/fdrepdlg.cpp |
773623f2 | 2282 | src/generic/filepickerg.cpp |
5df6736f | 2283 | src/generic/fontdlgg.cpp |
773623f2 | 2284 | src/generic/fontpickerg.cpp |
ddf98968 | 2285 | src/generic/listctrl.cpp |
21041c70 | 2286 | src/generic/prntdlgg.cpp |
5df6736f | 2287 | src/generic/statusbr.cpp |
ddf98968 | 2288 | src/generic/tabg.cpp |
ddf98968 | 2289 | </set> |
5d553c56 | 2290 | |
23ffcdc4 DE |
2291 | <!-- Header files like wx/mac/foo.h which include wx/mac/carbon/foo.h --> |
2292 | <set var="MAC_CMN_HDR" hints="files"> | |
2293 | wx/mac/accel.h | |
2294 | wx/mac/aga.h | |
2295 | wx/mac/app.h | |
2296 | wx/mac/bitmap.h | |
2297 | wx/mac/bmpbuttn.h | |
2298 | wx/mac/brush.h | |
2299 | wx/mac/button.h | |
2300 | wx/mac/checkbox.h | |
2301 | wx/mac/checklst.h | |
2302 | wx/mac/chkconf.h | |
2303 | wx/mac/choice.h | |
2304 | wx/mac/clipbrd.h | |
2305 | wx/mac/colordlg.h | |
2306 | wx/mac/colour.h | |
2307 | wx/mac/combobox.h | |
2308 | wx/mac/control.h | |
2309 | wx/mac/cursor.h | |
2310 | wx/mac/dataform.h | |
2311 | wx/mac/dataobj.h | |
2312 | wx/mac/dataobj2.h | |
2313 | wx/mac/dc.h | |
2314 | wx/mac/dcclient.h | |
2315 | wx/mac/dcmemory.h | |
2316 | wx/mac/dcprint.h | |
2317 | wx/mac/dcscreen.h | |
2318 | wx/mac/dialog.h | |
2319 | wx/mac/dirdlg.h | |
23ffcdc4 | 2320 | wx/mac/dnd.h |
4d90072c | 2321 | wx/mac/evtloop.h |
23ffcdc4 DE |
2322 | wx/mac/filedlg.h |
2323 | wx/mac/font.h | |
2324 | wx/mac/fontdlg.h | |
2325 | wx/mac/frame.h | |
2326 | wx/mac/gauge.h | |
23ffcdc4 DE |
2327 | wx/mac/gsockmac.h |
2328 | wx/mac/helpxxxx.h | |
2329 | wx/mac/icon.h | |
2330 | wx/mac/imaglist.h | |
2331 | wx/mac/listbox.h | |
2332 | wx/mac/listctrl.h | |
2333 | wx/mac/macnotfy.h | |
2334 | wx/mac/macsock.h | |
2335 | wx/mac/mdi.h | |
2336 | wx/mac/menu.h | |
2337 | wx/mac/menuitem.h | |
2338 | wx/mac/metafile.h | |
2339 | wx/mac/mimetype.h | |
2340 | wx/mac/minifram.h | |
2341 | wx/mac/msgdlg.h | |
2342 | wx/mac/notebook.h | |
2343 | wx/mac/palette.h | |
2344 | wx/mac/pen.h | |
38f3e759 | 2345 | wx/mac/popupwin.h |
23ffcdc4 DE |
2346 | wx/mac/pnghand.h |
2347 | wx/mac/pngread.h | |
2348 | wx/mac/printdlg.h | |
2349 | wx/mac/printmac.h | |
2350 | wx/mac/private.h | |
2351 | wx/mac/radiobox.h | |
2352 | wx/mac/radiobut.h | |
2353 | wx/mac/region.h | |
2354 | wx/mac/scrolbar.h | |
2355 | wx/mac/slider.h | |
2356 | wx/mac/spinbutt.h | |
2357 | wx/mac/spinctrl.h | |
3f7f284d | 2358 | wx/mac/srchctrl.h |
23ffcdc4 DE |
2359 | wx/mac/statbmp.h |
2360 | wx/mac/statbox.h | |
2361 | wx/mac/statline.h | |
2362 | wx/mac/stattext.h | |
2363 | wx/mac/statusbr.h | |
2364 | wx/mac/tabctrl.h | |
8998887c | 2365 | wx/mac/taskbarosx.h |
23ffcdc4 | 2366 | wx/mac/textctrl.h |
23ffcdc4 DE |
2367 | wx/mac/tglbtn.h |
2368 | wx/mac/toolbar.h | |
2369 | wx/mac/tooltip.h | |
2370 | wx/mac/toplevel.h | |
2371 | wx/mac/treectrl.h | |
2372 | wx/mac/uma.h | |
2373 | wx/mac/window.h | |
2374 | </set> | |
2375 | <!-- wxMac Carbon header files --> | |
22d2b5bf | 2376 | <set var="MAC_HDR" hints="files"> |
56bb4a5e SC |
2377 | wx/mac/carbon/accel.h |
2378 | wx/mac/carbon/aga.h | |
2379 | wx/mac/carbon/app.h | |
2380 | wx/mac/carbon/bitmap.h | |
2381 | wx/mac/carbon/bmpbuttn.h | |
2382 | wx/mac/carbon/brush.h | |
2383 | wx/mac/carbon/button.h | |
2384 | wx/mac/carbon/checkbox.h | |
2385 | wx/mac/carbon/checklst.h | |
2386 | wx/mac/carbon/chkconf.h | |
2387 | wx/mac/carbon/choice.h | |
2388 | wx/mac/carbon/clipbrd.h | |
2389 | wx/mac/carbon/colordlg.h | |
2390 | wx/mac/carbon/colour.h | |
2391 | wx/mac/carbon/combobox.h | |
2392 | wx/mac/carbon/control.h | |
2393 | wx/mac/carbon/cursor.h | |
2394 | wx/mac/carbon/dataform.h | |
2395 | wx/mac/carbon/dataobj.h | |
2396 | wx/mac/carbon/dataobj2.h | |
2397 | wx/mac/carbon/dc.h | |
2398 | wx/mac/carbon/dcclient.h | |
2399 | wx/mac/carbon/dcmemory.h | |
2400 | wx/mac/carbon/dcprint.h | |
2401 | wx/mac/carbon/dcscreen.h | |
2402 | wx/mac/carbon/dialog.h | |
2403 | wx/mac/carbon/dirdlg.h | |
56bb4a5e | 2404 | wx/mac/carbon/dnd.h |
4d90072c | 2405 | wx/mac/carbon/evtloop.h |
56bb4a5e SC |
2406 | wx/mac/carbon/filedlg.h |
2407 | wx/mac/carbon/font.h | |
2408 | wx/mac/carbon/fontdlg.h | |
2409 | wx/mac/carbon/frame.h | |
2410 | wx/mac/carbon/gauge.h | |
56bb4a5e SC |
2411 | wx/mac/carbon/gsockmac.h |
2412 | wx/mac/carbon/helpxxxx.h | |
2413 | wx/mac/carbon/icon.h | |
2414 | wx/mac/carbon/imaglist.h | |
2415 | wx/mac/carbon/listbox.h | |
2416 | wx/mac/carbon/listctrl.h | |
2417 | wx/mac/carbon/macnotfy.h | |
2418 | wx/mac/carbon/macsock.h | |
2419 | wx/mac/carbon/mdi.h | |
2420 | wx/mac/carbon/menu.h | |
2421 | wx/mac/carbon/menuitem.h | |
2422 | wx/mac/carbon/metafile.h | |
2423 | wx/mac/carbon/mimetype.h | |
2424 | wx/mac/carbon/minifram.h | |
2425 | wx/mac/carbon/msgdlg.h | |
2426 | wx/mac/carbon/notebook.h | |
2427 | wx/mac/carbon/palette.h | |
2428 | wx/mac/carbon/pen.h | |
38f3e759 | 2429 | wx/mac/carbon/popupwin.h |
56bb4a5e SC |
2430 | wx/mac/carbon/pnghand.h |
2431 | wx/mac/carbon/pngread.h | |
2432 | wx/mac/carbon/printdlg.h | |
2433 | wx/mac/carbon/printmac.h | |
2434 | wx/mac/carbon/private.h | |
3f7f284d RD |
2435 | wx/mac/carbon/private/mactext.h |
2436 | wx/mac/carbon/private/overlay.h | |
2437 | wx/mac/carbon/private/print.h | |
56bb4a5e SC |
2438 | wx/mac/carbon/radiobox.h |
2439 | wx/mac/carbon/radiobut.h | |
2440 | wx/mac/carbon/region.h | |
2441 | wx/mac/carbon/scrolbar.h | |
2442 | wx/mac/carbon/slider.h | |
2443 | wx/mac/carbon/spinbutt.h | |
2444 | wx/mac/carbon/spinctrl.h | |
3f7f284d | 2445 | wx/mac/carbon/srchctrl.h |
56bb4a5e SC |
2446 | wx/mac/carbon/statbmp.h |
2447 | wx/mac/carbon/statbox.h | |
2448 | wx/mac/carbon/statline.h | |
2449 | wx/mac/carbon/stattext.h | |
2450 | wx/mac/carbon/statusbr.h | |
2451 | wx/mac/carbon/tabctrl.h | |
2452 | wx/mac/carbon/textctrl.h | |
56bb4a5e SC |
2453 | wx/mac/carbon/tglbtn.h |
2454 | wx/mac/carbon/toolbar.h | |
2455 | wx/mac/carbon/tooltip.h | |
2456 | wx/mac/carbon/toplevel.h | |
2457 | wx/mac/carbon/treectrl.h | |
2458 | wx/mac/carbon/uma.h | |
2459 | wx/mac/carbon/window.h | |
ddf98968 | 2460 | <!-- Generic implementations used by wxMac: --> |
5df6736f | 2461 | wx/generic/caret.h |
773623f2 VZ |
2462 | wx/generic/clrpickerg.h |
2463 | wx/generic/collpaneg.h | |
5df6736f | 2464 | wx/generic/fdrepdlg.h |
77965426 | 2465 | wx/generic/filepickerg.h |
ddf98968 | 2466 | wx/generic/fontdlgg.h |
773623f2 | 2467 | wx/generic/fontpickerg.h |
ddf98968 | 2468 | wx/generic/listctrl.h |
5df6736f | 2469 | wx/generic/statusbr.h |
ddf98968 | 2470 | wx/generic/tabg.h |
9a768b45 KO |
2471 | <!-- wxWebKit headers --> |
2472 | wx/html/webkit.h | |
ddf98968 VS |
2473 | </set> |
2474 | ||
2475 | ||
2476 | <!-- ====================================================================== --> | |
2477 | <!-- wxCocoa --> | |
2478 | <!-- ====================================================================== --> | |
2479 | ||
22d2b5bf | 2480 | <set var="COCOA_LOWLEVEL_SRC" hints="files"> |
fc480dc1 | 2481 | <!-- Shared wxMac and wxCocoa files --> |
44d64ab2 | 2482 | src/mac/corefoundation/hid.cpp |
fc480dc1 | 2483 | src/mac/corefoundation/utilsexc_cf.cpp |
ddf98968 | 2484 | </set> |
22d2b5bf | 2485 | <set var="COCOA_LOWLEVEL_HDR" hints="files"> |
ddf98968 | 2486 | </set> |
22d2b5bf | 2487 | <set var="COCOA_SRC" hints="files"> |
ddf98968 VS |
2488 | src/cocoa/NSBox.mm |
2489 | src/cocoa/NSButton.mm | |
2490 | src/cocoa/NSControl.mm | |
2491 | src/cocoa/NSMenu.mm | |
2492 | src/cocoa/NSPanel.mm | |
5369a054 | 2493 | src/cocoa/NSScroller.mm |
90f6792f | 2494 | src/cocoa/NSSlider.mm |
0754a4b3 | 2495 | src/cocoa/NSTabView.mm |
9f5fd077 | 2496 | src/cocoa/NSTableView.mm |
ddf98968 VS |
2497 | src/cocoa/NSTextField.mm |
2498 | src/cocoa/NSView.mm | |
2499 | src/cocoa/NSWindow.mm | |
8ac77595 | 2500 | src/cocoa/ObjcRef.mm |
ddf98968 | 2501 | src/cocoa/app.mm |
ddf98968 | 2502 | src/cocoa/bitmap.mm |
5df6736f | 2503 | src/cocoa/bmpbuttn.mm |
f162a338 | 2504 | src/cocoa/brush.mm |
ddf98968 VS |
2505 | src/cocoa/button.mm |
2506 | src/cocoa/checkbox.mm | |
2507 | src/cocoa/checklst.mm | |
2508 | src/cocoa/choice.mm | |
374eabc1 | 2509 | src/cocoa/clipbrd.mm |
dcb68102 | 2510 | src/cocoa/colordlg.mm |
af515aad | 2511 | src/cocoa/colour.mm |
01a16fce | 2512 | src/cocoa/combobox.mm |
ddf98968 VS |
2513 | src/cocoa/control.mm |
2514 | src/cocoa/cursor.mm | |
2515 | src/cocoa/data.cpp | |
374eabc1 | 2516 | src/cocoa/dataobj.mm |
ddf98968 VS |
2517 | src/cocoa/dc.mm |
2518 | src/cocoa/dcclient.mm | |
fc1852c1 | 2519 | src/cocoa/dcmemory.mm |
ddf98968 VS |
2520 | src/cocoa/dcscreen.cpp |
2521 | src/cocoa/dialog.mm | |
937f314d | 2522 | src/cocoa/dirdlg.mm |
dcb68102 RN |
2523 | src/cocoa/display.mm |
2524 | src/cocoa/drawer.mm | |
8897ca05 | 2525 | src/cocoa/evtloop.mm |
f31424db | 2526 | src/cocoa/filedlg.mm |
9d31c239 | 2527 | src/cocoa/font.mm |
dcb68102 | 2528 | src/cocoa/fontdlg.mm |
4a5f4703 | 2529 | src/cocoa/fontenum.mm |
ddf98968 VS |
2530 | src/cocoa/fontutil.cpp |
2531 | src/cocoa/frame.mm | |
ec35ed7c | 2532 | src/cocoa/gauge.mm |
b5df4fc7 | 2533 | src/cocoa/icon.mm |
ddf98968 VS |
2534 | src/cocoa/listbox.mm |
2535 | src/cocoa/main.cpp | |
1a249e04 | 2536 | src/cocoa/mbarman.mm |
9de2e75a | 2537 | src/cocoa/mdi.mm |
ddf98968 VS |
2538 | src/cocoa/menu.mm |
2539 | src/cocoa/menuitem.mm | |
dcb68102 | 2540 | src/cocoa/msgdlg.mm |
0754a4b3 | 2541 | src/cocoa/notebook.mm |
0a0d1a61 | 2542 | src/cocoa/pen.mm |
ddf98968 VS |
2543 | src/cocoa/radiobox.mm |
2544 | src/cocoa/radiobut.mm | |
53dbce23 | 2545 | src/cocoa/region.mm |
5369a054 | 2546 | src/cocoa/scrolbar.mm |
888c4e8f | 2547 | src/cocoa/settings.mm |
af515aad | 2548 | src/cocoa/slider.mm |
dcb68102 | 2549 | src/cocoa/sound.mm |
36b46e25 | 2550 | src/cocoa/spinbutt.mm |
ddf98968 VS |
2551 | src/cocoa/statbmp.mm |
2552 | src/cocoa/statbox.mm | |
2553 | src/cocoa/statline2.mm | |
2554 | src/cocoa/stattext.mm | |
2555 | src/cocoa/textctrl.mm | |
2fcd7f64 | 2556 | src/cocoa/timer.mm |
715c1da4 | 2557 | src/cocoa/toolbar.mm |
3e90a0ab | 2558 | src/cocoa/tooltip.mm |
ddf98968 | 2559 | src/cocoa/toplevel.mm |
c24937e4 | 2560 | src/cocoa/utils.mm |
dcb68102 | 2561 | src/cocoa/utilsexc.mm |
ddf98968 | 2562 | src/cocoa/window.mm |
1936dc8b | 2563 | <!-- Generic implementations used by wxCocoa: --> |
5df6736f VS |
2564 | src/generic/accel.cpp |
2565 | src/generic/caret.cpp | |
773623f2 VZ |
2566 | src/generic/clrpickerg.cpp |
2567 | src/generic/collpaneg.cpp | |
31d20b58 | 2568 | src/generic/colrdlgg.cpp |
5df6736f | 2569 | src/generic/fdrepdlg.cpp |
773623f2 | 2570 | src/generic/filepickerg.cpp |
5df6736f | 2571 | src/generic/fontdlgg.cpp |
773623f2 | 2572 | src/generic/fontpickerg.cpp |
5df6736f VS |
2573 | src/generic/imaglist.cpp |
2574 | src/generic/listctrl.cpp | |
5df6736f | 2575 | src/generic/msgdlgg.cpp |
31d20b58 | 2576 | src/generic/paletteg.cpp |
53dbce23 | 2577 | src/generic/regiong.cpp |
5df6736f VS |
2578 | src/generic/statusbr.cpp |
2579 | src/generic/tabg.cpp | |
ddf98968 | 2580 | </set> |
22d2b5bf | 2581 | <set var="COCOA_HDR" hints="files"> |
c15ffb3b | 2582 | wx/cocoa/NSApplication.h |
ddf98968 VS |
2583 | wx/cocoa/NSBox.h |
2584 | wx/cocoa/NSButton.h | |
2585 | wx/cocoa/NSControl.h | |
2586 | wx/cocoa/NSMenu.h | |
2587 | wx/cocoa/NSPanel.h | |
5369a054 | 2588 | wx/cocoa/NSScroller.h |
90f6792f | 2589 | wx/cocoa/NSSlider.h |
0754a4b3 | 2590 | wx/cocoa/NSTabView.h |
9f5fd077 | 2591 | wx/cocoa/NSTableView.h |
ddf98968 VS |
2592 | wx/cocoa/NSTextField.h |
2593 | wx/cocoa/NSView.h | |
2594 | wx/cocoa/NSWindow.h | |
2595 | wx/cocoa/ObjcAssociate.h | |
2596 | wx/cocoa/ObjcPose.h | |
8ac77595 | 2597 | wx/cocoa/ObjcRef.h |
ddf98968 VS |
2598 | wx/cocoa/app.h |
2599 | wx/cocoa/bitmap.h | |
2600 | wx/cocoa/bmpbuttn.h | |
2601 | wx/cocoa/brush.h | |
2602 | wx/cocoa/button.h | |
2603 | wx/cocoa/checkbox.h | |
2604 | wx/cocoa/checklst.h | |
2605 | wx/cocoa/choice.h | |
374eabc1 | 2606 | wx/cocoa/clipbrd.h |
dcb68102 | 2607 | wx/cocoa/colordlg.h |
ddf98968 | 2608 | wx/cocoa/colour.h |
01a16fce | 2609 | wx/cocoa/combobox.h |
ddf98968 VS |
2610 | wx/cocoa/control.h |
2611 | wx/cocoa/cursor.h | |
374eabc1 DE |
2612 | wx/cocoa/dataform.h |
2613 | wx/cocoa/dataobj.h | |
2614 | wx/cocoa/dataobj2.h | |
ddf98968 VS |
2615 | wx/cocoa/dc.h |
2616 | wx/cocoa/dcclient.h | |
2617 | wx/cocoa/dcmemory.h | |
2618 | wx/cocoa/dcscreen.h | |
2619 | wx/cocoa/dialog.h | |
937f314d | 2620 | wx/cocoa/dirdlg.h |
dcb68102 | 2621 | wx/cocoa/drawer.h |
f31424db | 2622 | wx/cocoa/filedlg.h |
ddf98968 | 2623 | wx/cocoa/font.h |
dcb68102 | 2624 | wx/cocoa/fontdlg.h |
ddf98968 | 2625 | wx/cocoa/frame.h |
ec35ed7c | 2626 | wx/cocoa/gauge.h |
ddf98968 VS |
2627 | wx/cocoa/icon.h |
2628 | wx/cocoa/listbox.h | |
3d3600c9 | 2629 | wx/cocoa/log.h |
1a249e04 | 2630 | wx/cocoa/mbarman.h |
9de2e75a | 2631 | wx/cocoa/mdi.h |
ddf98968 VS |
2632 | wx/cocoa/menu.h |
2633 | wx/cocoa/menuitem.h | |
dcb68102 | 2634 | wx/cocoa/msgdlg.h |
0754a4b3 | 2635 | wx/cocoa/notebook.h |
ddf98968 VS |
2636 | wx/cocoa/pen.h |
2637 | wx/cocoa/radiobox.h | |
2638 | wx/cocoa/radiobut.h | |
2639 | wx/cocoa/region.h | |
5369a054 | 2640 | wx/cocoa/scrolbar.h |
c15ffb3b | 2641 | wx/cocoa/slider.h |
dcb68102 | 2642 | wx/cocoa/sound.h |
36b46e25 | 2643 | wx/cocoa/spinbutt.h |
ddf98968 VS |
2644 | wx/cocoa/statbmp.h |
2645 | wx/cocoa/statbox.h | |
2646 | wx/cocoa/statline.h | |
2647 | wx/cocoa/stattext.h | |
2648 | wx/cocoa/textctrl.h | |
715c1da4 | 2649 | wx/cocoa/toolbar.h |
a970aa7a | 2650 | wx/cocoa/tooltip.h |
ddf98968 VS |
2651 | wx/cocoa/toplevel.h |
2652 | wx/cocoa/window.h | |
6c67fde0 DE |
2653 | <!-- Semi-private headers --> |
2654 | wx/cocoa/objc/objc_uniquifying.h | |
d1d83c9b | 2655 | <!-- Generic implementations used by wxCocoa: --> |
5df6736f | 2656 | wx/generic/caret.h |
773623f2 VZ |
2657 | wx/generic/clrpickerg.h |
2658 | wx/generic/collpaneg.h | |
5df6736f | 2659 | wx/generic/fdrepdlg.h |
d1d83c9b | 2660 | wx/generic/fontdlgg.h |
773623f2 | 2661 | wx/generic/fontpickerg.h |
d1d83c9b VS |
2662 | wx/generic/imaglist.h |
2663 | wx/generic/listctrl.h | |
eb9dd149 | 2664 | wx/generic/paletteg.h |
53dbce23 | 2665 | wx/generic/region.h |
5df6736f VS |
2666 | wx/generic/statusbr.h |
2667 | wx/generic/tabg.h | |
ddf98968 VS |
2668 | </set> |
2669 | ||
2670 | ||
2671 | ||
2672 | <!-- ====================================================================== --> | |
2673 | <!-- wxUniversal --> | |
2674 | <!-- ====================================================================== --> | |
2675 | ||
88f23fdd | 2676 | |
22d2b5bf | 2677 | <set var="UNIV_THEMES_SRC" hints="files"> |
ddf98968 | 2678 | src/univ/themes/gtk.cpp |
ddf98968 | 2679 | src/univ/themes/metal.cpp |
3a01afec | 2680 | src/univ/themes/mono.cpp |
5df6736f | 2681 | src/univ/themes/win32.cpp |
ddf98968 VS |
2682 | </set> |
2683 | ||
22d2b5bf | 2684 | <set var="UNIV_SRC" hints="files"> |
5df6736f | 2685 | src/generic/accel.cpp |
773623f2 VZ |
2686 | src/generic/clrpickerg.cpp |
2687 | src/generic/collpaneg.cpp | |
5df6736f VS |
2688 | src/generic/colrdlgg.cpp |
2689 | src/generic/dirdlgg.cpp | |
2690 | src/generic/fdrepdlg.cpp | |
2691 | src/generic/filedlgg.cpp | |
773623f2 | 2692 | src/generic/filepickerg.cpp |
5df6736f | 2693 | src/generic/fontdlgg.cpp |
773623f2 | 2694 | src/generic/fontpickerg.cpp |
5df6736f VS |
2695 | src/generic/listctrl.cpp |
2696 | src/generic/mdig.cpp | |
2697 | src/generic/msgdlgg.cpp | |
2698 | src/generic/prntdlgg.cpp | |
2699 | src/generic/tabg.cpp | |
ddf98968 VS |
2700 | src/univ/bmpbuttn.cpp |
2701 | src/univ/button.cpp | |
2702 | src/univ/checkbox.cpp | |
2703 | src/univ/checklst.cpp | |
2704 | src/univ/choice.cpp | |
2705 | src/univ/colschem.cpp | |
2706 | src/univ/combobox.cpp | |
2707 | src/univ/control.cpp | |
2479d149 | 2708 | src/univ/ctrlrend.cpp |
ddf98968 VS |
2709 | src/univ/dialog.cpp |
2710 | src/univ/framuniv.cpp | |
ddf98968 VS |
2711 | src/univ/gauge.cpp |
2712 | src/univ/inpcons.cpp | |
2713 | src/univ/inphand.cpp | |
2714 | src/univ/listbox.cpp | |
2715 | src/univ/menu.cpp | |
2716 | src/univ/notebook.cpp | |
2717 | src/univ/radiobox.cpp | |
2718 | src/univ/radiobut.cpp | |
ddf98968 VS |
2719 | src/univ/scrarrow.cpp |
2720 | src/univ/scrolbar.cpp | |
2721 | src/univ/scrthumb.cpp | |
2722 | src/univ/slider.cpp | |
2723 | src/univ/spinbutt.cpp | |
2724 | src/univ/statbmp.cpp | |
2725 | src/univ/statbox.cpp | |
2726 | src/univ/statline.cpp | |
2727 | src/univ/stattext.cpp | |
2728 | src/univ/statusbr.cpp | |
147b8a4a | 2729 | src/univ/stdrend.cpp |
c4836bee | 2730 | src/univ/textctrl.cpp |
43be3c33 | 2731 | src/univ/tglbtn.cpp |
ddf98968 | 2732 | src/univ/theme.cpp |
5df6736f VS |
2733 | src/univ/toolbar.cpp |
2734 | src/univ/topluniv.cpp | |
ddf98968 | 2735 | src/univ/winuniv.cpp |
ddf98968 | 2736 | </set> |
22d2b5bf | 2737 | <set var="UNIV_HDR" hints="files"> |
5df6736f | 2738 | wx/generic/accel.h |
773623f2 VZ |
2739 | wx/generic/animate.h |
2740 | wx/generic/clrpickerg.h | |
2741 | wx/generic/collpaneg.h | |
a236aa20 | 2742 | wx/generic/ctrlsub.h |
5df6736f VS |
2743 | wx/generic/dirdlgg.h |
2744 | wx/generic/fdrepdlg.h | |
773623f2 VZ |
2745 | wx/generic/filedlgg.h |
2746 | wx/generic/filepickerg.h | |
5df6736f | 2747 | wx/generic/fontdlgg.h |
773623f2 | 2748 | wx/generic/fontpickerg.h |
5df6736f VS |
2749 | wx/generic/listctrl.h |
2750 | wx/generic/mdig.h | |
2751 | wx/generic/statusbr.h | |
2752 | wx/generic/tabg.h | |
ddf98968 VS |
2753 | wx/univ/app.h |
2754 | wx/univ/bmpbuttn.h | |
2755 | wx/univ/button.h | |
2756 | wx/univ/checkbox.h | |
2757 | wx/univ/checklst.h | |
4353a8df | 2758 | wx/univ/chkconf.h |
ddf98968 VS |
2759 | wx/univ/choice.h |
2760 | wx/univ/colschem.h | |
2761 | wx/univ/combobox.h | |
2762 | wx/univ/control.h | |
2763 | wx/univ/dialog.h | |
2764 | wx/univ/frame.h | |
ddf98968 VS |
2765 | wx/univ/gauge.h |
2766 | wx/univ/inpcons.h | |
2767 | wx/univ/inphand.h | |
2768 | wx/univ/listbox.h | |
2769 | wx/univ/menu.h | |
2770 | wx/univ/menuitem.h | |
2771 | wx/univ/notebook.h | |
2772 | wx/univ/radiobox.h | |
2773 | wx/univ/radiobut.h | |
2774 | wx/univ/renderer.h | |
2775 | wx/univ/scrarrow.h | |
2776 | wx/univ/scrolbar.h | |
2777 | wx/univ/scrthumb.h | |
2778 | wx/univ/scrtimer.h | |
ddf98968 VS |
2779 | wx/univ/slider.h |
2780 | wx/univ/spinbutt.h | |
2781 | wx/univ/statbmp.h | |
2782 | wx/univ/statbox.h | |
2783 | wx/univ/statline.h | |
2784 | wx/univ/stattext.h | |
2785 | wx/univ/statusbr.h | |
147b8a4a | 2786 | wx/univ/stdrend.h |
ddf98968 VS |
2787 | wx/univ/textctrl.h |
2788 | wx/univ/theme.h | |
35c63208 | 2789 | wx/univ/tglbtn.h |
ddf98968 | 2790 | wx/univ/toolbar.h |
5df6736f | 2791 | wx/univ/toplevel.h |
ddf98968 | 2792 | wx/univ/window.h |
ddf98968 VS |
2793 | </set> |
2794 | ||
13cb46e0 VS |
2795 | <!-- ====================================================================== --> |
2796 | <!-- wxAdvanced --> | |
2797 | <!-- ====================================================================== --> | |
2798 | ||
13cb46e0 | 2799 | <set var="ADVANCED_CMN_SRC" hints="files"> |
72045d57 | 2800 | src/common/animatecmn.cpp |
a78d8dd0 | 2801 | src/common/datavcmn.cpp |
c105dda0 | 2802 | src/common/hyperlnkcmn.cpp |
fd3f8f5c | 2803 | src/generic/aboutdlgg.cpp |
e17b6377 | 2804 | src/generic/bmpcboxg.cpp |
13cb46e0 | 2805 | src/generic/calctrl.cpp |
4ed7af08 | 2806 | src/generic/datavgen.cpp |
d9876615 | 2807 | src/generic/datectlg.cpp |
806ad819 | 2808 | src/generic/editlbox.cpp |
13cb46e0 VS |
2809 | src/generic/grid.cpp |
2810 | src/generic/gridctrl.cpp | |
2811 | src/generic/gridsel.cpp | |
2812 | src/generic/helpext.cpp | |
c105dda0 | 2813 | src/generic/hyperlinkg.cpp |
13cb46e0 | 2814 | src/generic/laywin.cpp |
e36a1739 | 2815 | src/generic/notifmsgg.cpp |
a340b80d | 2816 | src/generic/odcombo.cpp |
3c9287bb | 2817 | src/generic/propdlg.cpp |
13cb46e0 VS |
2818 | src/generic/sashwin.cpp |
2819 | src/generic/splash.cpp | |
2820 | src/generic/tipdlg.cpp | |
2821 | src/generic/wizard.cpp | |
2822 | </set> | |
2823 | ||
2824 | <set var="ADVANCED_CMN_HDR" hints="files"> | |
819d77af | 2825 | wx/aboutdlg.h |
72045d57 | 2826 | wx/animate.h |
e17b6377 | 2827 | wx/bmpcbox.h |
13cb46e0 | 2828 | wx/calctrl.h |
a78d8dd0 | 2829 | wx/dataview.h |
79d8e80f | 2830 | wx/datectrl.h |
feb72429 | 2831 | wx/dateevt.h |
13cb46e0 | 2832 | wx/dcbuffer.h |
806ad819 | 2833 | wx/editlbox.h |
fd3f8f5c | 2834 | wx/generic/aboutdlgg.h |
e17b6377 | 2835 | wx/generic/bmpcbox.h |
13cb46e0 | 2836 | wx/generic/calctrl.h |
d9876615 | 2837 | wx/generic/datectrl.h |
4ed7af08 | 2838 | wx/generic/dataview.h |
13cb46e0 VS |
2839 | wx/generic/grid.h |
2840 | wx/generic/gridctrl.h | |
2841 | wx/generic/gridsel.h | |
2842 | wx/generic/helpext.h | |
c105dda0 | 2843 | wx/generic/hyperlink.h |
13cb46e0 | 2844 | wx/generic/laywin.h |
e36a1739 | 2845 | wx/generic/notifmsg.h |
3c9287bb | 2846 | wx/generic/propdlg.h |
13cb46e0 VS |
2847 | wx/generic/sashwin.h |
2848 | wx/generic/splash.h | |
2849 | wx/generic/wizard.h | |
2850 | wx/grid.h | |
17e91437 | 2851 | wx/hyperlink.h |
131f235d | 2852 | wx/joystick.h |
13cb46e0 | 2853 | wx/laywin.h |
e36a1739 | 2854 | wx/notifmsg.h |
a340b80d | 2855 | wx/odcombo.h |
3c9287bb | 2856 | wx/propdlg.h |
13cb46e0 | 2857 | wx/sashwin.h |
c79241a2 | 2858 | wx/sound.h |
13cb46e0 | 2859 | wx/splash.h |
131f235d | 2860 | wx/taskbar.h |
13cb46e0 VS |
2861 | wx/tipdlg.h |
2862 | wx/wizard.h | |
2863 | </set> | |
2864 | ||
131f235d VS |
2865 | <set var="ADVANCED_MSW_SRC" hints="files"> |
2866 | src/common/taskbarcmn.cpp | |
773623f2 | 2867 | src/generic/animateg.cpp |
fd3f8f5c | 2868 | src/msw/aboutdlg.cpp |
98f3ec0f | 2869 | src/msw/notifmsg.cpp |
315ebf68 | 2870 | src/msw/sound.cpp |
131f235d | 2871 | src/msw/taskbar.cpp |
131f235d VS |
2872 | </set> |
2873 | <set var="ADVANCED_MSW_HDR" hints="files"> | |
773623f2 | 2874 | wx/generic/animate.h |
98f3ec0f | 2875 | wx/msw/notifmsg.h |
315ebf68 | 2876 | wx/msw/sound.h |
131f235d | 2877 | wx/msw/taskbar.h |
131f235d | 2878 | </set> |
ca95ed8e VZ |
2879 | |
2880 | <!-- not used with wxUniv --> | |
2881 | <set var="ADVANCED_MSW_NATIVE_SRC" hints="files"> | |
2882 | src/msw/datectrl.cpp | |
2883 | </set> | |
2884 | <set var="ADVANCED_MSW_NATIVE_HDR" hints="files"> | |
2885 | wx/msw/datectrl.h | |
2886 | </set> | |
2887 | ||
ba9e5bc4 | 2888 | <!-- not built on WindowsCE: --> |
ca95ed8e | 2889 | <set var="ADVANCED_MSW_DESKTOP_SRC" hints="files"> |
ba9e5bc4 VS |
2890 | src/msw/joystick.cpp |
2891 | </set> | |
ca95ed8e | 2892 | <set var="ADVANCED_MSW_DESKTOP_HDR" hints="files"> |
ba9e5bc4 VS |
2893 | wx/msw/joystick.h |
2894 | </set> | |
131f235d VS |
2895 | |
2896 | <set var="ADVANCED_MAC_SRC" hints="files"> | |
3e17bc3f | 2897 | src/common/taskbarcmn.cpp |
773623f2 | 2898 | src/generic/animateg.cpp |
fd3f8f5c | 2899 | src/mac/carbon/aboutdlg.cpp |
3e17bc3f | 2900 | src/mac/carbon/drawer.cpp |
be3d63c1 RR |
2901 | src/mac/carbon/dataview.cpp |
2902 | src/mac/carbon/databrow.cpp | |
56bb4a5e | 2903 | src/mac/carbon/sound.cpp |
607667fd | 2904 | src/mac/carbon/taskbar.cpp |
4cb1d3da | 2905 | src/mac/corefoundation/hidjoystick.cpp |
131f235d VS |
2906 | </set> |
2907 | <set var="ADVANCED_MAC_HDR" hints="files"> | |
773623f2 | 2908 | wx/generic/animate.h |
8f6a4850 VZ |
2909 | wx/mac/dataview.h |
2910 | wx/mac/joystick.h | |
2911 | wx/mac/sound.h | |
3e17bc3f | 2912 | wx/mac/carbon/drawer.h |
be3d63c1 RR |
2913 | wx/mac/carbon/dataview.h |
2914 | wx/mac/carbon/databrow.h | |
56bb4a5e | 2915 | wx/mac/carbon/sound.h |
607667fd | 2916 | wx/mac/carbon/taskbarosx.h |
4cb1d3da | 2917 | wx/mac/corefoundation/joystick.h |
131f235d VS |
2918 | </set> |
2919 | ||
f1d9e1ec DE |
2920 | <set var="ADVANCED_COCOA_SRC" hints="files"> |
2921 | src/cocoa/taskbar.mm | |
2922 | src/common/taskbarcmn.cpp | |
773623f2 | 2923 | src/generic/animateg.cpp |
4cb1d3da | 2924 | src/mac/corefoundation/hidjoystick.cpp |
f1d9e1ec DE |
2925 | </set> |
2926 | <set var="ADVANCED_COCOA_HDR" hints="files"> | |
0ec6ec32 | 2927 | wx/cocoa/taskbar.h |
773623f2 | 2928 | wx/generic/animate.h |
4cb1d3da | 2929 | wx/mac/corefoundation/joystick.h |
f1d9e1ec DE |
2930 | </set> |
2931 | ||
131f235d | 2932 | <set var="ADVANCED_OS2_SRC" hints="files"> |
773623f2 | 2933 | src/generic/animateg.cpp |
131f235d | 2934 | src/os2/joystick.cpp |
315ebf68 | 2935 | src/os2/sound.cpp |
131f235d VS |
2936 | </set> |
2937 | <set var="ADVANCED_OS2_HDR" hints="files"> | |
773623f2 | 2938 | wx/generic/animate.h |
131f235d | 2939 | wx/os2/joystick.h |
315ebf68 | 2940 | wx/os2/sound.h |
131f235d VS |
2941 | </set> |
2942 | ||
2943 | <set var="ADVANCED_UNIX_SRC" hints="files"> | |
2944 | src/common/taskbarcmn.cpp | |
2945 | src/unix/joystick.cpp | |
c79241a2 | 2946 | src/unix/sound.cpp |
131f235d | 2947 | src/unix/taskbarx11.cpp |
131f235d VS |
2948 | </set> |
2949 | <set var="ADVANCED_UNIX_HDR" hints="files"> | |
2950 | wx/unix/joystick.h | |
c79241a2 | 2951 | wx/unix/sound.h |
131f235d | 2952 | wx/unix/taskbarx11.h |
131f235d VS |
2953 | </set> |
2954 | ||
978c6e41 VZ |
2955 | <set var="ADVANCED_MOTIF_SRC" hints="files"> |
2956 | src/generic/animateg.cpp | |
2957 | </set> | |
2958 | ||
2959 | <set var="ADVANCED_MOTIF_HDR" hints="files"> | |
2960 | wx/generic/animate.h | |
2961 | </set> | |
2962 | ||
33d4eef0 | 2963 | <set var="ADVANCED_GTK_SRC" hints="files"> |
3746e527 VZ |
2964 | src/gtk/taskbar.cpp |
2965 | src/gtk/eggtrayicon.c | |
e36a1739 | 2966 | src/gtk/hildon/notifmsg.cpp |
3746e527 VZ |
2967 | </set> |
2968 | <set var="ADVANCED_GTK_HDR" hints="files"> | |
e36a1739 | 2969 | wx/gtk/hildon/notifmsg.h |
3746e527 VZ |
2970 | </set> |
2971 | ||
2972 | <set var="ADVANCED_GTK_NATIVE_SRC" hints="files"> | |
a11a0ead | 2973 | src/gtk/aboutdlg.cpp |
72045d57 | 2974 | src/gtk/animate.cpp |
a78d8dd0 | 2975 | src/gtk/dataview.cpp |
c105dda0 | 2976 | src/gtk/hyperlink.cpp |
33d4eef0 | 2977 | </set> |
3746e527 | 2978 | <set var="ADVANCED_GTK_NATIVE_HDR" hints="files"> |
72045d57 | 2979 | wx/gtk/animate.h |
3746e527 | 2980 | wx/gtk/dataview.h |
c105dda0 | 2981 | wx/gtk/hyperlink.h |
72045d57 VZ |
2982 | </set> |
2983 | ||
8ff12d3d | 2984 | <set var="ADVANCED_GTK1_SRC" hints="files"> |
773623f2 | 2985 | src/generic/animateg.cpp |
554db692 PC |
2986 | src/gtk1/eggtrayicon.c |
2987 | src/gtk1/taskbar.cpp | |
2988 | </set> | |
2989 | <set var="ADVANCED_GTK1_HDR" hints="files"> | |
773623f2 | 2990 | wx/generic/animate.h |
8ff12d3d | 2991 | </set> |
33d4eef0 | 2992 | |
aa824453 VZ |
2993 | <set var="ADVANCED_UNIV_SRC" hints="files"> |
2994 | src/generic/animateg.cpp | |
2995 | </set> | |
2996 | <set var="ADVANCED_UNIV_HDR" hints="files"> | |
2997 | wx/generic/animate.h | |
2998 | </set> | |
2999 | ||
2ae3b602 RN |
3000 | <!-- ====================================================================== --> |
3001 | <!-- wxMedia --> | |
3002 | <!-- ====================================================================== --> | |
3003 | ||
3004 | <set var="MEDIA_CMN_SRC" hints="files"> | |
ff4aedc5 | 3005 | src/common/mediactrlcmn.cpp |
2ae3b602 RN |
3006 | </set> |
3007 | ||
3008 | <set var="MEDIA_CMN_HDR" hints="files"> | |
6a91f714 | 3009 | wx/mediactrl.h |
2ae3b602 RN |
3010 | </set> |
3011 | ||
3012 | <set var="MEDIA_MSW_SRC" hints="files"> | |
557002cf VZ |
3013 | src/msw/mediactrl_am.cpp |
3014 | src/msw/mediactrl_wmp10.cpp | |
c5ec19f4 | 3015 | src/msw/mediactrl_qt.cpp |
bf354396 | 3016 | src/msw/ole/activex.cpp |
2ae3b602 RN |
3017 | </set> |
3018 | <set var="MEDIA_MSW_HDR" hints="files"> | |
bf354396 | 3019 | wx/msw/ole/activex.h |
2ae3b602 RN |
3020 | </set> |
3021 | <!-- not built on WindowsCE: --> | |
ca95ed8e | 3022 | <set var="MEDIA_MSW_DESKTOP_SRC" hints="files"> |
2ae3b602 | 3023 | </set> |
ca95ed8e | 3024 | <set var="MEDIA_MSW_DESKTOP_HDR" hints="files"> |
2ae3b602 RN |
3025 | </set> |
3026 | ||
3027 | <set var="MEDIA_MAC_SRC" hints="files"> | |
6a91f714 | 3028 | src/mac/carbon/mediactrl.cpp |
2ae3b602 RN |
3029 | </set> |
3030 | <set var="MEDIA_MAC_HDR" hints="files"> | |
2ae3b602 RN |
3031 | </set> |
3032 | ||
3033 | <set var="MEDIA_COCOA_SRC" hints="files"> | |
4fc81cbc | 3034 | src/cocoa/mediactrl.mm |
2ae3b602 RN |
3035 | </set> |
3036 | <set var="MEDIA_COCOA_HDR" hints="files"> | |
3037 | </set> | |
3038 | ||
3039 | <set var="MEDIA_OS2_SRC" hints="files"> | |
3040 | </set> | |
3041 | <set var="MEDIA_OS2_HDR" hints="files"> | |
3042 | </set> | |
3043 | ||
3044 | <set var="MEDIA_UNIX_SRC" hints="files"> | |
ddc90a8d | 3045 | src/unix/mediactrl.cpp |
2ae3b602 RN |
3046 | </set> |
3047 | <set var="MEDIA_UNIX_HDR" hints="files"> | |
3048 | </set> | |
3049 | ||
3050 | <set var="MEDIA_GTK_SRC" hints="files"> | |
3051 | </set> | |
3052 | ||
8ff12d3d MR |
3053 | <set var="MEDIA_GTK1_SRC" hints="files"> |
3054 | </set> | |
3055 | ||
ddf98968 VS |
3056 | <!-- ====================================================================== --> |
3057 | <!-- wxHTML --> | |
3058 | <!-- ====================================================================== --> | |
3059 | ||
36b72b47 VS |
3060 | <set var="HTML_SRC_PLATFORM"> |
3061 | <if cond="TOOLKIT=='MSW'"> | |
3062 | src/msw/helpbest.cpp | |
3063 | </if> | |
c839485c VS |
3064 | <if cond="PLATFORM_UNIX=='1'"> |
3065 | src/html/chm.cpp | |
3066 | </if> | |
3067 | <if cond="PLATFORM_MACOSX=='1'"> | |
3068 | src/html/chm.cpp | |
3069 | </if> | |
36b72b47 | 3070 | </set> |
22d2b5bf | 3071 | <set var="HTML_SRC" hints="files"> |
36b72b47 | 3072 | $(HTML_SRC_PLATFORM) |
5df6736f | 3073 | src/html/helpctrl.cpp |
ddf98968 | 3074 | src/html/helpdata.cpp |
3755cfa6 | 3075 | src/html/helpdlg.cpp |
ddf98968 | 3076 | src/html/helpfrm.cpp |
f3e156ef | 3077 | src/html/helpwnd.cpp |
ddf98968 VS |
3078 | src/html/htmlcell.cpp |
3079 | src/html/htmlfilt.cpp | |
3080 | src/html/htmlpars.cpp | |
3081 | src/html/htmltag.cpp | |
3082 | src/html/htmlwin.cpp | |
5df6736f VS |
3083 | src/html/htmprint.cpp |
3084 | src/html/m_dflist.cpp | |
ddf98968 VS |
3085 | src/html/m_fonts.cpp |
3086 | src/html/m_hline.cpp | |
3087 | src/html/m_image.cpp | |
3088 | src/html/m_layout.cpp | |
3089 | src/html/m_links.cpp | |
3090 | src/html/m_list.cpp | |
ddf98968 | 3091 | src/html/m_pre.cpp |
ddf98968 | 3092 | src/html/m_style.cpp |
5df6736f VS |
3093 | src/html/m_tables.cpp |
3094 | src/html/winpars.cpp | |
a9035850 | 3095 | <!-- wxHTML users: --> |
a9035850 | 3096 | src/generic/htmllbox.cpp |
ddf98968 | 3097 | </set> |
ef53c340 VZ |
3098 | <set var="MSW_HTML_HDR" hints="files"> |
3099 | <if cond="TOOLKIT=='MSW'">wx/msw/helpbest.h</if> | |
3100 | </set> | |
22d2b5bf | 3101 | <set var="HTML_HDR" hints="files"> |
227a9855 VS |
3102 | wx/html/helpctrl.h |
3103 | wx/html/helpdata.h | |
f533e26f | 3104 | wx/html/helpdlg.h |
227a9855 | 3105 | wx/html/helpfrm.h |
f3e156ef | 3106 | wx/html/helpwnd.h |
227a9855 VS |
3107 | wx/html/htmlcell.h |
3108 | wx/html/htmldefs.h | |
3109 | wx/html/htmlfilt.h | |
3110 | wx/html/htmlpars.h | |
3111 | wx/html/htmlproc.h | |
3112 | wx/html/htmltag.h | |
3113 | wx/html/htmlwin.h | |
3114 | wx/html/htmprint.h | |
3115 | wx/html/m_templ.h | |
3116 | wx/html/winpars.h | |
5df6736f | 3117 | wx/wxhtml.h |
a9035850 | 3118 | <!-- wxHTML users: --> |
a9035850 | 3119 | wx/htmllbox.h |
ef53c340 | 3120 | $(MSW_HTML_HDR) |
ddf98968 VS |
3121 | </set> |
3122 | ||
3123 | ||
5df6736f | 3124 | |
3849327b VS |
3125 | <!-- ====================================================================== --> |
3126 | <!-- wxXRC --> | |
3127 | <!-- ====================================================================== --> | |
3128 | ||
3129 | <set var="XRC_SRC" hints="files"> | |
9e29cd0a | 3130 | src/xrc/xh_animatctrl.cpp |
3849327b | 3131 | src/xrc/xh_bmp.cpp |
d1a3f566 VZ |
3132 | src/xrc/xh_bmpcbox.cpp |
3133 | src/xrc/xh_bmpbt.cpp | |
3849327b VS |
3134 | src/xrc/xh_bttn.cpp |
3135 | src/xrc/xh_cald.cpp | |
3136 | src/xrc/xh_chckb.cpp | |
3137 | src/xrc/xh_chckl.cpp | |
3138 | src/xrc/xh_choic.cpp | |
9aaf1192 | 3139 | src/xrc/xh_choicbk.cpp |
ec376c8f | 3140 | src/xrc/xh_clrpicker.cpp |
912c3932 | 3141 | src/xrc/xh_collpane.cpp |
3849327b | 3142 | src/xrc/xh_combo.cpp |
310e47b3 | 3143 | src/xrc/xh_datectrl.cpp |
ec376c8f | 3144 | src/xrc/xh_dirpicker.cpp |
3849327b VS |
3145 | src/xrc/xh_dlg.cpp |
3146 | src/xrc/xh_frame.cpp | |
5a0348c4 | 3147 | src/xrc/xh_mdi.cpp |
ec376c8f VZ |
3148 | src/xrc/xh_filepicker.cpp |
3149 | src/xrc/xh_fontpicker.cpp | |
3849327b VS |
3150 | src/xrc/xh_gauge.cpp |
3151 | src/xrc/xh_gdctl.cpp | |
dbcca2fa | 3152 | src/xrc/xh_grid.cpp |
3849327b | 3153 | src/xrc/xh_html.cpp |
17e91437 | 3154 | src/xrc/xh_hyperlink.cpp |
3849327b | 3155 | src/xrc/xh_listb.cpp |
9aaf1192 | 3156 | src/xrc/xh_listbk.cpp |
3849327b VS |
3157 | src/xrc/xh_listc.cpp |
3158 | src/xrc/xh_menu.cpp | |
3159 | src/xrc/xh_notbk.cpp | |
582f07c2 | 3160 | src/xrc/xh_odcombo.cpp |
3849327b | 3161 | src/xrc/xh_panel.cpp |
aa1b2573 | 3162 | src/xrc/xh_propdlg.cpp |
3849327b VS |
3163 | src/xrc/xh_radbt.cpp |
3164 | src/xrc/xh_radbx.cpp | |
87c2432d VZ |
3165 | <!-- disabled until linking problems are fixed --> |
3166 | <!-- src/xrc/xh_richtext.cpp --> | |
3849327b VS |
3167 | src/xrc/xh_scrol.cpp |
3168 | src/xrc/xh_scwin.cpp | |
9ebb7cad | 3169 | src/xrc/xh_htmllbox.cpp |
3849327b VS |
3170 | src/xrc/xh_sizer.cpp |
3171 | src/xrc/xh_slidr.cpp | |
3172 | src/xrc/xh_spin.cpp | |
3173 | src/xrc/xh_split.cpp | |
c7db82dc | 3174 | src/xrc/xh_srchctrl.cpp |
3849327b VS |
3175 | src/xrc/xh_statbar.cpp |
3176 | src/xrc/xh_stbmp.cpp | |
3177 | src/xrc/xh_stbox.cpp | |
3178 | src/xrc/xh_stlin.cpp | |
3179 | src/xrc/xh_sttxt.cpp | |
3180 | src/xrc/xh_text.cpp | |
3181 | src/xrc/xh_tglbtn.cpp | |
3182 | src/xrc/xh_toolb.cpp | |
3183 | src/xrc/xh_tree.cpp | |
eca15c0d | 3184 | src/xrc/xh_treebk.cpp |
3849327b VS |
3185 | src/xrc/xh_unkwn.cpp |
3186 | src/xrc/xh_wizrd.cpp | |
3187 | src/xrc/xmlres.cpp | |
3188 | src/xrc/xmlrsall.cpp | |
3189 | </set> | |
3190 | <set var="XRC_HDR" hints="files"> | |
3191 | wx/xrc/xh_all.h | |
9e29cd0a | 3192 | wx/xrc/xh_animatctrl.h |
3849327b VS |
3193 | wx/xrc/xh_bmpbt.h |
3194 | wx/xrc/xh_bmp.h | |
e17b6377 | 3195 | wx/xrc/xh_bmpcbox.h |
3849327b VS |
3196 | wx/xrc/xh_bttn.h |
3197 | wx/xrc/xh_cald.h | |
3198 | wx/xrc/xh_chckb.h | |
3199 | wx/xrc/xh_chckl.h | |
3200 | wx/xrc/xh_choic.h | |
9aaf1192 | 3201 | wx/xrc/xh_choicbk.h |
ec376c8f | 3202 | wx/xrc/xh_clrpicker.h |
912c3932 | 3203 | wx/xrc/xh_collpane.h |
3849327b | 3204 | wx/xrc/xh_combo.h |
a2897d43 | 3205 | wx/xrc/xh_datectrl.h |
ec376c8f | 3206 | wx/xrc/xh_dirpicker.h |
3849327b | 3207 | wx/xrc/xh_dlg.h |
ec376c8f VZ |
3208 | wx/xrc/xh_filepicker.h |
3209 | wx/xrc/xh_fontpicker.h | |
3849327b | 3210 | wx/xrc/xh_frame.h |
5a0348c4 | 3211 | wx/xrc/xh_mdi.h |
3849327b VS |
3212 | wx/xrc/xh_gauge.h |
3213 | wx/xrc/xh_gdctl.h | |
dbcca2fa | 3214 | wx/xrc/xh_grid.h |
3849327b | 3215 | wx/xrc/xh_html.h |
17e91437 | 3216 | wx/xrc/xh_hyperlink.h |
3849327b | 3217 | wx/xrc/xh_listb.h |
9aaf1192 | 3218 | wx/xrc/xh_listbk.h |
3849327b VS |
3219 | wx/xrc/xh_listc.h |
3220 | wx/xrc/xh_menu.h | |
3221 | wx/xrc/xh_notbk.h | |
582f07c2 | 3222 | wx/xrc/xh_odcombo.h |
3849327b | 3223 | wx/xrc/xh_panel.h |
aa1b2573 | 3224 | wx/xrc/xh_propdlg.h |
3849327b VS |
3225 | wx/xrc/xh_radbt.h |
3226 | wx/xrc/xh_radbx.h | |
87c2432d | 3227 | <!-- wx/xrc/xh_richtext.h --> |
3849327b VS |
3228 | wx/xrc/xh_scrol.h |
3229 | wx/xrc/xh_scwin.h | |
9ebb7cad | 3230 | wx/xrc/xh_htmllbox.h |
3849327b VS |
3231 | wx/xrc/xh_sizer.h |
3232 | wx/xrc/xh_slidr.h | |
3233 | wx/xrc/xh_spin.h | |
3234 | wx/xrc/xh_split.h | |
c7db82dc | 3235 | wx/xrc/xh_srchctrl.h |
3849327b VS |
3236 | wx/xrc/xh_statbar.h |
3237 | wx/xrc/xh_stbmp.h | |
3238 | wx/xrc/xh_stbox.h | |
3239 | wx/xrc/xh_stlin.h | |
3240 | wx/xrc/xh_sttxt.h | |
3241 | wx/xrc/xh_text.h | |
3242 | wx/xrc/xh_tglbtn.h | |
3243 | wx/xrc/xh_toolb.h | |
3244 | wx/xrc/xh_tree.h | |
b2aba331 | 3245 | wx/xrc/xh_treebk.h |
3849327b VS |
3246 | wx/xrc/xh_unkwn.h |
3247 | wx/xrc/xh_wizrd.h | |
3248 | wx/xrc/xmlres.h | |
3249 | </set> | |
3250 | ||
3251 | ||
3252 | ||
3253 | ||
a69544bf VS |
3254 | <!-- ====================================================================== --> |
3255 | <!-- XML classes --> | |
3256 | <!-- ====================================================================== --> | |
3257 | ||
22d2b5bf | 3258 | <set var="XML_SRC" hints="files"> |
a69544bf | 3259 | src/xml/xml.cpp |
e2412466 | 3260 | src/common/xtixml.cpp <!-- FIXME - temporary solution --> |
a69544bf | 3261 | </set> |
22d2b5bf | 3262 | <set var="XML_HDR" hints="files"> |
a69544bf | 3263 | wx/xml/xml.h |
e2412466 | 3264 | wx/xtixml.h <!-- FIXME - temporary solution --> |
a69544bf VS |
3265 | </set> |
3266 | ||
3267 | ||
4d264332 VS |
3268 | <!-- ====================================================================== --> |
3269 | <!-- OpenGL canvas --> | |
3270 | <!-- ====================================================================== --> | |
3271 | ||
dc3065a5 VZ |
3272 | <set var="OPENGL_SRC_PLATFORM" hints="files"> |
3273 | src/common/glcmn.cpp | |
56bb4a5e | 3274 | <if cond="TOOLKIT=='MAC'">src/mac/carbon/glcanvas.cpp</if> |
bd2af428 | 3275 | <if cond="TOOLKIT=='COCOA'">src/cocoa/glcanvas.mm</if> |
498ace9e VZ |
3276 | <if cond="TOOLKIT=='GTK' and TOOLKIT_VERSION=='2'"> |
3277 | src/gtk/glcanvas.cpp | |
3278 | src/unix/glx11.cpp | |
3279 | </if> | |
3280 | <if cond="TOOLKIT=='GTK' and TOOLKIT_VERSION==''"> | |
3281 | src/gtk1/glcanvas.cpp | |
3282 | src/unix/glx11.cpp | |
3283 | </if> | |
4d264332 | 3284 | <if cond="TOOLKIT=='MSW'">src/msw/glcanvas.cpp</if> |
af594eca | 3285 | <if cond="TOOLKIT=='WINCE'">src/msw/glcanvas.cpp</if> |
498ace9e VZ |
3286 | <if cond="TOOLKIT=='MOTIF'">src/x11/glcanvas.cpp src/unix/glx11.cpp</if> |
3287 | <if cond="TOOLKIT=='X11'">src/x11/glcanvas.cpp src/unix/glx11.cpp</if> | |
96c1699d | 3288 | <if cond="TOOLKIT=='PM'">src/os2/glcanvas.cpp</if> |
4d264332 VS |
3289 | </set> |
3290 | ||
dc3065a5 VZ |
3291 | <set var="OPENGL_SRC" hints="files"> |
3292 | src/common/glcmn.cpp | |
3293 | $(OPENGL_SRC_PLATFORM) | |
3294 | </set> | |
3295 | ||
3296 | <set var="OPENGL_HDR_PLATFORM" hints="files"> | |
3297 | <if cond="TOOLKIT=='MAC'">wx/mac/glcanvas.h wx/mac/carbon/glcanvas.h</if> | |
bd2af428 | 3298 | <if cond="TOOLKIT=='COCOA'">wx/cocoa/glcanvas.h</if> |
498ace9e VZ |
3299 | <if cond="TOOLKIT=='GTK' and TOOLKIT_VERSION=='2'"> |
3300 | wx/gtk/glcanvas.h | |
3301 | wx/unix/glx11.h | |
3302 | </if> | |
3303 | <if cond="TOOLKIT=='GTK' and TOOLKIT_VERSION==''"> | |
3304 | wx/gtk1/glcanvas.h | |
3305 | wx/unix/glx11.h | |
3306 | </if> | |
4d264332 | 3307 | <if cond="TOOLKIT=='MSW'">wx/msw/glcanvas.h</if> |
af594eca | 3308 | <if cond="TOOLKIT=='WINCE'">wx/msw/glcanvas.h</if> |
498ace9e VZ |
3309 | <if cond="TOOLKIT=='MOTIF'">wx/x11/glcanvas.h wx/unix/glx11.h</if> |
3310 | <if cond="TOOLKIT=='X11'">wx/x11/glcanvas.h wx/unix/glx11.h</if> | |
4d264332 VS |
3311 | </set> |
3312 | ||
dc3065a5 VZ |
3313 | <set var="OPENGL_HDR" hints="files"> |
3314 | wx/glcanvas.h | |
3315 | $(OPENGL_HDR_PLATFORM) | |
3316 | </set> | |
ddf98968 VS |
3317 | |
3318 | ||
c79241a2 VS |
3319 | <!-- ====================================================================== --> |
3320 | <!-- Misc plugin sources: --> | |
3321 | <!-- ====================================================================== --> | |
3322 | ||
3323 | <set var="UNIX_SOUND_SRC_SDL" hints="files"> | |
3324 | src/unix/sound_sdl.cpp | |
3325 | </set> | |
bb41dcbe | 3326 | |
50acee04 JS |
3327 | <!-- ====================================================================== --> |
3328 | <!-- wxAUI --> | |
3329 | <!-- ====================================================================== --> | |
3330 | ||
3331 | <set var="AUI_SRC" hints="files"> | |
3332 | src/aui/framemanager.cpp | |
3333 | src/aui/dockart.cpp | |
3334 | src/aui/floatpane.cpp | |
96fc1039 BW |
3335 | src/aui/auibook.cpp |
3336 | src/aui/tabmdi.cpp | |
50acee04 JS |
3337 | </set> |
3338 | <set var="AUI_HDR" hints="files"> | |
3339 | wx/aui/framemanager.h | |
3340 | wx/aui/dockart.h | |
3341 | wx/aui/floatpane.h | |
96fc1039 BW |
3342 | wx/aui/auibook.h |
3343 | wx/aui/tabmdi.h | |
50acee04 JS |
3344 | wx/aui/aui.h |
3345 | </set> | |
3346 | ||
3b2cb431 JS |
3347 | <!-- ====================================================================== --> |
3348 | <!-- wxRichTextCtrl --> | |
3349 | <!-- ====================================================================== --> | |
3350 | ||
3351 | <set var="RICHTEXT_SRC" hints="files"> | |
3352 | src/richtext/richtextctrl.cpp | |
3353 | src/richtext/richtextbuffer.cpp | |
3354 | src/richtext/richtextstyles.cpp | |
3355 | src/richtext/richtextxml.cpp | |
3356 | src/richtext/richtexthtml.cpp | |
cd5dc5e6 JS |
3357 | src/richtext/richtextformatdlg.cpp |
3358 | src/richtext/richtextsymboldlg.cpp | |
36751d97 | 3359 | src/richtext/richtextstyledlg.cpp |
63984887 | 3360 | src/richtext/richtextprint.cpp |
3b2cb431 JS |
3361 | </set> |
3362 | <set var="RICHTEXT_HDR" hints="files"> | |
3363 | wx/richtext/richtextctrl.h | |
3364 | wx/richtext/richtextbuffer.h | |
ff202bcb | 3365 | wx/richtext/richtexthtml.h |
3b2cb431 JS |
3366 | wx/richtext/richtextstyles.h |
3367 | wx/richtext/richtextxml.h | |
cd5dc5e6 JS |
3368 | wx/richtext/richtextformatdlg.h |
3369 | wx/richtext/richtextsymboldlg.h | |
36751d97 | 3370 | wx/richtext/richtextstyledlg.h |
63984887 | 3371 | wx/richtext/richtextprint.h |
3b2cb431 JS |
3372 | </set> |
3373 | ||
54429bb3 RD |
3374 | |
3375 | <!-- ====================================================================== --> | |
3376 | <!-- wxSTC --> | |
3377 | <!-- ====================================================================== --> | |
3378 | ||
3379 | <set var="STC_SRC" hints="files"> | |
3380 | src/stc/stc.cpp | |
3381 | src/stc/PlatWX.cpp | |
3382 | src/stc/ScintillaWX.cpp | |
3383 | </set> | |
3384 | ||
3385 | <set var="STC_HDR" hints="files"> | |
3386 | wx/stc/stc.h | |
3387 | </set> | |
3388 | ||
ddf98968 VS |
3389 | <!-- ====================================================================== --> |
3390 | <!-- Define sources for specific libraries: --> | |
3391 | <!-- ====================================================================== --> | |
3392 | ||
7c4728f6 VS |
3393 | <!-- wxBase files: --> |
3394 | ||
4aa75221 | 3395 | <!-- Nested if would be nicer, but this works --> |
7b860930 | 3396 | <!-- These are the files for PLATFORM_MACOSX --> |
22d2b5bf | 3397 | <set var="BASE_MACOSX_SRC" hints="files"> |
df3c72ad | 3398 | <if cond="TOOLKIT=='MAC'">$(BASE_MACOSX_WXMAC_SRC)</if> |
ad07ce2b DE |
3399 | <if cond="TOOLKIT=='COCOA'">$(BASE_MACOSX_NOTWXMAC_SRC)</if> |
3400 | <if cond="TOOLKIT=='GTK'">$(BASE_MACOSX_NOTWXMAC_SRC)</if> | |
3401 | <if cond="TOOLKIT=='X11'">$(BASE_MACOSX_NOTWXMAC_SRC)</if> | |
3402 | <if cond="TOOLKIT=='MOTIF'">$(BASE_MACOSX_NOTWXMAC_SRC)</if> | |
4aa75221 | 3403 | <!-- FIXME: TOOLKIT!='MAC' is what we really want --> |
9aaf1192 | 3404 | |
a30f955f VS |
3405 | <!-- FIXME: a hack because there are two wxBase versions on |
3406 | Mac; once fixed, this would no longer be needed --> | |
ad07ce2b | 3407 | <if cond="TOOLKIT==''">$(BASE_MACOSX_NOTWXMAC_SRC)</if> |
4aa75221 | 3408 | </set> |
22d2b5bf | 3409 | <set var="BASE_PLATFORM_SRC" hints="files"> |
ddf98968 | 3410 | <if cond="PLATFORM_UNIX=='1'">$(BASE_UNIX_SRC)</if> |
7b44c670 | 3411 | <if cond="PLATFORM_WIN32=='1'">$(BASE_WIN32_SRC) $(BASE_WINCE_SRC)</if> |
4aa75221 | 3412 | <if cond="PLATFORM_MACOSX=='1'">$(BASE_MACOSX_SRC)</if> |
7b860930 | 3413 | <if cond="PLATFORM_MACOS=='1'">$(BASE_MAC_SRC) $(BASE_MAC_CARBONLIB_SRC)</if> |
96c1699d | 3414 | <if cond="PLATFORM_OS2=='1'">$(BASE_OS2_SRC)</if> |
a986efd0 | 3415 | <if cond="PLATFORM_PALMOS=='1'">$(BASE_PALMOS_SRC)</if> |
83d8eb47 | 3416 | <if cond="PLATFORM_MSDOS=='1'">$(BASE_MSDOS_SRC)</if> |
ddf98968 | 3417 | </set> |
8b509749 | 3418 | <set var="BASE_AND_GUI_TOOLKIT_SRC" hints="files"> |
ab48b97b | 3419 | <if cond="TOOLKIT=='MAC'">$(BASE_AND_GUI_MAC_SRC)</if> |
8b509749 | 3420 | </set> |
22d2b5bf | 3421 | <set var="BASE_AND_GUI_PLATFORM_SRC" hints="files"> |
e86e1522 | 3422 | <if cond="PLATFORM_UNIX=='1'">$(BASE_AND_GUI_UNIX_SRC)</if> |
e86e1522 | 3423 | <if cond="PLATFORM_WIN32=='1'">$(BASE_AND_GUI_WIN32_SRC)</if> |
a30f955f | 3424 | <if cond="PLATFORM_MACOSX=='1'">$(BASE_AND_GUI_UNIX_SRC)</if> |
a986efd0 | 3425 | <if cond="PLATFORM_PALMOS=='1'">$(BASE_AND_GUI_PALMOS_SRC)</if> |
83d8eb47 | 3426 | <if cond="PLATFORM_MSDOS=='1'">$(BASE_AND_GUI_MSDOS_SRC)</if> |
7b860930 DE |
3427 | <!-- At the moment, BASE_AND_GUI_TOOLKIT_SRC handles this --> |
3428 | <!-- if cond="PLATFORM_MACOS=='1'">$(BASE_AND_GUI_MAC_SRC)</if --> | |
e86e1522 | 3429 | </set> |
18647d11 DE |
3430 | |
3431 | <!-- Nested if would be nicer, but this works --> | |
3432 | <!-- These are the files for PLATFORM_MACOSX --> | |
3433 | <set var="BASE_MACOSX_HDR" hints="files"> | |
3434 | <if cond="TOOLKIT=='MAC'">$(BASE_MACOSX_WXMAC_HDR)</if> | |
3435 | <if cond="TOOLKIT=='COCOA'">$(BASE_MACOSX_NOTWXMAC_HDR)</if> | |
3436 | <if cond="TOOLKIT=='GTK'">$(BASE_MACOSX_NOTWXMAC_HDR)</if> | |
3437 | <if cond="TOOLKIT=='X11'">$(BASE_MACOSX_NOTWXMAC_HDR)</if> | |
3438 | <if cond="TOOLKIT=='MOTIF'">$(BASE_MACOSX_NOTWXMAC_HDR)</if> | |
3439 | <!-- FIXME: TOOLKIT!='MAC' is what we really want --> | |
3440 | ||
3441 | <!-- FIXME: a hack because there are two wxBase versions on | |
3442 | Mac; once fixed, this would no longer be needed --> | |
3443 | <if cond="TOOLKIT==''">$(BASE_MACOSX_NOTWXMAC_HDR)</if> | |
3444 | </set> | |
22d2b5bf | 3445 | <set var="BASE_PLATFORM_HDR" hints="files"> |
45a74fec MW |
3446 | <if cond="PLATFORM_UNIX=='1'">$(BASE_UNIX_HDR)</if> |
3447 | <if cond="PLATFORM_WIN32=='1'">$(BASE_WIN32_HDR) $(BASE_WINCE_HDR)</if> | |
18647d11 | 3448 | <if cond="PLATFORM_MACOSX=='1'">$(BASE_MACOSX_HDR)</if> |
a986efd0 | 3449 | <if cond="PLATFORM_PALMOS=='1'">$(BASE_PALMOS_HDR)</if> |
83d8eb47 | 3450 | <if cond="PLATFORM_MSDOS=='1'">$(BASE_MSDOS_HDR)</if> |
7e04a500 | 3451 | <if cond="PLATFORM_OS2=='1'">$(BASE_OS2_HDR)</if> |
ddf98968 | 3452 | </set> |
88f23fdd | 3453 | |
22d2b5bf | 3454 | <set var="BASE_SRC" hints="files"> |
ddf98968 VS |
3455 | $(BASE_CMN_SRC) $(BASE_PLATFORM_SRC) |
3456 | </set> | |
22d2b5bf | 3457 | <set var="BASE_AND_GUI_SRC" hints="files"> |
8b509749 VS |
3458 | $(BASE_AND_GUI_CMN_SRC) |
3459 | $(BASE_AND_GUI_PLATFORM_SRC) $(BASE_AND_GUI_TOOLKIT_SRC) | |
e86e1522 | 3460 | </set> |
21041c70 VS |
3461 | |
3462 | ||
7c4728f6 | 3463 | <!-- wxNet files: --> |
7c4728f6 VS |
3464 | <set var="NET_PLATFORM_SRC" hints="files"> |
3465 | <if cond="PLATFORM_UNIX=='1'">$(NET_UNIX_SRC)</if> | |
af594eca | 3466 | <if cond="PLATFORM_WIN32=='1'">$(NET_WIN32_SRC) $(NET_WINCE_SRC)</if> |
a30f955f | 3467 | <if cond="PLATFORM_MACOSX=='1'">$(NET_UNIX_SRC)</if> |
7b860930 | 3468 | <if cond="PLATFORM_MACOS=='1'">$(NET_MAC_CARBONLIB_SRC)</if> |
96c1699d | 3469 | <if cond="PLATFORM_OS2=='1'">$(NET_OS2_SRC)</if> |
7c4728f6 VS |
3470 | </set> |
3471 | <set var="NET_PLATFORM_HDR" hints="files"> | |
45a74fec MW |
3472 | <if cond="PLATFORM_UNIX=='1'">$(NET_UNIX_HDR)</if> |
3473 | <if cond="PLATFORM_WIN32=='1'">$(NET_WIN32_HDR) $(NET_WINCE_HDR)</if> | |
96c1699d | 3474 | <if cond="PLATFORM_OS2=='1'">$(NET_OS2_HDR)</if> |
a30f955f | 3475 | <if cond="PLATFORM_MACOSX=='1'">$(NET_UNIX_HDR)</if> |
7b860930 | 3476 | <if cond="PLATFORM_MACOS=='1'">$(NET_MAC_CARBONLIB_HDR)</if> |
7c4728f6 VS |
3477 | </set> |
3478 | ||
3479 | <set var="NET_SRC" hints="files"> | |
3480 | $(NET_CMN_SRC) $(NET_PLATFORM_SRC) | |
3481 | </set> | |
88f23fdd | 3482 | |
7c4728f6 VS |
3483 | |
3484 | <!-- GUI sources: --> | |
21041c70 | 3485 | |
22d2b5bf | 3486 | <set var="LOWLEVEL_SRC" hints="files"> |
601f1cfb MW |
3487 | <if cond="TOOLKIT=='GTK' and TOOLKIT_VERSION=='2'">$(GTK_LOWLEVEL_SRC)</if> |
3488 | <if cond="TOOLKIT=='GTK' and TOOLKIT_VERSION==''">$(GTK1_LOWLEVEL_SRC)</if> | |
ddf98968 | 3489 | <if cond="TOOLKIT=='MOTIF'">$(MOTIF_LOWLEVEL_SRC)</if> |
ca95ed8e | 3490 | <if cond="TOOLKIT=='MSW'">$(MSW_LOWLEVEL_SRC) $(MSW_DESKTOP_LOWLEVEL_SRC)</if> |
af594eca | 3491 | <if cond="TOOLKIT=='WINCE'">$(MSW_LOWLEVEL_SRC)</if> |
ddf98968 VS |
3492 | <if cond="TOOLKIT=='MAC'">$(MAC_LOWLEVEL_SRC)</if> |
3493 | <if cond="TOOLKIT=='COCOA'">$(COCOA_LOWLEVEL_SRC)</if> | |
96c1699d | 3494 | <if cond="TOOLKIT=='PM'">$(OS2_LOWLEVEL_SRC)</if> |
ddf98968 VS |
3495 | <if cond="TOOLKIT=='X11'">$(X11_LOWLEVEL_SRC)</if> |
3496 | <if cond="TOOLKIT=='MGL'">$(MGL_LOWLEVEL_SRC)</if> | |
b3c86150 | 3497 | <if cond="TOOLKIT=='DFB'">$(DFB_LOWLEVEL_SRC)</if> |
ddf98968 | 3498 | </set> |
22d2b5bf | 3499 | <set var="LOWLEVEL_HDR" hints="files"> |
601f1cfb MW |
3500 | <if cond="TOOLKIT=='GTK' and TOOLKIT_VERSION=='2'">$(GTK_LOWLEVEL_HDR)</if> |
3501 | <if cond="TOOLKIT=='GTK' and TOOLKIT_VERSION==''">$(GTK1_LOWLEVEL_HDR)</if> | |
ddf98968 | 3502 | <if cond="TOOLKIT=='MOTIF'">$(MOTIF_LOWLEVEL_HDR)</if> |
23e42d9d | 3503 | <if cond="TOOLKIT=='MSW'">$(MSW_LOWLEVEL_HDR) $(MSW_DESKTOP_LOWLEVEL_HDR)</if> |
af594eca | 3504 | <if cond="TOOLKIT=='WINCE'">$(MSW_LOWLEVEL_HDR)</if> |
ddf98968 VS |
3505 | <if cond="TOOLKIT=='MAC'">$(MAC_LOWLEVEL_HDR)</if> |
3506 | <if cond="TOOLKIT=='COCOA'">$(COCOA_LOWLEVEL_HDR)</if> | |
96c1699d | 3507 | <if cond="TOOLKIT=='PM'">$(OS2_LOWLEVEL_HDR)</if> |
ddf98968 VS |
3508 | <if cond="TOOLKIT=='X11'">$(X11_LOWLEVEL_HDR)</if> |
3509 | <if cond="TOOLKIT=='MGL'">$(MGL_LOWLEVEL_HDR)</if> | |
b3c86150 | 3510 | <if cond="TOOLKIT=='DFB'">$(DFB_LOWLEVEL_HDR)</if> |
ddf98968 | 3511 | </set> |
21041c70 | 3512 | |
22d2b5bf | 3513 | <set var="GUI_SRC" hints="files"> |
601f1cfb MW |
3514 | <if cond="TOOLKIT=='GTK' and TOOLKIT_VERSION=='2'">$(GTK_SRC)</if> |
3515 | <if cond="TOOLKIT=='GTK' and TOOLKIT_VERSION==''">$(GTK1_SRC)</if> | |
ddf98968 | 3516 | <if cond="TOOLKIT=='MOTIF'">$(MOTIF_SRC)</if> |
ca95ed8e | 3517 | <if cond="TOOLKIT=='MSW'">$(MSW_SRC) $(MSW_DESKTOP_SRC)</if> |
af594eca | 3518 | <if cond="TOOLKIT=='WINCE'">$(MSW_SRC) $(WINCE_SRC)</if> |
0334f97f | 3519 | <if cond="TOOLKIT=='MAC'">$(MAC_SRC) $(MAC_OSX_SRC)</if> |
ddf98968 | 3520 | <if cond="TOOLKIT=='COCOA'">$(COCOA_SRC)</if> |
96c1699d | 3521 | <if cond="TOOLKIT=='PM'">$(OS2_SRC)</if> |
ddf98968 | 3522 | </set> |
22d2b5bf | 3523 | <set var="GUI_HDR" hints="files"> |
601f1cfb MW |
3524 | <if cond="TOOLKIT=='GTK' and TOOLKIT_VERSION=='2'">$(GTK_HDR)</if> |
3525 | <if cond="TOOLKIT=='GTK' and TOOLKIT_VERSION==''">$(GTK1_HDR)</if> | |
ddf98968 | 3526 | <if cond="TOOLKIT=='MOTIF'">$(MOTIF_HDR)</if> |
ca95ed8e | 3527 | <if cond="TOOLKIT=='MSW'">$(MSW_HDR) $(MSW_DESKTOP_HDR)</if> |
af594eca | 3528 | <if cond="TOOLKIT=='WINCE'">$(MSW_HDR) $(WINCE_HDR)</if> |
23ffcdc4 | 3529 | <if cond="TOOLKIT=='MAC'">$(MAC_CMN_HDR) $(MAC_HDR)</if> |
ddf98968 | 3530 | <if cond="TOOLKIT=='COCOA'">$(COCOA_HDR)</if> |
96c1699d | 3531 | <if cond="TOOLKIT=='PM'">$(OS2_HDR)</if> |
ddf98968 VS |
3532 | </set> |
3533 | ||
22d2b5bf | 3534 | <set var="CORE_SRC" hints="files"> |
ddf98968 | 3535 | <if cond="USE_GUI=='1' and WXUNIV=='0'"> |
e86e1522 | 3536 | $(LOWLEVEL_SRC) $(GUI_SRC) $(GUI_CMN_SRC) |
ddf98968 VS |
3537 | </if> |
3538 | <if cond="USE_GUI=='1' and WXUNIV=='1'"> | |
e86e1522 | 3539 | $(LOWLEVEL_SRC) $(UNIV_SRC) $(UNIV_THEMES_SRC) $(GUI_CMN_SRC) |
ddf98968 VS |
3540 | </if> |
3541 | </set> | |
21041c70 | 3542 | |
131f235d VS |
3543 | <!-- wxAdvanced files: --> |
3544 | <set var="ADVANCED_PLATFORM_SRC" hints="files"> | |
ca95ed8e | 3545 | <if cond="TOOLKIT=='MSW'">$(ADVANCED_MSW_SRC) $(ADVANCED_MSW_DESKTOP_SRC)</if> |
af594eca | 3546 | <if cond="TOOLKIT=='WINCE'">$(ADVANCED_MSW_SRC)</if> |
131f235d | 3547 | <if cond="TOOLKIT=='MAC'">$(ADVANCED_MAC_SRC)</if> |
f1d9e1ec | 3548 | <if cond="TOOLKIT=='COCOA'">$(ADVANCED_COCOA_SRC)</if> |
978c6e41 | 3549 | <if cond="TOOLKIT=='MOTIF'">$(ADVANCED_UNIX_SRC) $(ADVANCED_MOTIF_SRC)</if> |
601f1cfb MW |
3550 | <if cond="TOOLKIT=='GTK' and TOOLKIT_VERSION=='2'">$(ADVANCED_UNIX_SRC) $(ADVANCED_GTK_SRC)</if> |
3551 | <if cond="TOOLKIT=='GTK' and TOOLKIT_VERSION==''">$(ADVANCED_UNIX_SRC) $(ADVANCED_GTK1_SRC)</if> | |
38073aff | 3552 | <if cond="TOOLKIT=='X11'">$(ADVANCED_UNIX_SRC)</if> |
ec80cb6e | 3553 | <if cond="TOOLKIT=='MGL' and PLATFORM_UNIX=='1'">$(ADVANCED_UNIX_SRC)</if> |
96c1699d | 3554 | <if cond="TOOLKIT=='PM'">$(ADVANCED_OS2_SRC)</if> |
131f235d VS |
3555 | </set> |
3556 | <set var="ADVANCED_PLATFORM_HDR" hints="files"> | |
ca95ed8e | 3557 | <if cond="TOOLKIT=='MSW'">$(ADVANCED_MSW_HDR) $(ADVANCED_MSW_DESKTOP_HDR)</if> |
af594eca | 3558 | <if cond="TOOLKIT=='WINCE'">$(ADVANCED_MSW_HDR)</if> |
131f235d | 3559 | <if cond="TOOLKIT=='MAC'">$(ADVANCED_MAC_HDR)</if> |
f1d9e1ec | 3560 | <if cond="TOOLKIT=='COCOA'">$(ADVANCED_COCOA_HDR)</if> |
978c6e41 | 3561 | <if cond="TOOLKIT=='MOTIF'">$(ADVANCED_UNIX_HDR) $(ADVANCED_MOTIF_HDR)</if> |
554db692 PC |
3562 | <if cond="TOOLKIT=='GTK' and TOOLKIT_VERSION=='2'">$(ADVANCED_UNIX_HDR) $(ADVANCED_GTK_HDR)</if> |
3563 | <if cond="TOOLKIT=='GTK' and TOOLKIT_VERSION==''">$(ADVANCED_UNIX_HDR) $(ADVANCED_GTK1_HDR)</if> | |
38073aff | 3564 | <if cond="TOOLKIT=='X11'">$(ADVANCED_UNIX_HDR)</if> |
ec80cb6e | 3565 | <if cond="TOOLKIT=='MGL' and PLATFORM_UNIX=='1'">$(ADVANCED_UNIX_HDR)</if> |
96c1699d | 3566 | <if cond="TOOLKIT=='PM'">$(ADVANCED_OS2_HDR)</if> |
131f235d | 3567 | </set> |
ca95ed8e VZ |
3568 | |
3569 | <!-- wxAdv files not used by wxUniv --> | |
3570 | <set var="ADVANCED_PLATFORM_NATIVE_SRC" hints="files"> | |
3746e527 | 3571 | <if cond="TOOLKIT=='GTK' and TOOLKIT_VERSION=='2'">$(ADVANCED_GTK_NATIVE_SRC)</if> |
ca95ed8e | 3572 | <if cond="TOOLKIT=='MSW'">$(ADVANCED_MSW_NATIVE_SRC)</if> |
f1cf7255 | 3573 | <if cond="TOOLKIT=='WINCE'">$(ADVANCED_MSW_NATIVE_SRC)</if> |
ca95ed8e VZ |
3574 | </set> |
3575 | <set var="ADVANCED_PLATFORM_NATIVE_HDR" hints="files"> | |
3746e527 | 3576 | <if cond="TOOLKIT=='GTK' and TOOLKIT_VERSION=='2'">$(ADVANCED_GTK_NATIVE_HDR)</if> |
ca95ed8e | 3577 | <if cond="TOOLKIT=='MSW'">$(ADVANCED_MSW_NATIVE_HDR)</if> |
f1cf7255 | 3578 | <if cond="TOOLKIT=='WINCE'">$(ADVANCED_MSW_NATIVE_HDR)</if> |
ca95ed8e VZ |
3579 | </set> |
3580 | ||
3581 | <set var="ADVANCED_SRC" hints="files"> | |
3582 | <if cond="WXUNIV=='0'">$(ADVANCED_CMN_SRC) $(ADVANCED_PLATFORM_SRC) $(ADVANCED_PLATFORM_NATIVE_SRC)</if> | |
aa824453 | 3583 | <if cond="WXUNIV=='1'">$(ADVANCED_CMN_SRC) $(ADVANCED_PLATFORM_SRC) $(ADVANCED_UNIV_SRC)</if> |
ca95ed8e VZ |
3584 | </set> |
3585 | <set var="ADVANCED_HDR" hints="files"> | |
79d8e80f | 3586 | <if cond="WXUNIV=='0'">$(ADVANCED_CMN_HDR) $(ADVANCED_PLATFORM_HDR) $(ADVANCED_PLATFORM_NATIVE_HDR)</if> |
aa824453 | 3587 | <if cond="WXUNIV=='1'">$(ADVANCED_CMN_HDR) $(ADVANCED_PLATFORM_HDR) $(ADVANCED_UNIV_HDR)</if> |
ca95ed8e | 3588 | </set> |
131f235d | 3589 | |
2ae3b602 RN |
3590 | <!-- wxMedia files: --> |
3591 | <set var="MEDIA_PLATFORM_SRC" hints="files"> | |
ca95ed8e | 3592 | <if cond="TOOLKIT=='MSW'">$(MEDIA_MSW_SRC) $(MEDIA_MSW_DESKTOP_SRC)</if> |
2ae3b602 RN |
3593 | <if cond="TOOLKIT=='WINCE'">$(MEDIA_MSW_SRC)</if> |
3594 | <if cond="TOOLKIT=='MAC'">$(MEDIA_MAC_SRC)</if> | |
3595 | <if cond="TOOLKIT=='COCOA'">$(MEDIA_COCOA_SRC)</if> | |
3596 | <if cond="TOOLKIT=='MOTIF'">$(MEDIA_UNIX_SRC)</if> | |
3597 | <if cond="TOOLKIT=='GTK'">$(MEDIA_UNIX_SRC) $(MEDIA_GTK_SRC)</if> | |
3598 | <if cond="TOOLKIT=='X11'">$(MEDIA_UNIX_SRC)</if> | |
3599 | <if cond="TOOLKIT=='PM'">$(MEDIA_OS2_SRC)</if> | |
3600 | </set> | |
3601 | <set var="MEDIA_PLATFORM_HDR" hints="files"> | |
ca95ed8e | 3602 | <if cond="TOOLKIT=='MSW'">$(MEDIA_MSW_HDR) $(MEDIA_MSW_DESKTOP_HDR)</if> |
2ae3b602 RN |
3603 | <if cond="TOOLKIT=='WINCE'">$(MEDIA_MSW_HDR)</if> |
3604 | <if cond="TOOLKIT=='MAC'">$(MEDIA_MAC_HDR)</if> | |
3605 | <if cond="TOOLKIT=='COCOA'">$(MEDIA_COCOA_HDR)</if> | |
3606 | <if cond="TOOLKIT=='MOTIF'">$(MEDIA_UNIX_HDR)</if> | |
3607 | <if cond="TOOLKIT=='GTK'">$(MEDIA_UNIX_HDR)</if> | |
3608 | <if cond="TOOLKIT=='X11'">$(MEDIA_UNIX_HDR)</if> | |
3609 | <if cond="TOOLKIT=='PM'">$(MEDIA_OS2_HDR)</if> | |
3610 | </set> | |
3611 | <set var="MEDIA_SRC">$(MEDIA_CMN_SRC) $(MEDIA_PLATFORM_SRC)</set> | |
3612 | <set var="MEDIA_HDR">$(MEDIA_CMN_HDR) $(MEDIA_PLATFORM_HDR)</set> | |
ddf98968 | 3613 | |
4d264332 | 3614 | |
ca58c9bb VS |
3615 | <set var="GUI_CORE_HEADERS" hints="files"> |
3616 | <if cond="USE_GUI=='1' and WXUNIV=='0'">$(GUI_HDR)</if> | |
3617 | <if cond="USE_GUI=='1' and WXUNIV=='1'">$(UNIV_HDR)</if> | |
3618 | </set> | |
3619 | ||
22d2b5bf | 3620 | <set var="ALL_GUI_HEADERS" hints="files"> |
ca58c9bb VS |
3621 | <if cond="USE_GUI=='1'"> |
3622 | $(GUI_CMN_HDR) | |
3623 | $(LOWLEVEL_HDR) | |
3624 | $(GUI_CORE_HEADERS) | |
2ae3b602 | 3625 | $(ADVANCED_HDR) $(MEDIA_HDR) $(HTML_HDR) |
1e6b2edf | 3626 | $(OPENGL_HDR) $(QA_HDR) $(XRC_HDR) $(AUI_HDR) $(RICHTEXT_HDR) |
dc3065a5 | 3627 | $(STC_HDR) |
4d264332 VS |
3628 | </if> |
3629 | </set> | |
21041c70 | 3630 | |
2b5e2b58 | 3631 | <!-- for 'make install', only the headers needed for the installed port --> |
2f5e790c | 3632 | <set var="ALL_BASE_HEADERS" make_var="1" hints="files"> |
ddf98968 | 3633 | $(BASE_CMN_HDR) $(BASE_PLATFORM_HDR) |
7c4728f6 | 3634 | $(NET_CMN_HDR) $(NET_PLATFORM_HDR) |
1e6b2edf | 3635 | $(XML_HDR) |
2f5e790c MW |
3636 | </set> |
3637 | <set var="ALL_HEADERS" make_var="1" hints="files"> | |
3638 | $(ALL_BASE_HEADERS) $(ALL_GUI_HEADERS) | |
7affac1c VS |
3639 | </set> |
3640 | ||
2b5e2b58 MW |
3641 | |
3642 | <!-- used by 'make dist', should include wxBase headers for all ports --> | |
2f5e790c | 3643 | <set var="ALL_PORTS_BASE_HEADERS" make_var="1" hints="files"> |
2b5e2b58 MW |
3644 | $(BASE_CMN_HDR) |
3645 | $(BASE_UNIX_HDR) | |
3646 | $(BASE_WIN32_HDR) $(BASE_WINCE_HDR) | |
3647 | $(BASE_MACOSX_HDR) | |
3648 | $(BASE_PALMOS_HDR) | |
3649 | $(BASE_MSDOS_HDR) | |
3650 | $(NET_CMN_HDR) | |
3651 | $(NET_UNIX_HDR) | |
3652 | $(NET_WIN32_HDR) $(NET_WINCE_HDR) | |
3653 | $(NET_OS2_HDR) | |
3654 | $(NET_UNIX_HDR) | |
3655 | $(NET_MAC_CARBONLIB_HDR) | |
1e6b2edf | 3656 | $(XML_HDR) |
ca58c9bb VS |
3657 | </set> |
3658 | ||
2b5e2b58 | 3659 | <!-- used by 'make dist', should include wxBase sources for all ports --> |
ca58c9bb VS |
3660 | <set var="ALL_BASE_SOURCES" make_var="1" hints="files"> |
3661 | $(BASE_CMN_SRC) | |
af594eca | 3662 | $(BASE_UNIX_SRC) $(BASE_WIN32_SRC) $(BASE_WINCE_SRC) |
a30f955f | 3663 | $(BASE_MAC_SRC) |
ca58c9bb | 3664 | $(BASE_OS2_SRC) |
83d8eb47 | 3665 | $(BASE_MSDOS_SRC) |
3708784b | 3666 | $(BASE_PALMOS_SRC) |
ca58c9bb VS |
3667 | $(BASE_AND_GUI_CMN_SRC) |
3668 | $(BASE_AND_GUI_UNIX_SRC) | |
3669 | $(BASE_AND_GUI_MAC_SRC) | |
ca58c9bb | 3670 | $(BASE_AND_GUI_WIN32_SRC) |
af594eca | 3671 | $(NET_CMN_SRC) $(NET_UNIX_SRC) $(NET_WIN32_SRC) $(NET_WINCE_SRC) |
1e6b2edf | 3672 | $(XML_SRC) |
ddf98968 | 3673 | </set> |
f5e0b4bc WS |
3674 | |
3675 | ||
3676 | ||
c79241a2 VS |
3677 | <!-- ================================================================ --> |
3678 | <!-- Define where plugins sources go if USE_PLUGINS=0 --> | |
3679 | <!-- ================================================================ --> | |
3680 | ||
3681 | <!-- wxAdv sources --> | |
3682 | <set var="PLUGIN_ADV_SRC"> | |
3683 | <if cond="FORMAT=='autoconf' and PLATFORM_UNIX=='1' and USE_PLUGINS=='0'"> | |
3684 | $(UNIX_SOUND_SRC_SDL) | |
3685 | </if> | |
3686 | </set> | |
f5e0b4bc | 3687 | |
c79241a2 | 3688 | <set var="PLUGIN_MONOLIB_SRC">$(PLUGIN_ADV_SRC)</set> |
f5e0b4bc | 3689 | |
ddf98968 | 3690 | </makefile> |