+ const wxBitmap& GetDisabledBitmap() const
+ { return m_bmpDisabled; }
+
+ int MeasureAccelWidth() const;
+
+ // override wxOwnerDrawn base class virtuals
+ virtual wxString GetName() const;
+ virtual bool OnMeasureItem(size_t *pwidth, size_t *pheight);
+ virtual bool OnDrawItem(wxDC& dc, const wxRect& rc, wxODAction act, wxODStatus stat);
+
+protected:
+ virtual void GetFontToUse(wxFont& font) const;
+ virtual void GetColourToUse(wxODStatus stat, wxColour& colText, wxColour& colBack) const;
+
+private:
+ // helper function for draw std menu check mark
+ void DrawStdCheckMark(WXHDC hdc, const tagRECT* rc, wxODStatus stat);
+
+#else // !wxUSE_OWNER_DRAWN
+ // Provide stubs for the public functions above to ensure that the code
+ // still compiles without wxUSE_OWNER_DRAWN -- it makes sense to just drop
+ // the bitmaps then instead of failing compilation.
+ void SetBitmaps(const wxBitmap& WXUNUSED(bmpChecked),
+ const wxBitmap& WXUNUSED(bmpUnchecked) = wxNullBitmap) { }
+ void SetBitmap(const wxBitmap& WXUNUSED(bmp),
+ bool WXUNUSED(bChecked) = true) { }
+ const wxBitmap& GetBitmap() const { return wxNullBitmap; }
+#endif // wxUSE_OWNER_DRAWN/!wxUSE_OWNER_DRAWN