/////////////////////////////////////////////////////////////////////////////
-// Name: treebase.h
+// Name: wx/treebase.h
// Purpose: wxTreeCtrl base classes and types
// Author: Julian Smart et al
// Modified by:
#include "wx/event.h"
#include "wx/dynarray.h"
+#if WXWIN_COMPATIBILITY_2_6
+
// flags for deprecated `Expand(int action)', will be removed in next versions
enum
{
wxTREE_EXPAND_TOGGLE
};
+#endif // WXWIN_COMPATIBILITY_2_6
+
// ----------------------------------------------------------------------------
// wxTreeItemId identifies an element of the tree. In this implementation, it's
// just a trivial wrapper around Win32 HTREEITEM or a pointer to some private
#define wxTR_DEFAULT_STYLE (wxTR_HAS_BUTTONS | wxTR_LINES_AT_ROOT)
#endif
+#if WXWIN_COMPATIBILITY_2_6
// deprecated, don't use
#define wxTR_MAC_BUTTONS 0
#define wxTR_AQUA_BUTTONS 0
+#endif // WXWIN_COMPATIBILITY_2_6
// values for the `flags' parameter of wxTreeCtrl::HitTest() which determine
wxTREE_HITTEST_ONITEMLABEL;
// tree ctrl default name
-extern WXDLLEXPORT_DATA(const wxChar*) wxTreeCtrlNameStr;
+extern WXDLLEXPORT_DATA(const wxChar) wxTreeCtrlNameStr[];
// ----------------------------------------------------------------------------
// wxTreeItemAttr: a structure containing the visual attributes of an item
// descriptions below
// ----------------------------------------------------------------------------
+class WXDLLEXPORT wxTreeCtrlBase;
+
class WXDLLEXPORT wxTreeEvent : public wxNotifyEvent
{
public:
+ wxTreeEvent(wxEventType commandType,
+ wxTreeCtrlBase *tree,
+ const wxTreeItemId &item = wxTreeItemId());
wxTreeEvent(wxEventType commandType = wxEVT_NULL, int id = 0);
- wxTreeEvent(const wxTreeEvent & event);
+ wxTreeEvent(const wxTreeEvent& event);
virtual wxEvent *Clone() const { return new wxTreeEvent(*this); }
#endif // wxUSE_TREECTRL
#endif // _WX_TREEBASE_H_
-