1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: msw/renderer.cpp
3 // Purpose: implementation of wxRendererNative for Windows
4 // Author: Vadim Zeitlin
8 // Copyright: (c) 2003 Vadim Zeitlin <vadim@wxwindows.org>
9 // License: wxWindows license
10 ///////////////////////////////////////////////////////////////////////////////
12 // ============================================================================
14 // ============================================================================
16 // ----------------------------------------------------------------------------
18 // ----------------------------------------------------------------------------
20 // for compilers that support precompilation, includes "wx.h".
21 #include "wx/wxprec.h"
28 #include "wx/string.h"
31 #include "wx/renderer.h"
33 // ----------------------------------------------------------------------------
34 // wxRendererMSW: our wxRendererNative implementation
35 // ----------------------------------------------------------------------------
37 class WXDLLEXPORT wxRendererMSW
: public wxDelegateRendererNative
43 DECLARE_NO_COPY_CLASS(wxRendererMSW
)
46 // ============================================================================
48 // ============================================================================
51 wxRendererNative
& wxRendererNative::Get()
53 static wxRendererMSW s_rendererMSW
;