1. added wxNcPaintEvent and generate it under GTK/use under wxUniv

2. minor fixes to wxCheck/Radio/wxCheckList/Box appearance - now seems fine


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/wxUNIVERSAL@8368 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2000-09-15 14:35:31 +00:00
parent 07e9834fca
commit ebd161b6c8
12 changed files with 71 additions and 10 deletions

View File

@@ -223,6 +223,7 @@ public:
// get the size of a checkbox/radio button bitmap
virtual wxSize GetCheckBitmapSize() const = 0;
virtual wxSize GetRadioBitmapSize() const = 0;
virtual wxCoord GetCheckItemMargin() const = 0;
// virtual dtor for any base class
virtual ~wxRenderer();
@@ -390,6 +391,8 @@ public:
{ return m_renderer->GetCheckBitmapSize(); }
virtual wxSize GetRadioBitmapSize() const
{ return m_renderer->GetRadioBitmapSize(); }
virtual wxCoord GetCheckItemMargin() const
{ return m_renderer->GetCheckItemMargin(); }
protected:
wxRenderer *m_renderer;