]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/msw/treectrl.h
Removed unnecessary code from utilsunx.cpp
[wxWidgets.git] / include / wx / msw / treectrl.h
index eef174b0c4f6567ff0c2dbece0fbeb2e43f9322c..f27f7bea4baa02086219e755105f83a37ac2d0f1 100644 (file)
@@ -34,6 +34,7 @@ typedef long wxDataType;
 
 // fwd decl
 class  WXDLLEXPORT wxImageList;
+class  WXDLLEXPORT wxDragImage;
 struct WXDLLEXPORT wxTreeViewItem;
 
 // a callback function used for sorting tree items, it should return -1 if the
@@ -439,9 +440,14 @@ public:
 
     // implementation
     // --------------
+    virtual long MSWWindowProc(WXUINT nMsg, WXWPARAM wParam, WXLPARAM lParam);
     virtual bool MSWCommand(WXUINT param, WXWORD id);
     virtual bool MSWOnNotify(int idCtrl, WXLPARAM lParam, WXLPARAM *result);
 
+    // override some base class virtuals
+    virtual bool SetBackgroundColour(const wxColour &colour);
+    virtual bool SetForegroundColour(const wxColour &colour);
+
     // get/set the check state for the item (only for wxTR_MULTIPLE)
     bool IsItemChecked(const wxTreeItemId& item) const;
     void SetItemCheck(const wxTreeItemId& item, bool check = TRUE);
@@ -494,6 +500,9 @@ private:
     // TRUE if the hash above is not empty
     bool m_hasAnyAttr;
 
+    // used for dragging
+    wxDragImage *m_dragImage;
+
     DECLARE_DYNAMIC_CLASS(wxTreeCtrl)
 };