]>
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" | |
4055ed82 | 12 | #elif defined(__WXPALMOS__) |
ffecfa5a | 13 | #include "wx/palmos/treectrl.h" |
3e6e2754 | 14 | #elif defined(__WXMSW__) |
c193b707 | 15 | #include "wx/msw/treectrl.h" |
2049ba38 | 16 | #elif defined(__WXMOTIF__) |
484523cf | 17 | #include "wx/generic/treectlg.h" |
2049ba38 | 18 | #elif defined(__WXGTK__) |
484523cf | 19 | #include "wx/generic/treectlg.h" |
34138703 | 20 | #elif defined(__WXMAC__) |
484523cf | 21 | #include "wx/generic/treectlg.h" |
8d0eaedd DE |
22 | #elif defined(__WXCOCOA__) |
23 | #include "wx/generic/treectlg.h" | |
1777b9bb | 24 | #elif defined(__WXPM__) |
dd133a20 | 25 | #include "wx/generic/treectlg.h" |
c801d85f KB |
26 | #endif |
27 | ||
233058c7 | 28 | /* |
484523cf JS |
29 | #if !defined(__WXMSW__) |
30 | #define wxTreeCtrl wxGenericTreeCtrl | |
484523cf | 31 | #endif |
233058c7 | 32 | */ |
aad0fe4b | 33 | |
618a5e38 | 34 | #endif // _WX_TREECTRL_H_BASE_ |
aad0fe4b | 35 |