2006-10-21 08:37:42 -04:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
2011-03-19 20:14:35 -04:00
|
|
|
// Name: wx/dcgraph.h
|
2006-10-21 08:37:42 -04:00
|
|
|
// Purpose: graphics context device bridge header
|
|
|
|
// Author: Stefan Csomor
|
|
|
|
// Modified by:
|
|
|
|
// Created:
|
|
|
|
// Copyright: (c) Stefan Csomor
|
|
|
|
// Licence: wxWindows licence
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#ifndef _WX_GRAPHICS_DC_H_
|
|
|
|
#define _WX_GRAPHICS_DC_H_
|
|
|
|
|
|
|
|
#if wxUSE_GRAPHICS_CONTEXT
|
|
|
|
|
2007-12-02 21:15:43 -05:00
|
|
|
#include "wx/dc.h"
|
2006-10-21 08:37:42 -04:00
|
|
|
#include "wx/geometry.h"
|
2006-10-29 05:41:13 -05:00
|
|
|
#include "wx/graphics.h"
|
2006-10-21 08:37:42 -04:00
|
|
|
|
2007-07-09 06:09:52 -04:00
|
|
|
class WXDLLIMPEXP_FWD_CORE wxWindowDC;
|
2006-10-21 08:37:42 -04:00
|
|
|
|
|
|
|
|
2008-03-26 11:06:00 -04:00
|
|
|
class WXDLLIMPEXP_CORE wxGCDC: public wxDC
|
2006-10-21 08:37:42 -04:00
|
|
|
{
|
2007-11-30 08:48:22 -05:00
|
|
|
public:
|
|
|
|
wxGCDC( const wxWindowDC& dc );
|
|
|
|
wxGCDC( const wxMemoryDC& dc );
|
2008-07-31 01:57:56 -04:00
|
|
|
#if wxUSE_PRINTING_ARCHITECTURE
|
2008-04-30 05:26:02 -04:00
|
|
|
wxGCDC( const wxPrinterDC& dc );
|
2011-07-19 18:35:41 -04:00
|
|
|
#endif
|
|
|
|
#if defined(__WXMSW__) && wxUSE_ENH_METAFILE
|
|
|
|
wxGCDC( const wxEnhMetaFileDC& dc );
|
2008-07-31 01:57:56 -04:00
|
|
|
#endif
|
2011-08-27 19:26:53 -04:00
|
|
|
wxGCDC(wxGraphicsContext* context);
|
2019-01-30 11:28:08 -05:00
|
|
|
|
2007-11-30 08:48:22 -05:00
|
|
|
wxGCDC();
|
2007-12-03 11:34:29 -05:00
|
|
|
virtual ~wxGCDC();
|
2009-08-21 06:41:26 -04:00
|
|
|
|
2009-10-05 18:56:58 -04:00
|
|
|
#ifdef __WXMSW__
|
|
|
|
// override wxDC virtual functions to provide access to HDC associated with
|
2021-06-27 17:32:57 -04:00
|
|
|
// underlying wxGraphicsContext
|
2016-09-25 16:21:28 -04:00
|
|
|
virtual WXHDC AcquireHDC() wxOVERRIDE;
|
|
|
|
virtual void ReleaseHDC(WXHDC hdc) wxOVERRIDE;
|
2009-10-05 18:56:58 -04:00
|
|
|
#endif // __WXMSW__
|
|
|
|
|
|
|
|
private:
|
2015-04-23 07:49:01 -04:00
|
|
|
wxDECLARE_DYNAMIC_CLASS(wxGCDC);
|
2009-02-08 06:45:59 -05:00
|
|
|
wxDECLARE_NO_COPY_CLASS(wxGCDC);
|
2007-11-30 08:48:22 -05:00
|
|
|
};
|
2006-10-21 08:37:42 -04:00
|
|
|
|
2007-11-30 08:48:22 -05:00
|
|
|
|
2008-03-26 11:06:00 -04:00
|
|
|
class WXDLLIMPEXP_CORE wxGCDCImpl: public wxDCImpl
|
2007-11-30 08:48:22 -05:00
|
|
|
{
|
2006-10-21 08:37:42 -04:00
|
|
|
public:
|
2007-11-30 08:48:22 -05:00
|
|
|
wxGCDCImpl( wxDC *owner, const wxWindowDC& dc );
|
|
|
|
wxGCDCImpl( wxDC *owner, const wxMemoryDC& dc );
|
2008-07-31 01:57:56 -04:00
|
|
|
#if wxUSE_PRINTING_ARCHITECTURE
|
2008-04-30 05:26:02 -04:00
|
|
|
wxGCDCImpl( wxDC *owner, const wxPrinterDC& dc );
|
2011-07-19 18:35:41 -04:00
|
|
|
#endif
|
|
|
|
#if defined(__WXMSW__) && wxUSE_ENH_METAFILE
|
|
|
|
wxGCDCImpl( wxDC *owner, const wxEnhMetaFileDC& dc );
|
2008-07-31 01:57:56 -04:00
|
|
|
#endif
|
2018-12-05 21:40:49 -05:00
|
|
|
|
|
|
|
// Ctor using an existing graphics context given to wxGCDC ctor.
|
|
|
|
wxGCDCImpl(wxDC *owner, wxGraphicsContext* context);
|
|
|
|
|
2007-11-30 08:48:22 -05:00
|
|
|
wxGCDCImpl( wxDC *owner );
|
2009-08-21 06:41:26 -04:00
|
|
|
|
2007-11-30 08:48:22 -05:00
|
|
|
virtual ~wxGCDCImpl();
|
2006-10-21 08:37:42 -04:00
|
|
|
|
|
|
|
// implement base class pure virtuals
|
|
|
|
// ----------------------------------
|
|
|
|
|
2015-09-06 20:20:42 -04:00
|
|
|
virtual void Clear() wxOVERRIDE;
|
2006-10-21 08:37:42 -04:00
|
|
|
|
2015-09-06 20:20:42 -04:00
|
|
|
virtual bool StartDoc( const wxString& message ) wxOVERRIDE;
|
|
|
|
virtual void EndDoc() wxOVERRIDE;
|
2007-11-09 15:25:57 -05:00
|
|
|
|
2015-09-06 20:20:42 -04:00
|
|
|
virtual void StartPage() wxOVERRIDE;
|
|
|
|
virtual void EndPage() wxOVERRIDE;
|
2009-08-21 06:41:26 -04:00
|
|
|
|
2007-11-09 15:25:57 -05:00
|
|
|
// flushing the content of this dc immediately onto screen
|
2015-09-06 20:20:42 -04:00
|
|
|
virtual void Flush() wxOVERRIDE;
|
2006-10-21 08:37:42 -04:00
|
|
|
|
2015-09-06 20:20:42 -04:00
|
|
|
virtual void SetFont(const wxFont& font) wxOVERRIDE;
|
|
|
|
virtual void SetPen(const wxPen& pen) wxOVERRIDE;
|
|
|
|
virtual void SetBrush(const wxBrush& brush) wxOVERRIDE;
|
|
|
|
virtual void SetBackground(const wxBrush& brush) wxOVERRIDE;
|
|
|
|
virtual void SetBackgroundMode(int mode) wxOVERRIDE;
|
2018-05-18 08:52:52 -04:00
|
|
|
|
|
|
|
#if wxUSE_PALETTE
|
2015-09-06 20:20:42 -04:00
|
|
|
virtual void SetPalette(const wxPalette& palette) wxOVERRIDE;
|
2018-05-18 08:52:52 -04:00
|
|
|
#endif
|
2006-10-21 08:37:42 -04:00
|
|
|
|
2015-09-06 20:20:42 -04:00
|
|
|
virtual void DestroyClippingRegion() wxOVERRIDE;
|
2006-10-21 08:37:42 -04:00
|
|
|
|
2015-09-06 20:20:42 -04:00
|
|
|
virtual wxCoord GetCharHeight() const wxOVERRIDE;
|
|
|
|
virtual wxCoord GetCharWidth() const wxOVERRIDE;
|
2006-10-21 08:37:42 -04:00
|
|
|
|
2015-09-06 20:20:42 -04:00
|
|
|
virtual bool CanDrawBitmap() const wxOVERRIDE;
|
|
|
|
virtual bool CanGetTextExtent() const wxOVERRIDE;
|
|
|
|
virtual int GetDepth() const wxOVERRIDE;
|
|
|
|
virtual wxSize GetPPI() const wxOVERRIDE;
|
2006-10-21 08:37:42 -04:00
|
|
|
|
2015-09-06 20:20:42 -04:00
|
|
|
virtual void SetLogicalFunction(wxRasterOperationMode function) wxOVERRIDE;
|
2006-10-21 08:37:42 -04:00
|
|
|
|
2015-09-06 20:20:42 -04:00
|
|
|
virtual void SetTextForeground(const wxColour& colour) wxOVERRIDE;
|
|
|
|
virtual void SetTextBackground(const wxColour& colour) wxOVERRIDE;
|
2006-10-21 08:37:42 -04:00
|
|
|
|
2015-09-06 20:20:42 -04:00
|
|
|
virtual void ComputeScaleAndOrigin() wxOVERRIDE;
|
2006-10-21 08:37:42 -04:00
|
|
|
|
2015-09-06 20:20:42 -04:00
|
|
|
wxGraphicsContext* GetGraphicsContext() const wxOVERRIDE { return m_graphicContext; }
|
|
|
|
virtual void SetGraphicsContext( wxGraphicsContext* ctx ) wxOVERRIDE;
|
2009-08-21 06:41:26 -04:00
|
|
|
|
2015-09-06 20:20:42 -04:00
|
|
|
virtual void* GetHandle() const wxOVERRIDE;
|
2012-07-28 15:31:03 -04:00
|
|
|
|
2016-09-07 17:49:06 -04:00
|
|
|
#if wxUSE_DC_TRANSFORM_MATRIX
|
|
|
|
virtual bool CanUseTransformMatrix() const wxOVERRIDE;
|
|
|
|
virtual bool SetTransformMatrix(const wxAffineMatrix2D& matrix) wxOVERRIDE;
|
|
|
|
virtual wxAffineMatrix2D GetTransformMatrix() const wxOVERRIDE;
|
|
|
|
virtual void ResetTransformMatrix() wxOVERRIDE;
|
|
|
|
#endif // wxUSE_DC_TRANSFORM_MATRIX
|
|
|
|
|
2020-09-13 17:47:26 -04:00
|
|
|
// coordinates conversions and transforms
|
|
|
|
virtual wxPoint DeviceToLogical(wxCoord x, wxCoord y) const wxOVERRIDE;
|
|
|
|
virtual wxPoint LogicalToDevice(wxCoord x, wxCoord y) const wxOVERRIDE;
|
2020-09-27 04:38:08 -04:00
|
|
|
virtual wxSize DeviceToLogicalRel(int x, int y) const wxOVERRIDE;
|
|
|
|
virtual wxSize LogicalToDeviceRel(int x, int y) const wxOVERRIDE;
|
2020-09-13 17:47:26 -04:00
|
|
|
|
2006-10-21 08:37:42 -04:00
|
|
|
// the true implementations
|
|
|
|
virtual bool DoFloodFill(wxCoord x, wxCoord y, const wxColour& col,
|
2015-09-06 20:20:42 -04:00
|
|
|
wxFloodFillStyle style = wxFLOOD_SURFACE) wxOVERRIDE;
|
2006-10-21 08:37:42 -04:00
|
|
|
|
|
|
|
virtual void DoGradientFillLinear(const wxRect& rect,
|
|
|
|
const wxColour& initialColour,
|
|
|
|
const wxColour& destColour,
|
2015-09-06 20:20:42 -04:00
|
|
|
wxDirection nDirection = wxEAST) wxOVERRIDE;
|
2006-10-21 08:37:42 -04:00
|
|
|
|
|
|
|
virtual void DoGradientFillConcentric(const wxRect& rect,
|
|
|
|
const wxColour& initialColour,
|
|
|
|
const wxColour& destColour,
|
2015-09-06 20:20:42 -04:00
|
|
|
const wxPoint& circleCenter) wxOVERRIDE;
|
2006-10-21 08:37:42 -04:00
|
|
|
|
2015-09-06 20:20:42 -04:00
|
|
|
virtual bool DoGetPixel(wxCoord x, wxCoord y, wxColour *col) const wxOVERRIDE;
|
2006-10-21 08:37:42 -04:00
|
|
|
|
2015-09-06 20:20:42 -04:00
|
|
|
virtual void DoDrawPoint(wxCoord x, wxCoord y) wxOVERRIDE;
|
2006-10-21 08:37:42 -04:00
|
|
|
|
|
|
|
#if wxUSE_SPLINES
|
2015-09-06 20:20:42 -04:00
|
|
|
virtual void DoDrawSpline(const wxPointList *points) wxOVERRIDE;
|
2006-10-21 08:37:42 -04:00
|
|
|
#endif
|
|
|
|
|
2015-09-06 20:20:42 -04:00
|
|
|
virtual void DoDrawLine(wxCoord x1, wxCoord y1, wxCoord x2, wxCoord y2) wxOVERRIDE;
|
2006-10-21 08:37:42 -04:00
|
|
|
|
|
|
|
virtual void DoDrawArc(wxCoord x1, wxCoord y1,
|
|
|
|
wxCoord x2, wxCoord y2,
|
2015-09-06 20:20:42 -04:00
|
|
|
wxCoord xc, wxCoord yc) wxOVERRIDE;
|
2006-10-21 08:37:42 -04:00
|
|
|
|
|
|
|
virtual void DoDrawCheckMark(wxCoord x, wxCoord y,
|
2015-09-06 20:20:42 -04:00
|
|
|
wxCoord width, wxCoord height) wxOVERRIDE;
|
2006-10-21 08:37:42 -04:00
|
|
|
|
|
|
|
virtual void DoDrawEllipticArc(wxCoord x, wxCoord y, wxCoord w, wxCoord h,
|
2015-09-06 20:20:42 -04:00
|
|
|
double sa, double ea) wxOVERRIDE;
|
2006-10-21 08:37:42 -04:00
|
|
|
|
2015-09-06 20:20:42 -04:00
|
|
|
virtual void DoDrawRectangle(wxCoord x, wxCoord y, wxCoord width, wxCoord height) wxOVERRIDE;
|
2006-10-21 08:37:42 -04:00
|
|
|
virtual void DoDrawRoundedRectangle(wxCoord x, wxCoord y,
|
|
|
|
wxCoord width, wxCoord height,
|
2015-09-06 20:20:42 -04:00
|
|
|
double radius) wxOVERRIDE;
|
|
|
|
virtual void DoDrawEllipse(wxCoord x, wxCoord y, wxCoord width, wxCoord height) wxOVERRIDE;
|
2006-10-21 08:37:42 -04:00
|
|
|
|
2015-09-06 20:20:42 -04:00
|
|
|
virtual void DoCrossHair(wxCoord x, wxCoord y) wxOVERRIDE;
|
2006-10-21 08:37:42 -04:00
|
|
|
|
2015-09-06 20:20:42 -04:00
|
|
|
virtual void DoDrawIcon(const wxIcon& icon, wxCoord x, wxCoord y) wxOVERRIDE;
|
2006-10-21 08:37:42 -04:00
|
|
|
virtual void DoDrawBitmap(const wxBitmap &bmp, wxCoord x, wxCoord y,
|
2015-09-06 20:20:42 -04:00
|
|
|
bool useMask = false) wxOVERRIDE;
|
2006-10-21 08:37:42 -04:00
|
|
|
|
2015-09-06 20:20:42 -04:00
|
|
|
virtual void DoDrawText(const wxString& text, wxCoord x, wxCoord y) wxOVERRIDE;
|
2006-10-21 08:37:42 -04:00
|
|
|
virtual void DoDrawRotatedText(const wxString& text, wxCoord x, wxCoord y,
|
2015-09-06 20:20:42 -04:00
|
|
|
double angle) wxOVERRIDE;
|
2006-10-21 08:37:42 -04:00
|
|
|
|
|
|
|
virtual bool DoBlit(wxCoord xdest, wxCoord ydest, wxCoord width, wxCoord height,
|
2009-01-08 09:21:53 -05:00
|
|
|
wxDC *source, wxCoord xsrc, wxCoord ysrc,
|
|
|
|
wxRasterOperationMode rop = wxCOPY, bool useMask = false,
|
2015-09-06 20:20:42 -04:00
|
|
|
wxCoord xsrcMask = -1, wxCoord ysrcMask = -1) wxOVERRIDE;
|
2006-10-21 08:37:42 -04:00
|
|
|
|
2007-03-18 11:32:27 -04:00
|
|
|
virtual bool DoStretchBlit(wxCoord xdest, wxCoord ydest,
|
|
|
|
wxCoord dstWidth, wxCoord dstHeight,
|
|
|
|
wxDC *source,
|
|
|
|
wxCoord xsrc, wxCoord ysrc,
|
|
|
|
wxCoord srcWidth, wxCoord srcHeight,
|
2009-01-08 09:21:53 -05:00
|
|
|
wxRasterOperationMode = wxCOPY, bool useMask = false,
|
2015-09-06 20:20:42 -04:00
|
|
|
wxCoord xsrcMask = wxDefaultCoord, wxCoord ysrcMask = wxDefaultCoord) wxOVERRIDE;
|
2007-03-18 11:32:27 -04:00
|
|
|
|
2015-09-06 20:20:42 -04:00
|
|
|
virtual void DoGetSize(int *,int *) const wxOVERRIDE;
|
|
|
|
virtual void DoGetSizeMM(int* width, int* height) const wxOVERRIDE;
|
2006-10-21 08:37:42 -04:00
|
|
|
|
2013-01-18 12:27:51 -05:00
|
|
|
virtual void DoDrawLines(int n, const wxPoint points[],
|
2015-09-06 20:20:42 -04:00
|
|
|
wxCoord xoffset, wxCoord yoffset) wxOVERRIDE;
|
2013-01-18 12:27:51 -05:00
|
|
|
virtual void DoDrawPolygon(int n, const wxPoint points[],
|
2009-01-08 09:21:53 -05:00
|
|
|
wxCoord xoffset, wxCoord yoffset,
|
2015-09-06 20:20:42 -04:00
|
|
|
wxPolygonFillMode fillStyle = wxODDEVEN_RULE) wxOVERRIDE;
|
2013-01-18 12:27:51 -05:00
|
|
|
virtual void DoDrawPolyPolygon(int n, const int count[], const wxPoint points[],
|
2009-01-08 09:21:53 -05:00
|
|
|
wxCoord xoffset, wxCoord yoffset,
|
2015-09-06 20:20:42 -04:00
|
|
|
wxPolygonFillMode fillStyle) wxOVERRIDE;
|
2006-10-21 08:37:42 -04:00
|
|
|
|
2015-09-06 20:20:42 -04:00
|
|
|
virtual void DoSetDeviceClippingRegion(const wxRegion& region) wxOVERRIDE;
|
2006-10-21 08:37:42 -04:00
|
|
|
virtual void DoSetClippingRegion(wxCoord x, wxCoord y,
|
2015-09-06 20:20:42 -04:00
|
|
|
wxCoord width, wxCoord height) wxOVERRIDE;
|
2018-06-18 17:57:05 -04:00
|
|
|
virtual bool DoGetClippingRect(wxRect& rect) const wxOVERRIDE;
|
2006-10-21 08:37:42 -04:00
|
|
|
|
|
|
|
virtual void DoGetTextExtent(const wxString& string,
|
|
|
|
wxCoord *x, wxCoord *y,
|
|
|
|
wxCoord *descent = NULL,
|
|
|
|
wxCoord *externalLeading = NULL,
|
2015-09-06 20:20:42 -04:00
|
|
|
const wxFont *theFont = NULL) const wxOVERRIDE;
|
2006-10-21 08:37:42 -04:00
|
|
|
|
2015-09-06 20:20:42 -04:00
|
|
|
virtual bool DoGetPartialTextExtents(const wxString& text, wxArrayInt& widths) const wxOVERRIDE;
|
2006-10-21 08:37:42 -04:00
|
|
|
|
2011-07-07 09:05:22 -04:00
|
|
|
#ifdef __WXMSW__
|
2016-09-25 16:21:28 -04:00
|
|
|
virtual wxRect MSWApplyGDIPlusTransform(const wxRect& r) const wxOVERRIDE;
|
2011-07-07 09:05:22 -04:00
|
|
|
#endif // __WXMSW__
|
|
|
|
|
2016-09-01 14:55:17 -04:00
|
|
|
// update the internal clip box variables
|
|
|
|
void UpdateClipBox();
|
|
|
|
|
2006-10-21 08:37:42 -04:00
|
|
|
protected:
|
2012-07-13 12:58:37 -04:00
|
|
|
// unused int parameter distinguishes this version, which does not create a
|
|
|
|
// wxGraphicsContext, in the expectation that the derived class will do it
|
|
|
|
wxGCDCImpl(wxDC* owner, int);
|
|
|
|
|
2021-03-20 17:09:31 -04:00
|
|
|
#ifdef __WXOSX__
|
|
|
|
virtual wxPoint OSXGetOrigin() const { return wxPoint(); }
|
|
|
|
#endif
|
|
|
|
|
2006-10-21 08:37:42 -04:00
|
|
|
// scaling variables
|
2006-12-03 10:23:42 -05:00
|
|
|
bool m_logicalFunctionSupported;
|
2006-10-29 05:41:13 -05:00
|
|
|
wxGraphicsMatrix m_matrixOriginal;
|
|
|
|
wxGraphicsMatrix m_matrixCurrent;
|
2020-09-13 17:47:26 -04:00
|
|
|
wxGraphicsMatrix m_matrixCurrentInv;
|
2016-09-20 15:20:45 -04:00
|
|
|
#if wxUSE_DC_TRANSFORM_MATRIX
|
|
|
|
wxAffineMatrix2D m_matrixExtTransform;
|
|
|
|
#endif // wxUSE_DC_TRANSFORM_MATRIX
|
2006-10-21 14:00:11 -04:00
|
|
|
|
2006-10-21 08:37:42 -04:00
|
|
|
wxGraphicsContext* m_graphicContext;
|
2009-08-21 06:41:26 -04:00
|
|
|
|
2016-09-01 14:55:17 -04:00
|
|
|
bool m_isClipBoxValid;
|
|
|
|
|
2012-07-11 02:36:38 -04:00
|
|
|
private:
|
2018-12-15 10:51:49 -05:00
|
|
|
// This method only initializes trivial fields.
|
|
|
|
void CommonInit();
|
|
|
|
|
|
|
|
// This method initializes all fields (including those initialized by
|
|
|
|
// CommonInit() as it calls it) and the given context, if non-null, which
|
|
|
|
// is assumed to be newly created.
|
2012-07-11 02:36:38 -04:00
|
|
|
void Init(wxGraphicsContext*);
|
|
|
|
|
2019-07-06 21:09:55 -04:00
|
|
|
// This method initializes m_graphicContext, m_ok and m_matrixOriginal
|
|
|
|
// fields, returns true if the context was valid.
|
|
|
|
bool DoInitContext(wxGraphicsContext* ctx);
|
|
|
|
|
2022-04-30 13:58:48 -04:00
|
|
|
// Another convenient wrapper for CalcBoundingBox().
|
|
|
|
// This is not an overload in order to avoid hiding the base class ones.
|
|
|
|
void CalcBoundingBoxForBox(const wxRect2DDouble& box)
|
|
|
|
{
|
|
|
|
CalcBoundingBox(wxRound(box.m_x), wxRound(box.m_y));
|
|
|
|
CalcBoundingBox(wxRound(box.m_x + box.m_width),
|
|
|
|
wxRound(box.m_y + box.m_height));
|
|
|
|
}
|
|
|
|
|
2015-04-23 07:49:01 -04:00
|
|
|
wxDECLARE_CLASS(wxGCDCImpl);
|
2009-02-08 06:45:59 -05:00
|
|
|
wxDECLARE_NO_COPY_CLASS(wxGCDCImpl);
|
2006-10-21 08:37:42 -04:00
|
|
|
};
|
|
|
|
|
2007-12-06 11:22:00 -05:00
|
|
|
#endif // wxUSE_GRAPHICS_CONTEXT
|
2006-10-21 08:37:42 -04:00
|
|
|
#endif // _WX_GRAPHICS_DC_H_
|