]>
Commit | Line | Data |
---|---|---|
4a3bdee6 JS |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: wx/deprecated/setup.h | |
3 | // Purpose: Configuration for deprecated features of the library | |
4 | // Author: Julian Smart | |
5 | // Modified by: | |
6 | // Created: 2003-03-30 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) Julian Smart | |
9 | // Licence: wxWindows licence | |
10 | ///////////////////////////////////////////////////////////////////////////// | |
11 | ||
12 | #ifndef _WX_DEPRECATED_SETUP_H_ | |
13 | #define _WX_DEPRECATED_SETUP_H_ | |
14 | ||
15 | // wxUSE_TIMEDATE enables compilation of the old wxDate and wxTime classes (not | |
16 | // the same as wxDateTime!). These classes are obsolete and shouldn't be used | |
17 | // in new code | |
18 | // | |
19 | // Default is 0 | |
20 | // | |
21 | // Recommended setting: 0 unless you have legacy code which uses these classes | |
c5a2f274 JJ |
22 | #ifdef wxUSE_TIMEDATE |
23 | #undef wxUSE_TIMEDATE | |
24 | #endif | |
25 | ||
4a3bdee6 JS |
26 | #define wxUSE_TIMEDATE 0 |
27 | ||
28 | // wxProperty[Value/Form/List] classes, used by Dialog Editor | |
29 | #define wxUSE_PROPSHEET 1 | |
30 | ||
31 | // wxTreeLayout class | |
32 | #define wxUSE_TREELAYOUT 1 | |
33 | ||
34 | // use wxExpr (a.k.a. PrologIO) | |
35 | #define wxUSE_PROLOGIO 1 | |
36 | ||
37 | // Use .wxr resource mechanism (requires PrologIO library) | |
c5a2f274 JJ |
38 | #ifdef wxUSE_WX_RESOURCES |
39 | #undef wxUSE_WX_RESOURCES | |
40 | #endif | |
4a3bdee6 JS |
41 | #define wxUSE_WX_RESOURCES 1 |
42 | ||
43 | #endif | |
44 | // _WX_DEPRECATED_SETUP_H_ |