X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/970b97a267e1e60f4e269fb15317d9364526ac21..4f356748c628f4c9e2a1e062ef76789ec221cb25:/include/wx/vlbox.h diff --git a/include/wx/vlbox.h b/include/wx/vlbox.h index e2a2dc8063..5e09100e7f 100644 --- a/include/wx/vlbox.h +++ b/include/wx/vlbox.h @@ -120,6 +120,9 @@ public: // get the margins around each item wxPoint GetMargins() const { return m_ptMargins; } + // get the background colour of selected cells + const wxColour& GetSelectionBackground() const { return m_colBgSel; } + // operations // ---------- @@ -179,6 +182,9 @@ public: void SetMargins(const wxPoint& pt); void SetMargins(wxCoord x, wxCoord y) { SetMargins(wxPoint(x, y)); } + // change the background colour of the selected cells + void SetSelectionBackground(const wxColour& col); + protected: // the derived class must implement this function to actually draw the item @@ -258,6 +264,10 @@ private: // margins wxPoint m_ptMargins; + // the selection bg colour + wxColour m_colBgSel; + + DECLARE_EVENT_TABLE() };