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