]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/dvrenderers.h
Simplify and correct MSW selection of background brush for children painting.
[wxWidgets.git] / include / wx / dvrenderers.h
index 34939a685ea9fa6aa8a546a5a52d4bfb7041b7ac..6a1bdc9ad008fd9b4c726c363c70748b0781deba 100644 (file)
@@ -154,6 +154,9 @@ public:
     wxControl *GetEditorCtrl() { return m_editorCtrl; }
 
 protected:
+    // Called from {Cancel,Finish}Editing() to cleanup m_editorCtrl
+    void DestroyEditControl();
+
     wxString                m_variantType;
     wxDataViewColumn       *m_owner;
     wxWeakRef<wxControl>    m_editorCtrl;
@@ -330,6 +333,9 @@ public:
     virtual bool SetValue( const wxVariant &value );
     virtual bool GetValue( wxVariant &value ) const;
 
+    wxString GetChoice(size_t index) const { return m_choices[index]; }
+    const wxArrayString& GetChoices() const { return m_choices; }
+
 private:
     wxArrayString m_choices;
     wxString      m_data;
@@ -337,6 +343,38 @@ private:
 
 #endif // generic or Carbon versions
 
+// ----------------------------------------------------------------------------
+// wxDataViewChoiceRendererByIndex
+// ----------------------------------------------------------------------------
+
+class WXDLLIMPEXP_ADV wxDataViewChoiceRendererByIndex: public wxDataViewChoiceRenderer
+{
+public:
+    wxDataViewChoiceRendererByIndex( const wxArrayString &choices,
+                              wxDataViewCellMode mode = wxDATAVIEW_CELL_EDITABLE,
+                              int alignment = wxDVR_DEFAULT_ALIGNMENT ) :
+      wxDataViewChoiceRenderer( choices, mode, alignment )
+    {
+    }
+                            
+    virtual bool SetValue( const wxVariant &value )
+    {
+        wxVariant string_value = GetChoice( value.GetLong() );
+        return wxDataViewChoiceRenderer::SetValue( string_value );
+    }
+    
+    virtual bool GetValue( wxVariant &value ) const
+    {
+        wxVariant string_value;
+        if (!wxDataViewChoiceRenderer::GetValue( string_value ))
+            return false;
+            
+        value = (long) GetChoices().Index( string_value.GetString() );
+        return true;
+    }
+};
+
+
 // this class is obsolete, its functionality was merged in
 // wxDataViewTextRenderer itself now, don't use it any more
 #define wxDataViewTextRendererAttr wxDataViewTextRenderer