]>
Commit | Line | Data |
---|---|---|
34138703 JS |
1 | #ifndef _WX_TREECTRL_H_BASE_ |
2 | #define _WX_TREECTRL_H_BASE_ | |
c801d85f | 3 | |
484523cf | 4 | #include "wx/treebase.h" |
1044a386 | 5 | |
c193b707 VZ |
6 | // ---------------------------------------------------------------------------- |
7 | // include the platform-dependent wxTreeCtrl class | |
8 | // ---------------------------------------------------------------------------- | |
9 | ||
3e6e2754 JS |
10 | #if defined(__WXUNIVERSAL__) |
11 | #include "wx/generic/treectlg.h" | |
12 | #elif defined(__WXMSW__) | |
c193b707 | 13 | #ifdef __WIN16__ |
484523cf | 14 | #include "wx/generic/treectlg.h" |
c193b707 VZ |
15 | #else |
16 | #include "wx/msw/treectrl.h" | |
17 | #endif | |
2049ba38 | 18 | #elif defined(__WXMOTIF__) |
484523cf | 19 | #include "wx/generic/treectlg.h" |
2049ba38 | 20 | #elif defined(__WXGTK__) |
484523cf | 21 | #include "wx/generic/treectlg.h" |
34138703 | 22 | #elif defined(__WXMAC__) |
484523cf | 23 | #include "wx/generic/treectlg.h" |
1777b9bb | 24 | #elif defined(__WXPM__) |
484523cf | 25 | #include "wx/generic/treectlg.h" |
34138703 | 26 | #elif defined(__WXSTUBS__) |
484523cf | 27 | #include "wx/generic/treectlg.h" |
c801d85f KB |
28 | #endif |
29 | ||
233058c7 | 30 | /* |
484523cf JS |
31 | #if !defined(__WXMSW__) |
32 | #define wxTreeCtrl wxGenericTreeCtrl | |
33 | #define sm_classwxTreeCtrl sm_classwxGenericTreeCtrl | |
34 | #endif | |
233058c7 | 35 | */ |
aad0fe4b | 36 | |
618a5e38 | 37 | #endif // _WX_TREECTRL_H_BASE_ |
aad0fe4b | 38 |