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