X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/512cfcc34118a5da1b14c8cbaae1690fd4b23a4b..5879b22eeb0cfaae9ce36d24655ebde84c80e235:/include/wx/gtk/dcclient.h?ds=inline diff --git a/include/wx/gtk/dcclient.h b/include/wx/gtk/dcclient.h index 4e79dab32d..04d3e3b1ae 100644 --- a/include/wx/gtk/dcclient.h +++ b/include/wx/gtk/dcclient.h @@ -71,7 +71,7 @@ public: const wxFont *theFont = (wxFont *) NULL) const; virtual bool DoGetPartialTextExtents(const wxString& text, wxArrayInt& widths) const; virtual void DoSetClippingRegion( wxCoord x, wxCoord y, wxCoord width, wxCoord height ); - virtual void DoSetClippingRegionAsRegion( const wxRegion ®ion ); + virtual void DoSetDeviceClippingRegion( const wxRegion ®ion ); virtual wxCoord GetCharWidth() const; virtual wxCoord GetCharHeight() const; @@ -119,11 +119,33 @@ public: void SetUpDC( bool ismem = false ); void Destroy(); - + virtual void ComputeScaleAndOrigin(); virtual GdkWindow *GetGDKWindow() const { return m_gdkwindow; } +private: + void DrawingSetup(GdkGC*& gc, bool& originChanged); + + // return true if the rectangle specified by the parameters is entirely + // outside of the current clipping region + bool IsOutsideOfClippingRegion(int x, int y, int w, int h); + + // remove the current clipping mask and set the clipping region + void RemoveClipMask(GdkGC *gc); + + // return the mask equal to the intersection of the original one with the + // clipping region + GdkBitmap *GetClippedMask(GdkBitmap *mask, int w, int h, + int x, int y, + int xsrcMask, int ysrcMask); + + void DoDrawMonoBitmap(const wxBitmap& bitmap, + int bmp_w, int bmp_h, + int xsrc, int ysrc, + int xdest, int ydest, + int width, int height); + DECLARE_ABSTRACT_CLASS(wxWindowDCImpl) };