+ ;
+
+ wxGraphicsContext* context;
+ if ( wxPaintDC *paintdc = wxDynamicCast(&pdc, wxPaintDC) )
+ {
+ context = renderer->CreateContext(*paintdc);
+ }
+ else if ( wxMemoryDC *memdc = wxDynamicCast(&pdc, wxMemoryDC) )
+ {
+ context = renderer->CreateContext(*memdc);
+ }
+#if wxUSE_METAFILE && defined(wxMETAFILE_IS_ENH)
+ else if ( wxMetafileDC *metadc = wxDynamicCast(&pdc, wxMetafileDC) )
+ {
+ context = renderer->CreateContext(*metadc);
+ }
+#endif
+ else
+ {
+ wxFAIL_MSG( "Unknown wxDC kind" );
+ return;
+ }
+
+ gdc.SetGraphicsContext(context);
+