]> git.saurik.com Git - wxWidgets.git/blobdiff - samples/render/renddll.cpp
post WM_CLOSE instead of deleting the inplace edit control (second incarnation of...
[wxWidgets.git] / samples / render / renddll.cpp
index 8493fb58106616453712a81116dca5b7fedaad17..ca0e0f7fd0877f52fa67fd9fea4120a85120f8c5 100644 (file)
@@ -5,7 +5,7 @@
 // Modified by:
 // Created:     04.08.03
 // RCS-ID:      $Id$
-// Copyright:   (c) 2003 Vadim Zeitlin <vadim@wxwindows.org>
+// Copyright:   (c) 2003 Vadim Zeitlin <vadim@wxwidgets.org>
 // Licence:     wxWindows licence
 ///////////////////////////////////////////////////////////////////////////////
 
 
 #include "wx/renderer.h"
 
-class MyDllRenderer : public wxRendererNative
+#ifndef WX_PRECOMP
+    #include "wx/dc.h"
+#endif
+
+// derive from wxDelegateRendererNative and not wxRendererNative itself to be
+// able to only reimplement the methods we want to show and not all of them
+class MyDllRenderer : public wxDelegateRendererNative
 {
 public:
     // draw the header control button (used by wxListCtrl)
@@ -32,38 +38,10 @@ public:
         dc.DrawLabel(_T("MyDllRenderer"), wxNullBitmap, rect, wxALIGN_CENTER);
     }
 
-    // draw the expanded/collapsed icon for a tree control item
-    virtual void DrawTreeItemButton(wxWindow *win,
-                                    wxDC& dc,
-                                    const wxRect& rect,
-                                    int flags = 0)
-    {
-    }
-
-    // draw the border for sash window: this border must be such that the sash
-    // drawn by DrawSash() blends into it well
-    virtual void DrawSplitterBorder(wxWindow *win,
-                                    wxDC& dc,
-                                    const wxRect& rect,
-                                    int flags = 0)
-    {
-    }
-
-    // draw a (vertical) sash
-    virtual void DrawSplitterSash(wxWindow *win,
-                                  wxDC& dc,
-                                  const wxSize& size,
-                                  wxCoord position,
-                                  wxOrientation orient,
-                                  int flags = 0)
+    virtual wxRendererVersion GetVersion() const
     {
-    }
-
-    // get the splitter parameters: the x field of the returned point is the
-    // sash width and the y field is the border width
-    virtual wxSplitterRenderParams GetSplitterParams(const wxWindow *win)
-    {
-        return wxSplitterRenderParams(0, 0, 0);
+        return wxRendererVersion(wxRendererVersion::Current_Version,
+                                 wxRendererVersion::Current_Age);
     }
 
 #if 0 // just for debugging
@@ -84,4 +62,3 @@ WXEXPORT wxRendererNative *wxCreateRenderer()
 {
     return new MyDllRenderer;
 }
-