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 | #include "qwt_plot_renderer.h"
|
---|
11 | #include "qwt_plot.h"
|
---|
12 | #include "qwt_painter.h"
|
---|
13 | #include "qwt_plot_layout.h"
|
---|
14 | #include "qwt_abstract_legend.h"
|
---|
15 | #include "qwt_scale_widget.h"
|
---|
16 | #include "qwt_scale_engine.h"
|
---|
17 | #include "qwt_scale_map.h"
|
---|
18 | #include "qwt_text.h"
|
---|
19 | #include "qwt_text_label.h"
|
---|
20 | #include "qwt_math.h"
|
---|
21 |
|
---|
22 | #include <qpainter.h>
|
---|
23 | #include <qpainterpath.h>
|
---|
24 | #include <qtransform.h>
|
---|
25 | #include <qprinter.h>
|
---|
26 | #include <qfiledialog.h>
|
---|
27 | #include <qfileinfo.h>
|
---|
28 | #include <qimagewriter.h>
|
---|
29 | #include <qvariant.h>
|
---|
30 |
|
---|
31 | #ifndef QWT_NO_SVG
|
---|
32 | #ifdef QT_SVG_LIB
|
---|
33 | #if QT_VERSION >= 0x040500
|
---|
34 | #define QWT_FORMAT_SVG 1
|
---|
35 | #endif
|
---|
36 | #endif
|
---|
37 | #endif
|
---|
38 |
|
---|
39 | #ifndef QT_NO_PRINTER
|
---|
40 | #define QWT_FORMAT_PDF 1
|
---|
41 | #endif
|
---|
42 |
|
---|
43 | #ifndef QT_NO_PDF
|
---|
44 |
|
---|
45 | // QPdfWriter::setResolution() has been introduced with
|
---|
46 | // Qt 5.3. Guess it is o.k. to stay with QPrinter for older
|
---|
47 | // versions.
|
---|
48 |
|
---|
49 | #if QT_VERSION >= 0x050300
|
---|
50 |
|
---|
51 | #ifndef QWT_FORMAT_PDF
|
---|
52 | #define QWT_FORMAT_PDF 1
|
---|
53 | #endif
|
---|
54 |
|
---|
55 | #define QWT_PDF_WRITER 1
|
---|
56 |
|
---|
57 | #endif
|
---|
58 | #endif
|
---|
59 |
|
---|
60 | #ifndef QT_NO_PRINTER
|
---|
61 | // postscript support has been dropped in Qt5
|
---|
62 | #if QT_VERSION < 0x050000
|
---|
63 | #define QWT_FORMAT_POSTSCRIPT 1
|
---|
64 | #endif
|
---|
65 | #endif
|
---|
66 |
|
---|
67 | #if QWT_FORMAT_SVG
|
---|
68 | #include <qsvggenerator.h>
|
---|
69 | #endif
|
---|
70 |
|
---|
71 | #if QWT_PDF_WRITER
|
---|
72 | #include <qpdfwriter.h>
|
---|
73 | #endif
|
---|
74 |
|
---|
75 | static QPainterPath qwtCanvasClip(
|
---|
76 | const QWidget* canvas, const QRectF &canvasRect )
|
---|
77 | {
|
---|
78 | // The clip region is calculated in integers
|
---|
79 | // To avoid too much rounding errors better
|
---|
80 | // calculate it in target device resolution
|
---|
81 |
|
---|
82 | int x1 = qCeil( canvasRect.left() );
|
---|
83 | int x2 = qFloor( canvasRect.right() );
|
---|
84 | int y1 = qCeil( canvasRect.top() );
|
---|
85 | int y2 = qFloor( canvasRect.bottom() );
|
---|
86 |
|
---|
87 | const QRect r( x1, y1, x2 - x1 - 1, y2 - y1 - 1 );
|
---|
88 |
|
---|
89 | QPainterPath clipPath;
|
---|
90 |
|
---|
91 | ( void ) QMetaObject::invokeMethod(
|
---|
92 | const_cast< QWidget *>( canvas ), "borderPath",
|
---|
93 | Qt::DirectConnection,
|
---|
94 | Q_RETURN_ARG( QPainterPath, clipPath ), Q_ARG( QRect, r ) );
|
---|
95 |
|
---|
96 | return clipPath;
|
---|
97 | }
|
---|
98 |
|
---|
99 | static inline QFont qwtResolvedFont( const QWidget *widget )
|
---|
100 | {
|
---|
101 | QFont font = widget->font();
|
---|
102 | font.resolve( QFont::AllPropertiesResolved );
|
---|
103 |
|
---|
104 | return font;
|
---|
105 | }
|
---|
106 |
|
---|
107 | class QwtPlotRenderer::PrivateData
|
---|
108 | {
|
---|
109 | public:
|
---|
110 | PrivateData():
|
---|
111 | discardFlags( QwtPlotRenderer::DiscardNone ),
|
---|
112 | layoutFlags( QwtPlotRenderer::DefaultLayout )
|
---|
113 | {
|
---|
114 | }
|
---|
115 |
|
---|
116 | QwtPlotRenderer::DiscardFlags discardFlags;
|
---|
117 | QwtPlotRenderer::LayoutFlags layoutFlags;
|
---|
118 | };
|
---|
119 |
|
---|
120 | /*!
|
---|
121 | Constructor
|
---|
122 | \param parent Parent object
|
---|
123 | */
|
---|
124 | QwtPlotRenderer::QwtPlotRenderer( QObject *parent ):
|
---|
125 | QObject( parent )
|
---|
126 | {
|
---|
127 | d_data = new PrivateData;
|
---|
128 | }
|
---|
129 |
|
---|
130 | //! Destructor
|
---|
131 | QwtPlotRenderer::~QwtPlotRenderer()
|
---|
132 | {
|
---|
133 | delete d_data;
|
---|
134 | }
|
---|
135 |
|
---|
136 | /*!
|
---|
137 | Change a flag, indicating what to discard from rendering
|
---|
138 |
|
---|
139 | \param flag Flag to change
|
---|
140 | \param on On/Off
|
---|
141 |
|
---|
142 | \sa DiscardFlag, testDiscardFlag(), setDiscardFlags(), discardFlags()
|
---|
143 | */
|
---|
144 | void QwtPlotRenderer::setDiscardFlag( DiscardFlag flag, bool on )
|
---|
145 | {
|
---|
146 | if ( on )
|
---|
147 | d_data->discardFlags |= flag;
|
---|
148 | else
|
---|
149 | d_data->discardFlags &= ~flag;
|
---|
150 | }
|
---|
151 |
|
---|
152 | /*!
|
---|
153 | \return True, if flag is enabled.
|
---|
154 | \param flag Flag to be tested
|
---|
155 | \sa DiscardFlag, setDiscardFlag(), setDiscardFlags(), discardFlags()
|
---|
156 | */
|
---|
157 | bool QwtPlotRenderer::testDiscardFlag( DiscardFlag flag ) const
|
---|
158 | {
|
---|
159 | return d_data->discardFlags & flag;
|
---|
160 | }
|
---|
161 |
|
---|
162 | /*!
|
---|
163 | Set the flags, indicating what to discard from rendering
|
---|
164 |
|
---|
165 | \param flags Flags
|
---|
166 | \sa DiscardFlag, setDiscardFlag(), testDiscardFlag(), discardFlags()
|
---|
167 | */
|
---|
168 | void QwtPlotRenderer::setDiscardFlags( DiscardFlags flags )
|
---|
169 | {
|
---|
170 | d_data->discardFlags = flags;
|
---|
171 | }
|
---|
172 |
|
---|
173 | /*!
|
---|
174 | \return Flags, indicating what to discard from rendering
|
---|
175 | \sa DiscardFlag, setDiscardFlags(), setDiscardFlag(), testDiscardFlag()
|
---|
176 | */
|
---|
177 | QwtPlotRenderer::DiscardFlags QwtPlotRenderer::discardFlags() const
|
---|
178 | {
|
---|
179 | return d_data->discardFlags;
|
---|
180 | }
|
---|
181 |
|
---|
182 | /*!
|
---|
183 | Change a layout flag
|
---|
184 |
|
---|
185 | \param flag Flag to change
|
---|
186 | \param on On/Off
|
---|
187 |
|
---|
188 | \sa LayoutFlag, testLayoutFlag(), setLayoutFlags(), layoutFlags()
|
---|
189 | */
|
---|
190 | void QwtPlotRenderer::setLayoutFlag( LayoutFlag flag, bool on )
|
---|
191 | {
|
---|
192 | if ( on )
|
---|
193 | d_data->layoutFlags |= flag;
|
---|
194 | else
|
---|
195 | d_data->layoutFlags &= ~flag;
|
---|
196 | }
|
---|
197 |
|
---|
198 | /*!
|
---|
199 | \return True, if flag is enabled.
|
---|
200 | \param flag Flag to be tested
|
---|
201 | \sa LayoutFlag, setLayoutFlag(), setLayoutFlags(), layoutFlags()
|
---|
202 | */
|
---|
203 | bool QwtPlotRenderer::testLayoutFlag( LayoutFlag flag ) const
|
---|
204 | {
|
---|
205 | return d_data->layoutFlags & flag;
|
---|
206 | }
|
---|
207 |
|
---|
208 | /*!
|
---|
209 | Set the layout flags
|
---|
210 |
|
---|
211 | \param flags Flags
|
---|
212 | \sa LayoutFlag, setLayoutFlag(), testLayoutFlag(), layoutFlags()
|
---|
213 | */
|
---|
214 | void QwtPlotRenderer::setLayoutFlags( LayoutFlags flags )
|
---|
215 | {
|
---|
216 | d_data->layoutFlags = flags;
|
---|
217 | }
|
---|
218 |
|
---|
219 | /*!
|
---|
220 | \return Layout flags
|
---|
221 | \sa LayoutFlag, setLayoutFlags(), setLayoutFlag(), testLayoutFlag()
|
---|
222 | */
|
---|
223 | QwtPlotRenderer::LayoutFlags QwtPlotRenderer::layoutFlags() const
|
---|
224 | {
|
---|
225 | return d_data->layoutFlags;
|
---|
226 | }
|
---|
227 |
|
---|
228 | /*!
|
---|
229 | Render a plot to a file
|
---|
230 |
|
---|
231 | The format of the document will be auto-detected from the
|
---|
232 | suffix of the file name.
|
---|
233 |
|
---|
234 | \param plot Plot widget
|
---|
235 | \param fileName Path of the file, where the document will be stored
|
---|
236 | \param sizeMM Size for the document in millimeters.
|
---|
237 | \param resolution Resolution in dots per Inch (dpi)
|
---|
238 | */
|
---|
239 | void QwtPlotRenderer::renderDocument( QwtPlot *plot,
|
---|
240 | const QString &fileName, const QSizeF &sizeMM, int resolution )
|
---|
241 | {
|
---|
242 | renderDocument( plot, fileName,
|
---|
243 | QFileInfo( fileName ).suffix(), sizeMM, resolution );
|
---|
244 | }
|
---|
245 |
|
---|
246 | /*!
|
---|
247 | Render a plot to a file
|
---|
248 |
|
---|
249 | Supported formats are:
|
---|
250 |
|
---|
251 | - pdf\n
|
---|
252 | Portable Document Format PDF
|
---|
253 | - ps\n
|
---|
254 | Postcript
|
---|
255 | - svg\n
|
---|
256 | Scalable Vector Graphics SVG
|
---|
257 | - all image formats supported by Qt\n
|
---|
258 | see QImageWriter::supportedImageFormats()
|
---|
259 |
|
---|
260 | Scalable vector graphic formats like PDF or SVG are superior to
|
---|
261 | raster graphics formats.
|
---|
262 |
|
---|
263 | \param plot Plot widget
|
---|
264 | \param fileName Path of the file, where the document will be stored
|
---|
265 | \param format Format for the document
|
---|
266 | \param sizeMM Size for the document in millimeters.
|
---|
267 | \param resolution Resolution in dots per Inch (dpi)
|
---|
268 |
|
---|
269 | \sa renderTo(), render(), QwtPainter::setRoundingAlignment()
|
---|
270 | */
|
---|
271 | void QwtPlotRenderer::renderDocument( QwtPlot *plot,
|
---|
272 | const QString &fileName, const QString &format,
|
---|
273 | const QSizeF &sizeMM, int resolution )
|
---|
274 | {
|
---|
275 | if ( plot == NULL || sizeMM.isEmpty() || resolution <= 0 )
|
---|
276 | return;
|
---|
277 |
|
---|
278 | QString title = plot->title().text();
|
---|
279 | if ( title.isEmpty() )
|
---|
280 | title = "Plot Document";
|
---|
281 |
|
---|
282 | const double mmToInch = 1.0 / 25.4;
|
---|
283 | const QSizeF size = sizeMM * mmToInch * resolution;
|
---|
284 |
|
---|
285 | const QRectF documentRect( 0.0, 0.0, size.width(), size.height() );
|
---|
286 |
|
---|
287 | const QString fmt = format.toLower();
|
---|
288 | if ( fmt == QLatin1String( "pdf" ) )
|
---|
289 | {
|
---|
290 | #if QWT_FORMAT_PDF
|
---|
291 |
|
---|
292 | #if QWT_PDF_WRITER
|
---|
293 | QPdfWriter pdfWriter( fileName );
|
---|
294 | pdfWriter.setPageSizeMM( sizeMM );
|
---|
295 | pdfWriter.setTitle( title );
|
---|
296 | pdfWriter.setPageMargins( QMarginsF() );
|
---|
297 | pdfWriter.setResolution( resolution );
|
---|
298 |
|
---|
299 | QPainter painter( &pdfWriter );
|
---|
300 | render( plot, &painter, documentRect );
|
---|
301 | #else
|
---|
302 | QPrinter printer;
|
---|
303 | printer.setOutputFormat( QPrinter::PdfFormat );
|
---|
304 | printer.setColorMode( QPrinter::Color );
|
---|
305 | printer.setFullPage( true );
|
---|
306 | printer.setPaperSize( sizeMM, QPrinter::Millimeter );
|
---|
307 | printer.setDocName( title );
|
---|
308 | printer.setOutputFileName( fileName );
|
---|
309 | printer.setResolution( resolution );
|
---|
310 |
|
---|
311 | QPainter painter( &printer );
|
---|
312 | render( plot, &painter, documentRect );
|
---|
313 | #endif
|
---|
314 | #endif
|
---|
315 | }
|
---|
316 | else if ( fmt == QLatin1String( "ps" ) )
|
---|
317 | {
|
---|
318 | #if QWT_FORMAT_POSTSCRIPT
|
---|
319 | QPrinter printer;
|
---|
320 | printer.setOutputFormat( QPrinter::PostScriptFormat );
|
---|
321 | printer.setColorMode( QPrinter::Color );
|
---|
322 | printer.setFullPage( true );
|
---|
323 | printer.setPaperSize( sizeMM, QPrinter::Millimeter );
|
---|
324 | printer.setDocName( title );
|
---|
325 | printer.setOutputFileName( fileName );
|
---|
326 | printer.setResolution( resolution );
|
---|
327 |
|
---|
328 | QPainter painter( &printer );
|
---|
329 | render( plot, &painter, documentRect );
|
---|
330 | #endif
|
---|
331 | }
|
---|
332 | else if ( fmt == QLatin1String( "svg" ) )
|
---|
333 | {
|
---|
334 | #if QWT_FORMAT_SVG
|
---|
335 | QSvgGenerator generator;
|
---|
336 | generator.setTitle( title );
|
---|
337 | generator.setFileName( fileName );
|
---|
338 | generator.setResolution( resolution );
|
---|
339 | generator.setViewBox( documentRect );
|
---|
340 |
|
---|
341 | QPainter painter( &generator );
|
---|
342 | render( plot, &painter, documentRect );
|
---|
343 | #endif
|
---|
344 | }
|
---|
345 | else
|
---|
346 | {
|
---|
347 | if ( QImageWriter::supportedImageFormats().indexOf(
|
---|
348 | format.toLatin1() ) >= 0 )
|
---|
349 | {
|
---|
350 | const QRect imageRect = documentRect.toRect();
|
---|
351 | const int dotsPerMeter = qRound( resolution * mmToInch * 1000.0 );
|
---|
352 |
|
---|
353 | QImage image( imageRect.size(), QImage::Format_ARGB32 );
|
---|
354 | image.setDotsPerMeterX( dotsPerMeter );
|
---|
355 | image.setDotsPerMeterY( dotsPerMeter );
|
---|
356 | image.fill( QColor( Qt::white ).rgb() );
|
---|
357 |
|
---|
358 | QPainter painter( &image );
|
---|
359 | render( plot, &painter, imageRect );
|
---|
360 | painter.end();
|
---|
361 |
|
---|
362 | image.save( fileName, format.toLatin1() );
|
---|
363 | }
|
---|
364 | }
|
---|
365 | }
|
---|
366 |
|
---|
367 | /*!
|
---|
368 | \brief Render the plot to a \c QPaintDevice
|
---|
369 |
|
---|
370 | This function renders the contents of a QwtPlot instance to
|
---|
371 | \c QPaintDevice object. The target rectangle is derived from
|
---|
372 | its device metrics.
|
---|
373 |
|
---|
374 | \param plot Plot to be rendered
|
---|
375 | \param paintDevice device to paint on, f.e a QImage
|
---|
376 |
|
---|
377 | \sa renderDocument(), render(), QwtPainter::setRoundingAlignment()
|
---|
378 | */
|
---|
379 |
|
---|
380 | void QwtPlotRenderer::renderTo(
|
---|
381 | QwtPlot *plot, QPaintDevice &paintDevice ) const
|
---|
382 | {
|
---|
383 | int w = paintDevice.width();
|
---|
384 | int h = paintDevice.height();
|
---|
385 |
|
---|
386 | QPainter p( &paintDevice );
|
---|
387 | render( plot, &p, QRectF( 0, 0, w, h ) );
|
---|
388 | }
|
---|
389 |
|
---|
390 | /*!
|
---|
391 | \brief Render the plot to a QPrinter
|
---|
392 |
|
---|
393 | This function renders the contents of a QwtPlot instance to
|
---|
394 | \c QPaintDevice object. The size is derived from the printer
|
---|
395 | metrics.
|
---|
396 |
|
---|
397 | \param plot Plot to be rendered
|
---|
398 | \param printer Printer to paint on
|
---|
399 |
|
---|
400 | \sa renderDocument(), render(), QwtPainter::setRoundingAlignment()
|
---|
401 | */
|
---|
402 |
|
---|
403 | #ifndef QT_NO_PRINTER
|
---|
404 |
|
---|
405 | void QwtPlotRenderer::renderTo(
|
---|
406 | QwtPlot *plot, QPrinter &printer ) const
|
---|
407 | {
|
---|
408 | int w = printer.width();
|
---|
409 | int h = printer.height();
|
---|
410 |
|
---|
411 | QRectF rect( 0, 0, w, h );
|
---|
412 | double aspect = rect.width() / rect.height();
|
---|
413 | if ( ( aspect < 1.0 ) )
|
---|
414 | rect.setHeight( aspect * rect.width() );
|
---|
415 |
|
---|
416 | QPainter p( &printer );
|
---|
417 | render( plot, &p, rect );
|
---|
418 | }
|
---|
419 |
|
---|
420 | #endif
|
---|
421 |
|
---|
422 | #if QWT_FORMAT_SVG
|
---|
423 |
|
---|
424 | /*!
|
---|
425 | \brief Render the plot to a QSvgGenerator
|
---|
426 |
|
---|
427 | If the generator has a view box, the plot will be rendered into it.
|
---|
428 | If it has no viewBox but a valid size the target coordinates
|
---|
429 | will be (0, 0, generator.width(), generator.height()). Otherwise
|
---|
430 | the target rectangle will be QRectF(0, 0, 800, 600);
|
---|
431 |
|
---|
432 | \param plot Plot to be rendered
|
---|
433 | \param generator SVG generator
|
---|
434 | */
|
---|
435 | void QwtPlotRenderer::renderTo(
|
---|
436 | QwtPlot *plot, QSvgGenerator &generator ) const
|
---|
437 | {
|
---|
438 | QRectF rect = generator.viewBoxF();
|
---|
439 | if ( rect.isEmpty() )
|
---|
440 | rect.setRect( 0, 0, generator.width(), generator.height() );
|
---|
441 |
|
---|
442 | if ( rect.isEmpty() )
|
---|
443 | rect.setRect( 0, 0, 800, 600 ); // something
|
---|
444 |
|
---|
445 | QPainter p( &generator );
|
---|
446 | render( plot, &p, rect );
|
---|
447 | }
|
---|
448 |
|
---|
449 | #endif
|
---|
450 |
|
---|
451 | /*!
|
---|
452 | Paint the contents of a QwtPlot instance into a given rectangle.
|
---|
453 |
|
---|
454 | \param plot Plot to be rendered
|
---|
455 | \param painter Painter
|
---|
456 | \param plotRect Bounding rectangle
|
---|
457 |
|
---|
458 | \sa renderDocument(), renderTo(), QwtPainter::setRoundingAlignment()
|
---|
459 | */
|
---|
460 | void QwtPlotRenderer::render( QwtPlot *plot,
|
---|
461 | QPainter *painter, const QRectF &plotRect ) const
|
---|
462 | {
|
---|
463 | if ( painter == 0 || !painter->isActive() ||
|
---|
464 | !plotRect.isValid() || plot->size().isNull() )
|
---|
465 | {
|
---|
466 | return;
|
---|
467 | }
|
---|
468 |
|
---|
469 | if ( !( d_data->discardFlags & DiscardBackground ) )
|
---|
470 | QwtPainter::drawBackgound( painter, plotRect, plot );
|
---|
471 |
|
---|
472 | /*
|
---|
473 | The layout engine uses the same methods as they are used
|
---|
474 | by the Qt layout system. Therefore we need to calculate the
|
---|
475 | layout in screen coordinates and paint with a scaled painter.
|
---|
476 | */
|
---|
477 | QTransform transform;
|
---|
478 | transform.scale(
|
---|
479 | double( painter->device()->logicalDpiX() ) / plot->logicalDpiX(),
|
---|
480 | double( painter->device()->logicalDpiY() ) / plot->logicalDpiY() );
|
---|
481 |
|
---|
482 | QRectF layoutRect = transform.inverted().mapRect( plotRect );
|
---|
483 |
|
---|
484 | if ( !( d_data->discardFlags & DiscardBackground ) )
|
---|
485 | {
|
---|
486 | // subtract the contents margins
|
---|
487 |
|
---|
488 | int left, top, right, bottom;
|
---|
489 | plot->getContentsMargins( &left, &top, &right, &bottom );
|
---|
490 | layoutRect.adjust( left, top, -right, -bottom );
|
---|
491 | }
|
---|
492 |
|
---|
493 | QwtPlotLayout *layout = plot->plotLayout();
|
---|
494 |
|
---|
495 | int baseLineDists[QwtPlot::axisCnt];
|
---|
496 | int canvasMargins[QwtPlot::axisCnt];
|
---|
497 |
|
---|
498 | for ( int axisId = 0; axisId < QwtPlot::axisCnt; axisId++ )
|
---|
499 | {
|
---|
500 | canvasMargins[ axisId ] = layout->canvasMargin( axisId );
|
---|
501 |
|
---|
502 | if ( d_data->layoutFlags & FrameWithScales )
|
---|
503 | {
|
---|
504 | QwtScaleWidget *scaleWidget = plot->axisWidget( axisId );
|
---|
505 | if ( scaleWidget )
|
---|
506 | {
|
---|
507 | baseLineDists[axisId] = scaleWidget->margin();
|
---|
508 | scaleWidget->setMargin( 0 );
|
---|
509 | }
|
---|
510 |
|
---|
511 | if ( !plot->axisEnabled( axisId ) )
|
---|
512 | {
|
---|
513 | // When we have a scale the frame is painted on
|
---|
514 | // the position of the backbone - otherwise we
|
---|
515 | // need to introduce a margin around the canvas
|
---|
516 |
|
---|
517 | switch( axisId )
|
---|
518 | {
|
---|
519 | case QwtPlot::yLeft:
|
---|
520 | layoutRect.adjust( 1, 0, 0, 0 );
|
---|
521 | break;
|
---|
522 | case QwtPlot::yRight:
|
---|
523 | layoutRect.adjust( 0, 0, -1, 0 );
|
---|
524 | break;
|
---|
525 | case QwtPlot::xTop:
|
---|
526 | layoutRect.adjust( 0, 1, 0, 0 );
|
---|
527 | break;
|
---|
528 | case QwtPlot::xBottom:
|
---|
529 | layoutRect.adjust( 0, 0, 0, -1 );
|
---|
530 | break;
|
---|
531 | default:
|
---|
532 | break;
|
---|
533 | }
|
---|
534 | }
|
---|
535 | }
|
---|
536 | }
|
---|
537 |
|
---|
538 | // Calculate the layout for the document.
|
---|
539 |
|
---|
540 | QwtPlotLayout::Options layoutOptions = QwtPlotLayout::IgnoreScrollbars;
|
---|
541 |
|
---|
542 | if ( ( d_data->layoutFlags & FrameWithScales ) ||
|
---|
543 | ( d_data->discardFlags & DiscardCanvasFrame ) )
|
---|
544 | {
|
---|
545 | layoutOptions |= QwtPlotLayout::IgnoreFrames;
|
---|
546 | }
|
---|
547 |
|
---|
548 | if ( d_data->discardFlags & DiscardLegend )
|
---|
549 | layoutOptions |= QwtPlotLayout::IgnoreLegend;
|
---|
550 |
|
---|
551 | if ( d_data->discardFlags & DiscardTitle )
|
---|
552 | layoutOptions |= QwtPlotLayout::IgnoreTitle;
|
---|
553 |
|
---|
554 | if ( d_data->discardFlags & DiscardFooter )
|
---|
555 | layoutOptions |= QwtPlotLayout::IgnoreFooter;
|
---|
556 |
|
---|
557 | layout->activate( plot, layoutRect, layoutOptions );
|
---|
558 |
|
---|
559 | // canvas
|
---|
560 |
|
---|
561 | QwtScaleMap maps[QwtPlot::axisCnt];
|
---|
562 | buildCanvasMaps( plot, layout->canvasRect(), maps );
|
---|
563 | if ( updateCanvasMargins( plot, layout->canvasRect(), maps ) )
|
---|
564 | {
|
---|
565 | // recalculate maps and layout, when the margins
|
---|
566 | // have been changed
|
---|
567 |
|
---|
568 | layout->activate( plot, layoutRect, layoutOptions );
|
---|
569 | buildCanvasMaps( plot, layout->canvasRect(), maps );
|
---|
570 | }
|
---|
571 |
|
---|
572 | // now start painting
|
---|
573 |
|
---|
574 | painter->save();
|
---|
575 | painter->setWorldTransform( transform, true );
|
---|
576 |
|
---|
577 | renderCanvas( plot, painter, layout->canvasRect(), maps );
|
---|
578 |
|
---|
579 | if ( !( d_data->discardFlags & DiscardTitle )
|
---|
580 | && ( !plot->titleLabel()->text().isEmpty() ) )
|
---|
581 | {
|
---|
582 | renderTitle( plot, painter, layout->titleRect() );
|
---|
583 | }
|
---|
584 |
|
---|
585 | if ( !( d_data->discardFlags & DiscardFooter )
|
---|
586 | && ( !plot->footerLabel()->text().isEmpty() ) )
|
---|
587 | {
|
---|
588 | renderFooter( plot, painter, layout->footerRect() );
|
---|
589 | }
|
---|
590 |
|
---|
591 | if ( !( d_data->discardFlags & DiscardLegend )
|
---|
592 | && plot->legend() && !plot->legend()->isEmpty() )
|
---|
593 | {
|
---|
594 | renderLegend( plot, painter, layout->legendRect() );
|
---|
595 | }
|
---|
596 |
|
---|
597 | for ( int axisId = 0; axisId < QwtPlot::axisCnt; axisId++ )
|
---|
598 | {
|
---|
599 | QwtScaleWidget *scaleWidget = plot->axisWidget( axisId );
|
---|
600 | if ( scaleWidget )
|
---|
601 | {
|
---|
602 | int baseDist = scaleWidget->margin();
|
---|
603 |
|
---|
604 | int startDist, endDist;
|
---|
605 | scaleWidget->getBorderDistHint( startDist, endDist );
|
---|
606 |
|
---|
607 | renderScale( plot, painter, axisId, startDist, endDist,
|
---|
608 | baseDist, layout->scaleRect( axisId ) );
|
---|
609 | }
|
---|
610 | }
|
---|
611 |
|
---|
612 | painter->restore();
|
---|
613 |
|
---|
614 | // restore all setting to their original attributes.
|
---|
615 | for ( int axisId = 0; axisId < QwtPlot::axisCnt; axisId++ )
|
---|
616 | {
|
---|
617 | if ( d_data->layoutFlags & FrameWithScales )
|
---|
618 | {
|
---|
619 | QwtScaleWidget *scaleWidget = plot->axisWidget( axisId );
|
---|
620 | if ( scaleWidget )
|
---|
621 | scaleWidget->setMargin( baseLineDists[axisId] );
|
---|
622 | }
|
---|
623 |
|
---|
624 | layout->setCanvasMargin( canvasMargins[axisId] );
|
---|
625 | }
|
---|
626 |
|
---|
627 | layout->invalidate();
|
---|
628 |
|
---|
629 | }
|
---|
630 |
|
---|
631 | /*!
|
---|
632 | Render the title into a given rectangle.
|
---|
633 |
|
---|
634 | \param plot Plot widget
|
---|
635 | \param painter Painter
|
---|
636 | \param titleRect Bounding rectangle for the title
|
---|
637 | */
|
---|
638 | void QwtPlotRenderer::renderTitle( const QwtPlot *plot,
|
---|
639 | QPainter *painter, const QRectF &titleRect ) const
|
---|
640 | {
|
---|
641 | painter->setFont( qwtResolvedFont( plot->titleLabel() ) );
|
---|
642 |
|
---|
643 | const QColor color = plot->titleLabel()->palette().color(
|
---|
644 | QPalette::Active, QPalette::Text );
|
---|
645 |
|
---|
646 | painter->setPen( color );
|
---|
647 | plot->titleLabel()->text().draw( painter, titleRect );
|
---|
648 | }
|
---|
649 |
|
---|
650 | /*!
|
---|
651 | Render the footer into a given rectangle.
|
---|
652 |
|
---|
653 | \param plot Plot widget
|
---|
654 | \param painter Painter
|
---|
655 | \param footerRect Bounding rectangle for the footer
|
---|
656 | */
|
---|
657 | void QwtPlotRenderer::renderFooter( const QwtPlot *plot,
|
---|
658 | QPainter *painter, const QRectF &footerRect ) const
|
---|
659 | {
|
---|
660 | painter->setFont( qwtResolvedFont( plot->footerLabel() ) );
|
---|
661 |
|
---|
662 | const QColor color = plot->footerLabel()->palette().color(
|
---|
663 | QPalette::Active, QPalette::Text );
|
---|
664 |
|
---|
665 | painter->setPen( color );
|
---|
666 | plot->footerLabel()->text().draw( painter, footerRect );
|
---|
667 | }
|
---|
668 |
|
---|
669 | /*!
|
---|
670 | Render the legend into a given rectangle.
|
---|
671 |
|
---|
672 | \param plot Plot widget
|
---|
673 | \param painter Painter
|
---|
674 | \param legendRect Bounding rectangle for the legend
|
---|
675 | */
|
---|
676 | void QwtPlotRenderer::renderLegend( const QwtPlot *plot,
|
---|
677 | QPainter *painter, const QRectF &legendRect ) const
|
---|
678 | {
|
---|
679 | if ( plot->legend() )
|
---|
680 | {
|
---|
681 | bool fillBackground = !( d_data->discardFlags & DiscardBackground );
|
---|
682 | plot->legend()->renderLegend( painter, legendRect, fillBackground );
|
---|
683 | }
|
---|
684 | }
|
---|
685 |
|
---|
686 | /*!
|
---|
687 | \brief Paint a scale into a given rectangle.
|
---|
688 | Paint the scale into a given rectangle.
|
---|
689 |
|
---|
690 | \param plot Plot widget
|
---|
691 | \param painter Painter
|
---|
692 | \param axisId Axis
|
---|
693 | \param startDist Start border distance
|
---|
694 | \param endDist End border distance
|
---|
695 | \param baseDist Base distance
|
---|
696 | \param scaleRect Bounding rectangle for the scale
|
---|
697 | */
|
---|
698 | void QwtPlotRenderer::renderScale( const QwtPlot *plot,
|
---|
699 | QPainter *painter,
|
---|
700 | int axisId, int startDist, int endDist, int baseDist,
|
---|
701 | const QRectF &scaleRect ) const
|
---|
702 | {
|
---|
703 | if ( !plot->axisEnabled( axisId ) )
|
---|
704 | return;
|
---|
705 |
|
---|
706 | const QwtScaleWidget *scaleWidget = plot->axisWidget( axisId );
|
---|
707 | if ( scaleWidget->isColorBarEnabled()
|
---|
708 | && scaleWidget->colorBarWidth() > 0 )
|
---|
709 | {
|
---|
710 | scaleWidget->drawColorBar( painter, scaleWidget->colorBarRect( scaleRect ) );
|
---|
711 | baseDist += scaleWidget->colorBarWidth() + scaleWidget->spacing();
|
---|
712 | }
|
---|
713 |
|
---|
714 | painter->save();
|
---|
715 |
|
---|
716 | QwtScaleDraw::Alignment align;
|
---|
717 | double x, y, w;
|
---|
718 |
|
---|
719 | switch ( axisId )
|
---|
720 | {
|
---|
721 | case QwtPlot::yLeft:
|
---|
722 | {
|
---|
723 | x = scaleRect.right() - 1.0 - baseDist;
|
---|
724 | y = scaleRect.y() + startDist;
|
---|
725 | w = scaleRect.height() - startDist - endDist;
|
---|
726 | align = QwtScaleDraw::LeftScale;
|
---|
727 | break;
|
---|
728 | }
|
---|
729 | case QwtPlot::yRight:
|
---|
730 | {
|
---|
731 | x = scaleRect.left() + baseDist;
|
---|
732 | y = scaleRect.y() + startDist;
|
---|
733 | w = scaleRect.height() - startDist - endDist;
|
---|
734 | align = QwtScaleDraw::RightScale;
|
---|
735 | break;
|
---|
736 | }
|
---|
737 | case QwtPlot::xTop:
|
---|
738 | {
|
---|
739 | x = scaleRect.left() + startDist;
|
---|
740 | y = scaleRect.bottom() - 1.0 - baseDist;
|
---|
741 | w = scaleRect.width() - startDist - endDist;
|
---|
742 | align = QwtScaleDraw::TopScale;
|
---|
743 | break;
|
---|
744 | }
|
---|
745 | case QwtPlot::xBottom:
|
---|
746 | {
|
---|
747 | x = scaleRect.left() + startDist;
|
---|
748 | y = scaleRect.top() + baseDist;
|
---|
749 | w = scaleRect.width() - startDist - endDist;
|
---|
750 | align = QwtScaleDraw::BottomScale;
|
---|
751 | break;
|
---|
752 | }
|
---|
753 | default:
|
---|
754 | return;
|
---|
755 | }
|
---|
756 |
|
---|
757 | scaleWidget->drawTitle( painter, align, scaleRect );
|
---|
758 |
|
---|
759 | painter->setFont( qwtResolvedFont( scaleWidget ) );
|
---|
760 |
|
---|
761 | QwtScaleDraw *sd = const_cast<QwtScaleDraw *>( scaleWidget->scaleDraw() );
|
---|
762 | const QPointF sdPos = sd->pos();
|
---|
763 | const double sdLength = sd->length();
|
---|
764 |
|
---|
765 | sd->move( x, y );
|
---|
766 | sd->setLength( w );
|
---|
767 |
|
---|
768 | QPalette palette = scaleWidget->palette();
|
---|
769 | palette.setCurrentColorGroup( QPalette::Active );
|
---|
770 | sd->draw( painter, palette );
|
---|
771 |
|
---|
772 | // reset previous values
|
---|
773 | sd->move( sdPos );
|
---|
774 | sd->setLength( sdLength );
|
---|
775 |
|
---|
776 | painter->restore();
|
---|
777 | }
|
---|
778 |
|
---|
779 | /*!
|
---|
780 | Render the canvas into a given rectangle.
|
---|
781 |
|
---|
782 | \param plot Plot widget
|
---|
783 | \param painter Painter
|
---|
784 | \param maps Maps mapping between plot and paint device coordinates
|
---|
785 | \param canvasRect Canvas rectangle
|
---|
786 | */
|
---|
787 | void QwtPlotRenderer::renderCanvas( const QwtPlot *plot,
|
---|
788 | QPainter *painter, const QRectF &canvasRect,
|
---|
789 | const QwtScaleMap *maps ) const
|
---|
790 | {
|
---|
791 | const QWidget *canvas = plot->canvas();
|
---|
792 |
|
---|
793 | QRectF r = canvasRect.adjusted( 0.0, 0.0, -1.0, -1.0 );
|
---|
794 |
|
---|
795 | if ( d_data->layoutFlags & FrameWithScales )
|
---|
796 | {
|
---|
797 | painter->save();
|
---|
798 |
|
---|
799 | r.adjust( -1.0, -1.0, 1.0, 1.0 );
|
---|
800 | painter->setPen( QPen( Qt::black ) );
|
---|
801 |
|
---|
802 | if ( !( d_data->discardFlags & DiscardCanvasBackground ) )
|
---|
803 | {
|
---|
804 | const QBrush bgBrush =
|
---|
805 | canvas->palette().brush( plot->backgroundRole() );
|
---|
806 | painter->setBrush( bgBrush );
|
---|
807 | }
|
---|
808 |
|
---|
809 | QwtPainter::drawRect( painter, r );
|
---|
810 |
|
---|
811 | painter->restore();
|
---|
812 | painter->save();
|
---|
813 |
|
---|
814 | painter->setClipRect( canvasRect );
|
---|
815 | plot->drawItems( painter, canvasRect, maps );
|
---|
816 |
|
---|
817 | painter->restore();
|
---|
818 | }
|
---|
819 | else if ( canvas->testAttribute( Qt::WA_StyledBackground ) )
|
---|
820 | {
|
---|
821 | QPainterPath clipPath;
|
---|
822 |
|
---|
823 | painter->save();
|
---|
824 |
|
---|
825 | if ( !( d_data->discardFlags & DiscardCanvasBackground ) )
|
---|
826 | {
|
---|
827 | QwtPainter::drawBackgound( painter, r, canvas );
|
---|
828 | clipPath = qwtCanvasClip( canvas, canvasRect );
|
---|
829 | }
|
---|
830 |
|
---|
831 | painter->restore();
|
---|
832 | painter->save();
|
---|
833 |
|
---|
834 | if ( clipPath.isEmpty() )
|
---|
835 | painter->setClipRect( canvasRect );
|
---|
836 | else
|
---|
837 | painter->setClipPath( clipPath );
|
---|
838 |
|
---|
839 | plot->drawItems( painter, canvasRect, maps );
|
---|
840 |
|
---|
841 | painter->restore();
|
---|
842 | }
|
---|
843 | else
|
---|
844 | {
|
---|
845 | QPainterPath clipPath;
|
---|
846 |
|
---|
847 | int frameWidth = 0;
|
---|
848 |
|
---|
849 | if ( !( d_data->discardFlags & DiscardCanvasFrame ) )
|
---|
850 | {
|
---|
851 | const QVariant fw = canvas->property( "frameWidth" );
|
---|
852 | if ( fw.type() == QVariant::Int )
|
---|
853 | frameWidth = fw.toInt();
|
---|
854 |
|
---|
855 | clipPath = qwtCanvasClip( canvas, canvasRect );
|
---|
856 | }
|
---|
857 |
|
---|
858 | QRectF innerRect = canvasRect.adjusted(
|
---|
859 | frameWidth, frameWidth, -frameWidth, -frameWidth );
|
---|
860 |
|
---|
861 | painter->save();
|
---|
862 |
|
---|
863 | if ( clipPath.isEmpty() )
|
---|
864 | {
|
---|
865 | painter->setClipRect( innerRect );
|
---|
866 | }
|
---|
867 | else
|
---|
868 | {
|
---|
869 | painter->setClipPath( clipPath );
|
---|
870 | }
|
---|
871 |
|
---|
872 | if ( !( d_data->discardFlags & DiscardCanvasBackground ) )
|
---|
873 | {
|
---|
874 | QwtPainter::drawBackgound( painter, innerRect, canvas );
|
---|
875 | }
|
---|
876 |
|
---|
877 | plot->drawItems( painter, innerRect, maps );
|
---|
878 |
|
---|
879 | painter->restore();
|
---|
880 |
|
---|
881 | if ( frameWidth > 0 )
|
---|
882 | {
|
---|
883 | painter->save();
|
---|
884 |
|
---|
885 | const int frameStyle =
|
---|
886 | canvas->property( "frameShadow" ).toInt() |
|
---|
887 | canvas->property( "frameShape" ).toInt();
|
---|
888 |
|
---|
889 | const QVariant borderRadius = canvas->property( "borderRadius" );
|
---|
890 | if ( borderRadius.type() == QVariant::Double
|
---|
891 | && borderRadius.toDouble() > 0.0 )
|
---|
892 | {
|
---|
893 | const double radius = borderRadius.toDouble();
|
---|
894 |
|
---|
895 | QwtPainter::drawRoundedFrame( painter, canvasRect,
|
---|
896 | radius, radius, canvas->palette(), frameWidth, frameStyle );
|
---|
897 | }
|
---|
898 | else
|
---|
899 | {
|
---|
900 | const int midLineWidth = canvas->property( "midLineWidth" ).toInt();
|
---|
901 |
|
---|
902 | QwtPainter::drawFrame( painter, canvasRect,
|
---|
903 | canvas->palette(), canvas->foregroundRole(),
|
---|
904 | frameWidth, midLineWidth, frameStyle );
|
---|
905 | }
|
---|
906 | painter->restore();
|
---|
907 | }
|
---|
908 | }
|
---|
909 | }
|
---|
910 |
|
---|
911 | /*!
|
---|
912 | Calculated the scale maps for rendering the canvas
|
---|
913 |
|
---|
914 | \param plot Plot widget
|
---|
915 | \param canvasRect Target rectangle
|
---|
916 | \param maps Scale maps to be calculated
|
---|
917 | */
|
---|
918 | void QwtPlotRenderer::buildCanvasMaps( const QwtPlot *plot,
|
---|
919 | const QRectF &canvasRect, QwtScaleMap maps[] ) const
|
---|
920 | {
|
---|
921 | for ( int axisId = 0; axisId < QwtPlot::axisCnt; axisId++ )
|
---|
922 | {
|
---|
923 | maps[axisId].setTransformation(
|
---|
924 | plot->axisScaleEngine( axisId )->transformation() );
|
---|
925 |
|
---|
926 | const QwtScaleDiv &scaleDiv = plot->axisScaleDiv( axisId );
|
---|
927 | maps[axisId].setScaleInterval(
|
---|
928 | scaleDiv.lowerBound(), scaleDiv.upperBound() );
|
---|
929 |
|
---|
930 | double from, to;
|
---|
931 | if ( plot->axisEnabled( axisId ) )
|
---|
932 | {
|
---|
933 | const int sDist = plot->axisWidget( axisId )->startBorderDist();
|
---|
934 | const int eDist = plot->axisWidget( axisId )->endBorderDist();
|
---|
935 | const QRectF scaleRect = plot->plotLayout()->scaleRect( axisId );
|
---|
936 |
|
---|
937 | if ( axisId == QwtPlot::xTop || axisId == QwtPlot::xBottom )
|
---|
938 | {
|
---|
939 | from = scaleRect.left() + sDist;
|
---|
940 | to = scaleRect.right() - eDist;
|
---|
941 | }
|
---|
942 | else
|
---|
943 | {
|
---|
944 | from = scaleRect.bottom() - eDist;
|
---|
945 | to = scaleRect.top() + sDist;
|
---|
946 | }
|
---|
947 | }
|
---|
948 | else
|
---|
949 | {
|
---|
950 | int margin = 0;
|
---|
951 | if ( !plot->plotLayout()->alignCanvasToScale( axisId ) )
|
---|
952 | margin = plot->plotLayout()->canvasMargin( axisId );
|
---|
953 |
|
---|
954 | if ( axisId == QwtPlot::yLeft || axisId == QwtPlot::yRight )
|
---|
955 | {
|
---|
956 | from = canvasRect.bottom() - margin;
|
---|
957 | to = canvasRect.top() + margin;
|
---|
958 | }
|
---|
959 | else
|
---|
960 | {
|
---|
961 | from = canvasRect.left() + margin;
|
---|
962 | to = canvasRect.right() - margin;
|
---|
963 | }
|
---|
964 | }
|
---|
965 | maps[axisId].setPaintInterval( from, to );
|
---|
966 | }
|
---|
967 | }
|
---|
968 |
|
---|
969 | bool QwtPlotRenderer::updateCanvasMargins( QwtPlot *plot,
|
---|
970 | const QRectF &canvasRect, const QwtScaleMap maps[] ) const
|
---|
971 | {
|
---|
972 | double margins[QwtPlot::axisCnt];
|
---|
973 | plot->getCanvasMarginsHint( maps, canvasRect,
|
---|
974 | margins[QwtPlot::yLeft], margins[QwtPlot::xTop],
|
---|
975 | margins[QwtPlot::yRight], margins[QwtPlot::xBottom] );
|
---|
976 |
|
---|
977 | bool marginsChanged = false;
|
---|
978 | for ( int axisId = 0; axisId < QwtPlot::axisCnt; axisId++ )
|
---|
979 | {
|
---|
980 | if ( margins[axisId] >= 0.0 )
|
---|
981 | {
|
---|
982 | const int m = qCeil( margins[axisId] );
|
---|
983 | plot->plotLayout()->setCanvasMargin( m, axisId);
|
---|
984 | marginsChanged = true;
|
---|
985 | }
|
---|
986 | }
|
---|
987 |
|
---|
988 | return marginsChanged;
|
---|
989 | }
|
---|
990 |
|
---|
991 | /*!
|
---|
992 | \brief Execute a file dialog and render the plot to the selected file
|
---|
993 |
|
---|
994 | \param plot Plot widget
|
---|
995 | \param documentName Default document name
|
---|
996 | \param sizeMM Size for the document in millimeters.
|
---|
997 | \param resolution Resolution in dots per Inch (dpi)
|
---|
998 |
|
---|
999 | \return True, when exporting was successful
|
---|
1000 | \sa renderDocument()
|
---|
1001 | */
|
---|
1002 | bool QwtPlotRenderer::exportTo( QwtPlot *plot, const QString &documentName,
|
---|
1003 | const QSizeF &sizeMM, int resolution )
|
---|
1004 | {
|
---|
1005 | if ( plot == NULL )
|
---|
1006 | return false;
|
---|
1007 |
|
---|
1008 | QString fileName = documentName;
|
---|
1009 |
|
---|
1010 | // What about translation
|
---|
1011 |
|
---|
1012 | #ifndef QT_NO_FILEDIALOG
|
---|
1013 | const QList<QByteArray> imageFormats =
|
---|
1014 | QImageWriter::supportedImageFormats();
|
---|
1015 |
|
---|
1016 | QStringList filter;
|
---|
1017 | #if QWT_FORMAT_PDF
|
---|
1018 | filter += QString( "PDF " ) + tr( "Documents" ) + " (*.pdf)";
|
---|
1019 | #endif
|
---|
1020 | #if QWT_FORMAT_SVG
|
---|
1021 | filter += QString( "SVG " ) + tr( "Documents" ) + " (*.svg)";
|
---|
1022 | #endif
|
---|
1023 | #if QWT_FORMAT_POSTSCRIPT
|
---|
1024 | filter += QString( "Postscript " ) + tr( "Documents" ) + " (*.ps)";
|
---|
1025 | #endif
|
---|
1026 |
|
---|
1027 | if ( imageFormats.size() > 0 )
|
---|
1028 | {
|
---|
1029 | QString imageFilter( tr( "Images" ) );
|
---|
1030 | imageFilter += " (";
|
---|
1031 | for ( int i = 0; i < imageFormats.size(); i++ )
|
---|
1032 | {
|
---|
1033 | if ( i > 0 )
|
---|
1034 | imageFilter += " ";
|
---|
1035 | imageFilter += "*.";
|
---|
1036 | imageFilter += imageFormats[i];
|
---|
1037 | }
|
---|
1038 | imageFilter += ")";
|
---|
1039 |
|
---|
1040 | filter += imageFilter;
|
---|
1041 | }
|
---|
1042 |
|
---|
1043 | fileName = QFileDialog::getSaveFileName(
|
---|
1044 | NULL, tr( "Export File Name" ), fileName,
|
---|
1045 | filter.join( ";;" ), NULL, QFileDialog::DontConfirmOverwrite );
|
---|
1046 | #endif
|
---|
1047 | if ( fileName.isEmpty() )
|
---|
1048 | return false;
|
---|
1049 |
|
---|
1050 | renderDocument( plot, fileName, sizeMM, resolution );
|
---|
1051 |
|
---|
1052 | return true;
|
---|
1053 | }
|
---|