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