From 82a234fbff7fbc174c9459980995b73f37087992 Mon Sep 17 00:00:00 2001 From: Paul Cornett Date: Sat, 10 Nov 2007 21:28:48 +0000 Subject: [PATCH] wxCairoContext doesn't need to know about wxPizza git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@49819 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/generic/graphicc.cpp | 26 ++++++++------------------ 1 file changed, 8 insertions(+), 18 deletions(-) diff --git a/src/generic/graphicc.cpp b/src/generic/graphicc.cpp index 77c4b312c6..728fc687f2 100644 --- a/src/generic/graphicc.cpp +++ b/src/generic/graphicc.cpp @@ -11,12 +11,14 @@ #include "wx/wxprec.h" -#include "wx/dc.h" - #ifdef __BORLANDC__ #pragma hdrstop #endif +#if wxUSE_GRAPHICS_CONTEXT + +#include "wx/dc.h" + #ifndef WX_PRECOMP #include "wx/image.h" #include "wx/window.h" @@ -32,15 +34,9 @@ #include "wx/module.h" #endif -#ifdef __WXGTK__ -#include -#endif - #include "wx/graphics.h" #include "wx/rawbmp.h" -#if wxUSE_GRAPHICS_CONTEXT - #include using namespace std; @@ -101,7 +97,6 @@ static inline double RadToDeg(double deg) #include #ifdef __WXGTK__ -#include "wx/gtk/win_gtk.h" #include #include "wx/fontutil.h" #endif @@ -1072,22 +1067,17 @@ wxCairoContext::wxCairoContext( wxGraphicsRenderer* renderer, wxWindow *window) #ifdef __WXGTK__ // something along these lines (copied from dcclient) - GtkWidget *widget = window->m_wxwindow; - // Some controls don't have m_wxwindow - like wxStaticBox, but the user // code should still be able to create wxClientDCs for them, so we will // use the parent window here then. - if ( !widget ) + if (window->m_wxwindow == NULL) { window = window->GetParent(); - widget = window->m_wxwindow; } - wxASSERT_MSG( widget, wxT("wxCairoContext needs a widget") ); + wxASSERT_MSG( window->m_wxwindow, wxT("wxCairoContext needs a widget") ); - wxPizza *pizza = WX_PIZZA( widget ); - GdkDrawable* drawable = pizza->m_backing_window; - Init( gdk_cairo_create( drawable ) ) ; + Init(gdk_cairo_create(window->GTKGetDrawingWindow())); #endif } @@ -1117,7 +1107,7 @@ void wxCairoContext::Clip( const wxRegion& region ) while (ri) { path.AddRectangle(ri.GetX(), ri.GetY(), ri.GetW(), ri.GetH()); - ri++; + ++ri; } // Put it in the context -- 2.45.2