]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/msw/headerctrl.h
define I_IMAGENONE now that we use it, at least VC6 doesn't have it (thanks buildbot)
[wxWidgets.git] / include / wx / msw / headerctrl.h
index 1f3ee6d4e06fac73d36f4dcd7244696ca74147eb..5b268e9ed2a3b4f7697997294a386d0c18072001 100644 (file)
@@ -49,11 +49,10 @@ public:
 
 private:
     // implement base class pure virtuals
+    virtual void DoSetCount(unsigned int count);
     virtual unsigned int DoGetCount() const;
-    virtual void DoInsert(const wxHeaderColumn& col, unsigned int idx);
-    virtual void DoDelete(unsigned int idx);
-    virtual void DoShowColumn(unsigned int idx, bool show);
-    virtual void DoShowSortIndicator(unsigned int idx, int sortOrder);
+    virtual void DoUpdate(unsigned int idx);
+
     virtual void DoScrollHorz(int dx);
 
     // override wxWindow methods which must be implemented by a new control
@@ -61,10 +60,21 @@ private:
 
     // override MSW-specific methods needed for new control
     virtual WXDWORD MSWGetStyle(long style, WXDWORD *exstyle) const;
+    virtual bool MSWOnNotify(int idCtrl, WXLPARAM lParam, WXLPARAM *result);
 
     // common part of all ctors
     void Init();
 
+    // wrapper around Header_InsertItem(): insert the item by using information
+    // from GetColumn(idx)
+    void DoInsertItem(unsigned int idx);
+
+    // get the event type corresponding to a click or double click event
+    // (depending on dblclk value) with the specified (using MSW convention)
+    // mouse button
+    wxEventType GetClickEventType(bool dblclk, int button);
+
+
     // the image list: initially NULL, created on demand
     wxImageList *m_imageList;