[4271] | 1 | /* -*- mode: C++ ; c-file-style: "stroustrup" -*- *****************************
|
---|
| 2 | * Qwt Widget Library
|
---|
| 3 | * Copyright (C) 1997 Josef Wilgen
|
---|
| 4 | * Copyright (C) 2002 Uwe Rathmann
|
---|
| 5 | *
|
---|
| 6 | * This library is free software; you can redistribute it and/or
|
---|
| 7 | * modify it under the terms of the Qwt License, Version 1.0
|
---|
| 8 | *****************************************************************************/
|
---|
| 9 |
|
---|
| 10 | #ifndef QWT_PLOT_RENDERER_H
|
---|
| 11 | #define QWT_PLOT_RENDERER_H
|
---|
| 12 |
|
---|
| 13 | #include "qwt_global.h"
|
---|
| 14 | #include <qobject.h>
|
---|
[8127] | 15 | #include <qsize.h>
|
---|
[4271] | 16 |
|
---|
| 17 | class QwtPlot;
|
---|
| 18 | class QwtScaleMap;
|
---|
| 19 | class QRectF;
|
---|
| 20 | class QPainter;
|
---|
| 21 | class QPaintDevice;
|
---|
| 22 |
|
---|
| 23 | #ifndef QT_NO_PRINTER
|
---|
| 24 | class QPrinter;
|
---|
| 25 | #endif
|
---|
| 26 |
|
---|
| 27 | #ifndef QWT_NO_SVG
|
---|
| 28 | #ifdef QT_SVG_LIB
|
---|
| 29 | class QSvgGenerator;
|
---|
| 30 | #endif
|
---|
| 31 | #endif
|
---|
| 32 |
|
---|
| 33 | /*!
|
---|
| 34 | \brief Renderer for exporting a plot to a document, a printer
|
---|
| 35 | or anything else, that is supported by QPainter/QPaintDevice
|
---|
| 36 | */
|
---|
| 37 | class QWT_EXPORT QwtPlotRenderer: public QObject
|
---|
| 38 | {
|
---|
| 39 | Q_OBJECT
|
---|
| 40 |
|
---|
| 41 | public:
|
---|
| 42 | //! Disard flags
|
---|
| 43 | enum DiscardFlag
|
---|
| 44 | {
|
---|
| 45 | //! Render all components of the plot
|
---|
| 46 | DiscardNone = 0x00,
|
---|
| 47 |
|
---|
| 48 | //! Don't render the background of the plot
|
---|
| 49 | DiscardBackground = 0x01,
|
---|
| 50 |
|
---|
| 51 | //! Don't render the title of the plot
|
---|
| 52 | DiscardTitle = 0x02,
|
---|
| 53 |
|
---|
| 54 | //! Don't render the legend of the plot
|
---|
| 55 | DiscardLegend = 0x04,
|
---|
| 56 |
|
---|
| 57 | //! Don't render the background of the canvas
|
---|
[8127] | 58 | DiscardCanvasBackground = 0x08,
|
---|
| 59 |
|
---|
| 60 | //! Don't render the footer of the plot
|
---|
| 61 | DiscardFooter = 0x10,
|
---|
| 62 |
|
---|
[9383] | 63 | /*!
|
---|
[8127] | 64 | Don't render the frame of the canvas
|
---|
| 65 |
|
---|
| 66 | \note This flag has no effect when using
|
---|
| 67 | style sheets, where the frame is part
|
---|
| 68 | of the background
|
---|
| 69 | */
|
---|
| 70 | DiscardCanvasFrame = 0x20
|
---|
| 71 |
|
---|
[4271] | 72 | };
|
---|
| 73 |
|
---|
| 74 | //! Disard flags
|
---|
| 75 | typedef QFlags<DiscardFlag> DiscardFlags;
|
---|
| 76 |
|
---|
| 77 | /*!
|
---|
| 78 | \brief Layout flags
|
---|
| 79 | \sa setLayoutFlag(), testLayoutFlag()
|
---|
| 80 | */
|
---|
| 81 | enum LayoutFlag
|
---|
| 82 | {
|
---|
[8127] | 83 | //! Use the default layout as on screen
|
---|
[4271] | 84 | DefaultLayout = 0x00,
|
---|
| 85 |
|
---|
| 86 | /*!
|
---|
| 87 | Instead of the scales a box is painted around the plot canvas,
|
---|
| 88 | where the scale ticks are aligned to.
|
---|
| 89 | */
|
---|
[8127] | 90 | FrameWithScales = 0x01
|
---|
[4271] | 91 | };
|
---|
| 92 |
|
---|
| 93 | //! Layout flags
|
---|
| 94 | typedef QFlags<LayoutFlag> LayoutFlags;
|
---|
| 95 |
|
---|
| 96 | explicit QwtPlotRenderer( QObject * = NULL );
|
---|
| 97 | virtual ~QwtPlotRenderer();
|
---|
| 98 |
|
---|
| 99 | void setDiscardFlag( DiscardFlag flag, bool on = true );
|
---|
| 100 | bool testDiscardFlag( DiscardFlag flag ) const;
|
---|
| 101 |
|
---|
| 102 | void setDiscardFlags( DiscardFlags flags );
|
---|
| 103 | DiscardFlags discardFlags() const;
|
---|
| 104 |
|
---|
| 105 | void setLayoutFlag( LayoutFlag flag, bool on = true );
|
---|
| 106 | bool testLayoutFlag( LayoutFlag flag ) const;
|
---|
| 107 |
|
---|
| 108 | void setLayoutFlags( LayoutFlags flags );
|
---|
| 109 | LayoutFlags layoutFlags() const;
|
---|
| 110 |
|
---|
[8127] | 111 | void renderDocument( QwtPlot *, const QString &fileName,
|
---|
[4271] | 112 | const QSizeF &sizeMM, int resolution = 85 );
|
---|
| 113 |
|
---|
| 114 | void renderDocument( QwtPlot *,
|
---|
[8127] | 115 | const QString &fileName, const QString &format,
|
---|
[4271] | 116 | const QSizeF &sizeMM, int resolution = 85 );
|
---|
| 117 |
|
---|
| 118 | #ifndef QWT_NO_SVG
|
---|
| 119 | #ifdef QT_SVG_LIB
|
---|
| 120 | #if QT_VERSION >= 0x040500
|
---|
| 121 | void renderTo( QwtPlot *, QSvgGenerator & ) const;
|
---|
| 122 | #endif
|
---|
| 123 | #endif
|
---|
| 124 | #endif
|
---|
| 125 |
|
---|
| 126 | #ifndef QT_NO_PRINTER
|
---|
| 127 | void renderTo( QwtPlot *, QPrinter & ) const;
|
---|
| 128 | #endif
|
---|
| 129 |
|
---|
[9383] | 130 | void renderTo( QwtPlot *, QPaintDevice & ) const;
|
---|
[4271] | 131 |
|
---|
| 132 | virtual void render( QwtPlot *,
|
---|
[9383] | 133 | QPainter *, const QRectF &plotRect ) const;
|
---|
[4271] | 134 |
|
---|
| 135 | virtual void renderTitle( const QwtPlot *,
|
---|
[9383] | 136 | QPainter *, const QRectF &titleRect ) const;
|
---|
[4271] | 137 |
|
---|
[8127] | 138 | virtual void renderFooter( const QwtPlot *,
|
---|
[9383] | 139 | QPainter *, const QRectF &footerRect ) const;
|
---|
[8127] | 140 |
|
---|
[4271] | 141 | virtual void renderScale( const QwtPlot *, QPainter *,
|
---|
| 142 | int axisId, int startDist, int endDist,
|
---|
[9383] | 143 | int baseDist, const QRectF &scaleRect ) const;
|
---|
[4271] | 144 |
|
---|
| 145 | virtual void renderCanvas( const QwtPlot *,
|
---|
| 146 | QPainter *, const QRectF &canvasRect,
|
---|
| 147 | const QwtScaleMap* maps ) const;
|
---|
| 148 |
|
---|
[9383] | 149 | virtual void renderLegend(
|
---|
| 150 | const QwtPlot *, QPainter *, const QRectF &legendRect ) const;
|
---|
[4271] | 151 |
|
---|
[8127] | 152 | bool exportTo( QwtPlot *, const QString &documentName,
|
---|
| 153 | const QSizeF &sizeMM = QSizeF( 300, 200 ), int resolution = 85 );
|
---|
| 154 |
|
---|
| 155 | private:
|
---|
[4271] | 156 | void buildCanvasMaps( const QwtPlot *,
|
---|
| 157 | const QRectF &, QwtScaleMap maps[] ) const;
|
---|
| 158 |
|
---|
[8127] | 159 | bool updateCanvasMargins( QwtPlot *,
|
---|
| 160 | const QRectF &, const QwtScaleMap maps[] ) const;
|
---|
| 161 |
|
---|
[4271] | 162 | private:
|
---|
| 163 | class PrivateData;
|
---|
| 164 | PrivateData *d_data;
|
---|
| 165 | };
|
---|
| 166 |
|
---|
| 167 | Q_DECLARE_OPERATORS_FOR_FLAGS( QwtPlotRenderer::DiscardFlags )
|
---|
| 168 | Q_DECLARE_OPERATORS_FOR_FLAGS( QwtPlotRenderer::LayoutFlags )
|
---|
| 169 |
|
---|
| 170 | #endif
|
---|