]> 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 c05c109522b8db5ecff17c06ab6394021e575248..6a1bdc9ad008fd9b4c726c363c70748b0781deba 100644 (file)
@@ -333,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;
@@ -340,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