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