+// ----------------------------------------------------------------------------
+// menus
+// ----------------------------------------------------------------------------
+
+#if wxUSE_MENUS
+
+void wxMonoRenderer::DrawMenuBarItem(wxDC& dc,
+ const wxRect& rect,
+ const wxString& label,
+ int flags,
+ int indexAccel)
+{
+ wxFAIL_MSG(_T("TODO"));
+}
+
+void wxMonoRenderer::DrawMenuItem(wxDC& dc,
+ wxCoord y,
+ const wxMenuGeometryInfo& geometryInfo,
+ const wxString& label,
+ const wxString& accel,
+ const wxBitmap& bitmap,
+ int flags,
+ int indexAccel)
+{
+ wxFAIL_MSG(_T("TODO"));
+}
+
+void wxMonoRenderer::DrawMenuSeparator(wxDC& dc,
+ wxCoord y,
+ const wxMenuGeometryInfo& geomInfo)
+{
+ wxFAIL_MSG(_T("TODO"));
+}
+
+wxSize wxMonoRenderer::GetMenuBarItemSize(const wxSize& sizeText) const
+{
+ wxFAIL_MSG(_T("TODO"));
+
+ return wxSize();
+}
+
+wxMenuGeometryInfo *wxMonoRenderer::GetMenuGeometry(wxWindow *win,
+ const wxMenu& menu) const
+{
+ wxFAIL_MSG(_T("TODO"));
+
+ return NULL;
+}
+
+#endif // wxUSE_MENUS
+
+// ----------------------------------------------------------------------------
+// slider
+// ----------------------------------------------------------------------------
+
+#if wxUSE_SLIDER
+
+void wxMonoRenderer::DrawSliderShaft(wxDC& dc,
+ const wxRect& rect,
+ int lenThumb,
+ wxOrientation orient,
+ int flags,
+ long style,
+ wxRect *rectShaft)
+{
+ wxFAIL_MSG(_T("TODO"));
+}
+
+
+void wxMonoRenderer::DrawSliderThumb(wxDC& dc,
+ const wxRect& rect,
+ wxOrientation orient,
+ int flags,
+ long style)
+{
+ wxFAIL_MSG(_T("TODO"));
+}
+
+void wxMonoRenderer::DrawSliderTicks(wxDC& dc,
+ const wxRect& rect,
+ int lenThumb,
+ wxOrientation orient,
+ int start,
+ int end,
+ int step,
+ int flags,
+ long style)
+{
+ wxFAIL_MSG(_T("TODO"));
+}
+
+wxCoord wxMonoRenderer::GetSliderDim() const
+{
+ wxFAIL_MSG(_T("TODO"));
+
+ return 0;
+}
+
+wxCoord wxMonoRenderer::GetSliderTickLen() const
+{
+ wxFAIL_MSG(_T("TODO"));
+
+ return 0;
+}
+
+
+wxRect wxMonoRenderer::GetSliderShaftRect(const wxRect& rect,
+ int lenThumb,
+ wxOrientation orient,
+ long style) const
+{
+ wxFAIL_MSG(_T("TODO"));
+
+ return wxRect();
+}
+
+wxSize wxMonoRenderer::GetSliderThumbSize(const wxRect& rect,
+ int lenThumb,
+ wxOrientation orient) const
+{
+ wxFAIL_MSG(_T("TODO"));
+
+ return wxSize();
+}
+
+#endif // wxUSE_SLIDER
+
+wxSize wxMonoRenderer::GetProgressBarStep() const
+{
+ wxFAIL_MSG(_T("TODO"));
+
+ return wxSize();
+}
+
+