1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739
|
# -*- coding: utf-8 -*-
#
# Licensed under the terms of the Qwt License
# Copyright (c) 2002 Uwe Rathmann, for the original C++ code
# Copyright (c) 2015 Pierre Raybaut, for the Python translation/optimization
# (see LICENSE file for more details)
"""
QwtPlotRenderer
---------------
.. autoclass:: QwtPlotRenderer
:members:
"""
import math
import os.path as osp
from qtpy.compat import getsavefilename
from qtpy.QtCore import QObject, QRect, QRectF, QSizeF, Qt
from qtpy.QtGui import (
QColor,
QImage,
QImageWriter,
QPageSize,
QPaintDevice,
QPainter,
QPainterPath,
QPalette,
QPen,
QTransform,
)
from qtpy.QtPrintSupport import QPrinter
from qtpy.QtSvg import QSvgGenerator
from qtpy.QtWidgets import QFileDialog
from qwt.painter import QwtPainter
from qwt.plot import QwtPlot
from qwt.plot_layout import QwtPlotLayout
from qwt.scale_draw import QwtScaleDraw
from qwt.scale_map import QwtScaleMap
def qwtCanvasClip(canvas, canvasRect):
"""
The clip region is calculated in integers
To avoid too much rounding errors better
calculate it in target device resolution
"""
x1 = math.ceil(canvasRect.left())
x2 = math.floor(canvasRect.right())
y1 = math.ceil(canvasRect.top())
y2 = math.floor(canvasRect.bottom())
r = QRect(x1, y1, x2 - x1 - 1, y2 - y1 - 1)
return canvas.borderPath(r)
class QwtPlotRenderer_PrivateData(QObject):
def __init__(self):
QObject.__init__(self)
self.discardFlags = QwtPlotRenderer.DiscardNone
self.layoutFlags = QwtPlotRenderer.DefaultLayout
class QwtPlotRenderer(QObject):
"""
Renderer for exporting a plot to a document, a printer
or anything else, that is supported by QPainter/QPaintDevice
Discard flags:
* `QwtPlotRenderer.DiscardNone`: Render all components of the plot
* `QwtPlotRenderer.DiscardBackground`: Don't render the background of the plot
* `QwtPlotRenderer.DiscardTitle`: Don't render the title of the plot
* `QwtPlotRenderer.DiscardLegend`: Don't render the legend of the plot
* `QwtPlotRenderer.DiscardCanvasBackground`: Don't render the background of the canvas
* `QwtPlotRenderer.DiscardFooter`: Don't render the footer of the plot
* `QwtPlotRenderer.DiscardCanvasFrame`: Don't render the frame of the canvas
.. note::
The `QwtPlotRenderer.DiscardCanvasFrame` flag has no effect when using
style sheets, where the frame is part of the background
Layout flags:
* `QwtPlotRenderer.DefaultLayout`: Use the default layout as on screen
* `QwtPlotRenderer.FrameWithScales`: Instead of the scales a box is painted around the plot canvas, where the scale ticks are aligned to.
"""
# enum DiscardFlag
DiscardNone = 0x00
DiscardBackground = 0x01
DiscardTitle = 0x02
DiscardLegend = 0x04
DiscardCanvasBackground = 0x08
DiscardFooter = 0x10
DiscardCanvasFrame = 0x20
# enum LayoutFlag
DefaultLayout = 0x00
FrameWithScales = 0x01
def __init__(self, parent=None):
QObject.__init__(self, parent)
self.__data = QwtPlotRenderer_PrivateData()
def setDiscardFlag(self, flag, on=True):
"""
Change a flag, indicating what to discard from rendering
:param int flag: Flag to change
:param bool on: On/Off
.. seealso::
:py:meth:`testDiscardFlag()`, :py:meth:`setDiscardFlags()`,
:py:meth:`discardFlags()`
"""
if on:
self.__data.discardFlags |= flag
else:
self.__data.discardFlags &= ~flag
def testDiscardFlag(self, flag):
"""
:param int flag: Flag to be tested
:return: True, if flag is enabled.
.. seealso::
:py:meth:`setDiscardFlag()`, :py:meth:`setDiscardFlags()`,
:py:meth:`discardFlags()`
"""
return self.__data.discardFlags & flag
def setDiscardFlags(self, flags):
"""
Set the flags, indicating what to discard from rendering
:param int flags: Flags
.. seealso::
:py:meth:`testDiscardFlag()`, :py:meth:`setDiscardFlag()`,
:py:meth:`discardFlags()`
"""
self.__data.discardFlags = flags
def discardFlags(self):
"""
:return: Flags, indicating what to discard from rendering
.. seealso::
:py:meth:`setDiscardFlag()`, :py:meth:`setDiscardFlags()`,
:py:meth:`testDiscardFlag()`
"""
return self.__data.discardFlags
def setLayoutFlag(self, flag, on=True):
"""
Change a layout flag
:param int flag: Flag to change
.. seealso::
:py:meth:`testLayoutFlag()`, :py:meth:`setLayoutFlags()`,
:py:meth:`layoutFlags()`
"""
if on:
self.__data.layoutFlags |= flag
else:
self.__data.layoutFlags &= ~flag
def testLayoutFlag(self, flag):
"""
:param int flag: Flag to be tested
:return: True, if flag is enabled.
.. seealso::
:py:meth:`setLayoutFlag()`, :py:meth:`setLayoutFlags()`,
:py:meth:`layoutFlags()`
"""
return self.__data.layoutFlags & flag
def setLayoutFlags(self, flags):
"""
Set the layout flags
:param int flags: Flags
.. seealso::
:py:meth:`setLayoutFlag()`, :py:meth:`testLayoutFlag()`,
:py:meth:`layoutFlags()`
"""
self.__data.layoutFlags = flags
def layoutFlags(self):
"""
:return: Layout flags
.. seealso::
:py:meth:`setLayoutFlags()`, :py:meth:`setLayoutFlag()`,
:py:meth:`testLayoutFlag()`
"""
return self.__data.layoutFlags
def renderDocument(
self, plot, filename, sizeMM=(300, 200), resolution=85, format_=None
):
"""
Render a plot to a file
The format of the document will be auto-detected from the
suffix of the file name.
:param qwt.plot.QwtPlot plot: Plot widget
:param str fileName: Path of the file, where the document will be stored
:param QSizeF sizeMM: Size for the document in millimeters
:param int resolution: Resolution in dots per Inch (dpi)
"""
if isinstance(sizeMM, tuple):
sizeMM = QSizeF(*sizeMM)
if format_ is None:
ext = osp.splitext(filename)[1]
if not ext:
raise TypeError("Unable to determine target format from filename")
format_ = ext[1:]
if plot is None or sizeMM.isEmpty() or resolution <= 0:
return
title = plot.title().text()
if not title:
title = "Plot Document"
mmToInch = 1.0 / 25.4
size = sizeMM * mmToInch * resolution
documentRect = QRectF(0.0, 0.0, size.width(), size.height())
fmt = format_.lower()
if fmt in ("pdf", "ps"):
printer = QPrinter()
if fmt == "pdf":
try:
printer.setOutputFormat(QPrinter.PdfFormat)
except AttributeError:
# PyQt6 on Linux
printer.setPrinterName("")
else:
printer.setOutputFormat(QPrinter.PostScriptFormat)
try:
printer.setColorMode(QPrinter.Color)
except AttributeError:
# PyQt6 on Linux
pass
printer.setFullPage(True)
printer.setPageSize(QPageSize(sizeMM, QPageSize.Millimeter))
printer.setDocName(title)
printer.setOutputFileName(filename)
printer.setResolution(resolution)
painter = QPainter(printer)
self.render(plot, painter, documentRect)
painter.end()
elif fmt == "svg":
generator = QSvgGenerator()
generator.setTitle(title)
generator.setFileName(filename)
generator.setResolution(resolution)
generator.setViewBox(documentRect)
painter = QPainter(generator)
self.render(plot, painter, documentRect)
painter.end()
elif fmt in QImageWriter.supportedImageFormats():
imageRect = documentRect.toRect()
dotsPerMeter = int(round(resolution * mmToInch * 1000.0))
image = QImage(imageRect.size(), QImage.Format_ARGB32)
image.setDotsPerMeterX(dotsPerMeter)
image.setDotsPerMeterY(dotsPerMeter)
image.fill(QColor(Qt.white).rgb())
painter = QPainter(image)
self.render(plot, painter, imageRect)
painter.end()
image.save(filename, fmt)
else:
raise TypeError("Unsupported file format '%s'" % fmt)
def renderTo(self, plot, dest):
"""
Render a plot to a file
Supported formats are:
- pdf: Portable Document Format PDF
- ps: Postcript
- svg: Scalable Vector Graphics SVG
- all image formats supported by Qt, see QImageWriter.supportedImageFormats()
Scalable vector graphic formats like PDF or SVG are superior to
raster graphics formats.
:param qwt.plot.QwtPlot plot: Plot widget
:param dest: QPaintDevice, QPrinter or QSvgGenerator instance
.. seealso::
:py:meth:`render()`,
:py:meth:`qwt.painter.QwtPainter.setRoundingAlignment()`
"""
if isinstance(dest, QPaintDevice):
w = dest.width()
h = dest.height()
rect = QRectF(0, 0, w, h)
elif isinstance(dest, QPrinter):
w = dest.width()
h = dest.height()
rect = QRectF(0, 0, w, h)
aspect = rect.width() / rect.height()
if aspect < 1.0:
rect.setHeight(aspect * rect.width())
elif isinstance(dest, QSvgGenerator):
rect = dest.viewBoxF()
if rect.isEmpty():
rect.setRect(0, 0, dest.width(), dest.height())
if rect.isEmpty():
rect.setRect(0, 0, 800, 600)
else:
raise TypeError("Unsupported destination type %s" % type(dest))
p = QPainter(dest)
self.render(plot, p, rect)
def render(self, plot, painter, plotRect):
"""
Paint the contents of a QwtPlot instance into a given rectangle.
:param qwt.plot.QwtPlot plot: Plot to be rendered
:param QPainter painter: Painter
:param str format: Format for the document
:param QRectF plotRect: Bounding rectangle
.. seealso::
:py:meth:`renderDocument()`, :py:meth:`renderTo()`,
:py:meth:`qwt.painter.QwtPainter.setRoundingAlignment()`
"""
if (
painter == 0
or not painter.isActive()
or not plotRect.isValid()
or plot.size().isNull()
):
return
if not self.__data.discardFlags & self.DiscardBackground:
QwtPainter.drawBackground(painter, plotRect, plot)
# The layout engine uses the same methods as they are used
# by the Qt layout system. Therefore we need to calculate the
# layout in screen coordinates and paint with a scaled painter.
transform = QTransform()
transform.scale(
float(painter.device().logicalDpiX()) / plot.logicalDpiX(),
float(painter.device().logicalDpiY()) / plot.logicalDpiY(),
)
invtrans, _ok = transform.inverted()
layoutRect = invtrans.mapRect(plotRect)
if not (self.__data.discardFlags & self.DiscardBackground):
mg = plot.contentsMargins()
layoutRect.adjust(mg.left(), mg.top(), -mg.right(), -mg.bottom())
layout = plot.plotLayout()
baseLineDists = canvasMargins = [None] * len(QwtPlot.AXES)
for axisId in QwtPlot.AXES:
canvasMargins[axisId] = layout.canvasMargin(axisId)
if self.__data.layoutFlags & self.FrameWithScales:
scaleWidget = plot.axisWidget(axisId)
if scaleWidget:
mgn = scaleWidget.contentsMargins()
baseLineDists[axisId] = max(
[mgn.left(), mgn.top(), mgn.right(), mgn.bottom()]
)
scaleWidget.setMargin(0)
if not plot.axisEnabled(axisId):
# When we have a scale the frame is painted on
# the position of the backbone - otherwise we
# need to introduce a margin around the canvas
if axisId == QwtPlot.yLeft:
layoutRect.adjust(1, 0, 0, 0)
elif axisId == QwtPlot.yRight:
layoutRect.adjust(0, 0, -1, 0)
elif axisId == QwtPlot.xTop:
layoutRect.adjust(0, 1, 0, 0)
elif axisId == QwtPlot.xBottom:
layoutRect.adjust(0, 0, 0, -1)
# Calculate the layout for the document.
layoutOptions = QwtPlotLayout.IgnoreScrollbars
if (
self.__data.layoutFlags & self.FrameWithScales
or self.__data.discardFlags & self.DiscardCanvasFrame
):
layoutOptions |= QwtPlotLayout.IgnoreFrames
if self.__data.discardFlags & self.DiscardLegend:
layoutOptions |= QwtPlotLayout.IgnoreLegend
if self.__data.discardFlags & self.DiscardTitle:
layoutOptions |= QwtPlotLayout.IgnoreTitle
if self.__data.discardFlags & self.DiscardFooter:
layoutOptions |= QwtPlotLayout.IgnoreFooter
layout.activate(plot, layoutRect, layoutOptions)
maps = self.buildCanvasMaps(plot, layout.canvasRect())
if self.updateCanvasMargins(plot, layout.canvasRect(), maps):
# recalculate maps and layout, when the margins
# have been changed
layout.activate(plot, layoutRect, layoutOptions)
maps = self.buildCanvasMaps(plot, layout.canvasRect())
painter.save()
painter.setWorldTransform(transform, True)
self.renderCanvas(plot, painter, layout.canvasRect(), maps)
if (
not self.__data.discardFlags & self.DiscardTitle
) and plot.titleLabel().text():
self.renderTitle(plot, painter, layout.titleRect())
if (
not self.__data.discardFlags & self.DiscardFooter
) and plot.titleLabel().text():
self.renderFooter(plot, painter, layout.footerRect())
if (
not self.__data.discardFlags & self.DiscardLegend
) and plot.titleLabel().text():
self.renderLegend(plot, painter, layout.legendRect())
for axisId in QwtPlot.AXES:
scaleWidget = plot.axisWidget(axisId)
if scaleWidget:
mgn = scaleWidget.contentsMargins()
baseDist = max([mgn.left(), mgn.top(), mgn.right(), mgn.bottom()])
startDist, endDist = scaleWidget.getBorderDistHint()
self.renderScale(
plot,
painter,
axisId,
startDist,
endDist,
baseDist,
layout.scaleRect(axisId),
)
painter.restore()
for axisId in QwtPlot.AXES:
if self.__data.layoutFlags & self.FrameWithScales:
scaleWidget = plot.axisWidget(axisId)
if scaleWidget:
scaleWidget.setMargin(baseLineDists[axisId])
layout.setCanvasMargin(canvasMargins[axisId])
layout.invalidate()
def renderTitle(self, plot, painter, rect):
"""
Render the title into a given rectangle.
:param qwt.plot.QwtPlot plot: Plot widget
:param QPainter painter: Painter
:param QRectF rect: Bounding rectangle
"""
painter.setFont(plot.titleLabel().font())
color = plot.titleLabel().palette().color(QPalette.Active, QPalette.Text)
painter.setPen(color)
plot.titleLabel().text().draw(painter, rect)
def renderFooter(self, plot, painter, rect):
"""
Render the footer into a given rectangle.
:param qwt.plot.QwtPlot plot: Plot widget
:param QPainter painter: Painter
:param QRectF rect: Bounding rectangle
"""
painter.setFont(plot.footerLabel().font())
color = plot.footerLabel().palette().color(QPalette.Active, QPalette.Text)
painter.setPen(color)
plot.footerLabel().text().draw(painter, rect)
def renderLegend(self, plot, painter, rect):
"""
Render the legend into a given rectangle.
:param qwt.plot.QwtPlot plot: Plot widget
:param QPainter painter: Painter
:param QRectF rect: Bounding rectangle
"""
if plot.legend():
fillBackground = not self.__data.discardFlags & self.DiscardBackground
plot.legend().renderLegend(painter, rect, fillBackground)
def renderScale(self, plot, painter, axisId, startDist, endDist, baseDist, rect):
"""
Paint a scale into a given rectangle.
Paint the scale into a given rectangle.
:param qwt.plot.QwtPlot plot: Plot widget
:param QPainter painter: Painter
:param int axisId: Axis
:param int startDist: Start border distance
:param int endDist: End border distance
:param int baseDist: Base distance
:param QRectF rect: Bounding rectangle
"""
if not plot.axisEnabled(axisId):
return
scaleWidget = plot.axisWidget(axisId)
if scaleWidget.isColorBarEnabled() and scaleWidget.colorBarWidth() > 0:
scaleWidget.drawColorBar(painter, scaleWidget.colorBarRect(rect))
baseDist += scaleWidget.colorBarWidth() + scaleWidget.spacing()
painter.save()
if axisId == QwtPlot.yLeft:
x = rect.right() - 1.0 - baseDist
y = rect.y() + startDist
w = rect.height() - startDist - endDist
align = QwtScaleDraw.LeftScale
elif axisId == QwtPlot.yRight:
x = rect.left() + baseDist
y = rect.y() + startDist
w = rect.height() - startDist - endDist
align = QwtScaleDraw.RightScale
elif axisId == QwtPlot.xTop:
x = rect.left() + startDist
y = rect.bottom() - 1.0 - baseDist
w = rect.width() - startDist - endDist
align = QwtScaleDraw.TopScale
else: # QwtPlot.xBottom
x = rect.left() + startDist
y = rect.top() + baseDist
w = rect.width() - startDist - endDist
align = QwtScaleDraw.BottomScale
scaleWidget.drawTitle(painter, align, rect)
painter.setFont(scaleWidget.font())
sd = scaleWidget.scaleDraw()
sdPos = sd.pos()
sdLength = sd.length()
sd.move(x, y)
sd.setLength(w)
palette = scaleWidget.palette()
palette.setCurrentColorGroup(QPalette.Active)
sd.draw(painter, palette)
sd.move(sdPos)
sd.setLength(sdLength)
painter.restore()
def renderCanvas(self, plot, painter, canvasRect, maps):
"""
Render the canvas into a given rectangle.
:param qwt.plot.QwtPlot plot: Plot widget
:param QPainter painter: Painter
:param QRectF rect: Bounding rectangle
:param qwt.scale_map.QwtScaleMap maps: mapping between plot and paint device coordinates
"""
canvas = plot.canvas()
r = canvasRect.adjusted(0.0, 0.0, -1.0, 1.0)
if self.__data.layoutFlags & self.FrameWithScales:
painter.save()
r.adjust(-1.0, -1.0, 1.0, 1.0)
painter.setPen(QPen(Qt.black))
if not (self.__data.discardFlags & self.DiscardCanvasBackground):
bgBrush = canvas.palette().brush(plot.backgroundRole())
painter.setBrush(bgBrush)
painter.drawRect(r)
painter.restore()
painter.save()
painter.setClipRect(canvasRect)
plot.drawItems(painter, canvasRect, maps)
painter.restore()
elif canvas.testAttribute(Qt.WA_StyledBackground):
clipPath = QPainterPath()
painter.save()
if not self.__data.discardFlags & self.DiscardCanvasBackground:
QwtPainter.drawBackground(painter, r, canvas)
clipPath = qwtCanvasClip(canvas, canvasRect)
painter.restore()
painter.save()
if clipPath.isEmpty():
painter.setClipRect(canvasRect)
else:
painter.setClipPath(clipPath)
plot.drawItems(painter, canvasRect, maps)
painter.restore()
else:
clipPath = QPainterPath()
frameWidth = 0
if not self.__data.discardFlags & self.DiscardCanvasFrame:
frameWidth = canvas.frameWidth()
clipPath = qwtCanvasClip(canvas, canvasRect)
innerRect = canvasRect.adjusted(
frameWidth, frameWidth, -frameWidth, -frameWidth
)
painter.save()
if clipPath.isEmpty():
painter.setClipRect(innerRect)
else:
painter.setClipPath(clipPath)
if not self.__data.discardFlags & self.DiscardCanvasBackground:
QwtPainter.drawBackground(painter, innerRect, canvas)
plot.drawItems(painter, innerRect, maps)
painter.restore()
if frameWidth > 0:
painter.save()
frameStyle = canvas.frameShadow() | canvas.frameShape()
radius = canvas.borderRadius()
if radius > 0.0:
QwtPainter.drawRoundedFrame(
painter,
canvasRect,
radius,
radius,
canvas.palette(),
frameWidth,
frameStyle,
)
else:
midLineWidth = canvas.midLineWidth()
QwtPainter.drawFrame(
painter,
canvasRect,
canvas.palette(),
canvas.foregroundRole(),
frameWidth,
midLineWidth,
frameStyle,
)
painter.restore()
def buildCanvasMaps(self, plot, canvasRect):
"""
Calculated the scale maps for rendering the canvas
:param qwt.plot.QwtPlot plot: Plot widget
:param QRectF canvasRect: Target rectangle
:return: Calculated scale maps
"""
maps = []
for axisId in QwtPlot.AXES:
map_ = QwtScaleMap()
map_.setTransformation(plot.axisScaleEngine(axisId).transformation())
sd = plot.axisScaleDiv(axisId)
map_.setScaleInterval(sd.lowerBound(), sd.upperBound())
if plot.axisEnabled(axisId):
s = plot.axisWidget(axisId)
scaleRect = plot.plotLayout().scaleRect(axisId)
if axisId in (QwtPlot.xTop, QwtPlot.xBottom):
from_ = scaleRect.left() + s.startBorderDist()
to = scaleRect.right() - s.endBorderDist()
else:
from_ = scaleRect.bottom() - s.endBorderDist()
to = scaleRect.top() + s.startBorderDist()
else:
margin = 0
if not plot.plotLayout().alignCanvasToScale(axisId):
margin = plot.plotLayout().canvasMargin(axisId)
if axisId in (QwtPlot.yLeft, QwtPlot.yRight):
from_ = canvasRect.bottom() - margin
to = canvasRect.top() + margin
else:
from_ = canvasRect.left() + margin
to = canvasRect.right() - margin
map_.setPaintInterval(from_, to)
maps.append(map_)
return maps
def updateCanvasMargins(self, plot, canvasRect, maps):
margins = plot.getCanvasMarginsHint(maps, canvasRect)
marginsChanged = False
for axisId in QwtPlot.AXES:
if margins[axisId] >= 0.0:
m = math.ceil(margins[axisId])
plot.plotLayout().setCanvasMargin(m, axisId)
marginsChanged = True
return marginsChanged
def exportTo(self, plot, documentname, sizeMM=None, resolution=85):
"""
Execute a file dialog and render the plot to the selected file
:param qwt.plot.QwtPlot plot: Plot widget
:param str documentName: Default document name
:param QSizeF sizeMM: Size for the document in millimeters
:param int resolution: Resolution in dots per Inch (dpi)
:return: True, when exporting was successful
.. seealso::
:py:meth:`renderDocument()`
"""
if plot is None:
return
if sizeMM is None:
sizeMM = QSizeF(300, 200)
filename = documentname
imageFormats = QImageWriter.supportedImageFormats()
filter_ = [
"PDF documents (*.pdf)",
"SVG documents (*.svg)",
"Postscript documents (*.ps)",
]
if imageFormats:
imageFilter = "Images"
imageFilter += " ("
for idx, fmt in enumerate(imageFormats):
if idx > 0:
imageFilter += " "
imageFilter += "*." + str(fmt)
imageFilter += ")"
filter_ += [imageFilter]
filename, _s = getsavefilename(
plot,
"Export File Name",
filename,
";;".join(filter_),
options=QFileDialog.DontConfirmOverwrite,
)
if not filename:
return False
self.renderDocument(plot, filename, sizeMM, resolution)
return True
return True
|