wxCheckListBox works

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/wxUNIVERSAL@8361 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2000-09-14 20:10:34 +00:00
parent 4c81b707a5
commit 07e9834fca
11 changed files with 447 additions and 208 deletions

View File

@@ -146,6 +146,10 @@ public:
bool UseFgCol() const { return m_hasFgCol; }
bool UseFont() const { return m_hasFont; }
// returns the (low level) renderer to use for drawing the control by
// querying the current theme
wxRenderer *GetRenderer() const { return m_renderer; }
// overridden base class methods
// -----------------------------
@@ -169,10 +173,6 @@ protected:
void OnPaint(wxPaintEvent& event);
void OnErase(wxEraseEvent& event);
// returns the (low level) renderer to use for drawing the control by
// querying the current theme
wxRenderer *GetRenderer() const { return m_renderer; }
// draw the control background, return TRUE if done
virtual bool DoDrawBackground(wxControlRenderer *renderer);