]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/dvrenderers.h
Ensure wxCharTypeBuffer data is NUL-terminated after extend() call.
[wxWidgets.git] / include / wx / dvrenderers.h
index 7cbb7b220ef079af4ad2b3b4a8470e763ad2cc99..99f1e8a8377b70b3d82e9975c1018a697d25a9d7 100644 (file)
@@ -236,14 +236,7 @@ public:
                               wxDataViewModel *model,
                               const wxDataViewItem & item,
                               unsigned int col,
-                              const wxMouseEvent* mouseEvent)
-    {
-        // Compatibility code
-        if ( mouseEvent )
-            return LeftClick(mouseEvent->GetPosition(), cell, model, item, col);
-        else
-            return Activate(cell, model, item, col);
-    }
+                              const wxMouseEvent* mouseEvent);
 
     // Deprecated, use (and override) ActivateCell() instead
     wxDEPRECATED_BUT_USED_INTERNALLY_INLINE(
@@ -297,6 +290,9 @@ public:
     // platform-specific classes.
     virtual wxDC *GetDC() = 0;
 
+    // To draw background use the background colour in wxDataViewItemAttr
+    virtual void RenderBackground(wxDC* dc, const wxRect& rect);
+
     // Prepare DC to use attributes and call Render().
     void WXCallRender(wxRect rect, wxDC *dc, int state);