1998-08-14 20:23:28 -04:00
|
|
|
#ifndef _WX_TREECTRL_H_BASE_
|
|
|
|
#define _WX_TREECTRL_H_BASE_
|
1998-05-20 10:01:55 -04:00
|
|
|
|
2000-08-04 09:59:45 -04:00
|
|
|
#include "wx/treebase.h"
|
1999-09-05 11:14:50 -04:00
|
|
|
|
1999-07-23 20:14:54 -04:00
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// include the platform-dependent wxTreeCtrl class
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
2001-07-04 06:08:44 -04:00
|
|
|
#if defined(__WXUNIVERSAL__)
|
|
|
|
#include "wx/generic/treectlg.h"
|
|
|
|
#elif defined(__WXMSW__)
|
1999-07-23 20:14:54 -04:00
|
|
|
#ifdef __WIN16__
|
2000-08-04 09:59:45 -04:00
|
|
|
#include "wx/generic/treectlg.h"
|
1999-07-23 20:14:54 -04:00
|
|
|
#else
|
|
|
|
#include "wx/msw/treectrl.h"
|
|
|
|
#endif
|
1998-07-10 10:15:17 -04:00
|
|
|
#elif defined(__WXMOTIF__)
|
2000-08-04 09:59:45 -04:00
|
|
|
#include "wx/generic/treectlg.h"
|
1998-07-10 10:15:17 -04:00
|
|
|
#elif defined(__WXGTK__)
|
2000-08-04 09:59:45 -04:00
|
|
|
#include "wx/generic/treectlg.h"
|
1998-08-14 20:23:28 -04:00
|
|
|
#elif defined(__WXMAC__)
|
2000-08-04 09:59:45 -04:00
|
|
|
#include "wx/generic/treectlg.h"
|
1999-07-27 23:38:12 -04:00
|
|
|
#elif defined(__WXPM__)
|
2003-01-24 17:26:04 -05:00
|
|
|
#include "wx/os2/treectrl.h"
|
1998-05-20 10:01:55 -04:00
|
|
|
#endif
|
|
|
|
|
2000-08-04 11:23:28 -04:00
|
|
|
/*
|
2000-08-04 09:59:45 -04:00
|
|
|
#if !defined(__WXMSW__)
|
|
|
|
#define wxTreeCtrl wxGenericTreeCtrl
|
|
|
|
#define sm_classwxTreeCtrl sm_classwxGenericTreeCtrl
|
|
|
|
#endif
|
2000-08-04 11:23:28 -04:00
|
|
|
*/
|
1999-10-13 13:01:06 -04:00
|
|
|
|
2001-08-18 09:09:26 -04:00
|
|
|
#endif // _WX_TREECTRL_H_BASE_
|
1999-10-13 13:01:06 -04:00
|
|
|
|