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