]> 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 9eb0b24b942384fc170bd2c96567f3e919c25b44..5b268e9ed2a3b4f7697997294a386d0c18072001 100644 (file)
@@ -65,15 +65,14 @@ private:
     // common part of all ctors
     void Init();
 
-    // wrapper around Header_{Set,Insert}Item(): either appends the item to the
-    // end or modifies the existing item by copying information from
-    // GetColumn(idx) to it
-    enum Operation { Set, Insert };
-    void DoSetOrInsertItem(Operation oper, unsigned int idx);
-
-    // send a click or double click event (depending on dblclk value) for the
-    // click with the given button on the given item
-    bool SendClickEvent(bool dblclk, unsigned int idx, int button);
+    // 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