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