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
|
# -*- 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)
"""
QwtPlotGrid
-----------
.. autoclass:: QwtPlotGrid
:members:
"""
from qtpy.QtCore import QLineF, QObject, Qt
from qtpy.QtGui import QPen
from qwt._math import qwtFuzzyGreaterOrEqual, qwtFuzzyLessOrEqual
from qwt.plot import QwtPlotItem
from qwt.qthelpers import qcolor_from_str
from qwt.scale_div import QwtScaleDiv
class QwtPlotGrid_PrivateData(QObject):
def __init__(self):
QObject.__init__(self)
self.xEnabled = True
self.yEnabled = True
self.xMinEnabled = False
self.yMinEnabled = False
self.xScaleDiv = QwtScaleDiv()
self.yScaleDiv = QwtScaleDiv()
self.majorPen = QPen()
self.minorPen = QPen()
class QwtPlotGrid(QwtPlotItem):
"""
A class which draws a coordinate grid
The `QwtPlotGrid` class can be used to draw a coordinate grid.
A coordinate grid consists of major and minor vertical
and horizontal grid lines. The locations of the grid lines
are determined by the X and Y scale divisions which can
be assigned with `setXDiv()` and `setYDiv()`.
The `draw()` member draws the grid within a bounding
rectangle.
"""
def __init__(self, title="Grid"):
QwtPlotItem.__init__(self, title)
self.__data = QwtPlotGrid_PrivateData()
self.setItemInterest(QwtPlotItem.ScaleInterest, True)
self.setZ(10.0)
@classmethod
def make(
cls,
plot=None,
z=None,
enablemajor=None,
enableminor=None,
color=None,
width=None,
style=None,
mincolor=None,
minwidth=None,
minstyle=None,
):
"""
Create and setup a new `QwtPlotGrid` object (convenience function).
:param plot: Plot to attach the curve to
:type plot: qwt.plot.QwtPlot or None
:param z: Z-value
:type z: float or None
:param enablemajor: Tuple of two boolean values (x, y) for enabling major grid lines
:type enablemajor: bool or None
:param enableminor: Tuple of two boolean values (x, y) for enabling minor grid lines
:type enableminor: bool or None
:param color: Pen color for both major and minor grid lines (default: Qt.gray)
:type color: QColor or str or None
:param width: Pen width for both major and minor grid lines (default: 1.0)
:type width: float or None
:param style: Pen style for both major and minor grid lines (default: Qt.DotLine)
:type style: Qt.PenStyle or None
:param mincolor: Pen color for minor grid lines only (default: Qt.gray)
:type mincolor: QColor or str or None
:param minwidth: Pen width for minor grid lines only (default: 1.0)
:type minwidth: float or None
:param minstyle: Pen style for minor grid lines only (default: Qt.DotLine)
:type minstyle: Qt.PenStyle or None
.. seealso::
:py:meth:`setMinorPen()`, :py:meth:`setMajorPen()`
"""
item = cls()
if z is not None:
item.setZ(z)
color = qcolor_from_str(color, Qt.gray)
width = 1.0 if width is None else float(width)
style = Qt.DotLine if style is None else style
item.setPen(QPen(color, width, style))
if mincolor is not None or minwidth is not None or minstyle is not None:
mincolor = qcolor_from_str(mincolor, Qt.gray)
minwidth = 1.0 if width is None else minwidth
minstyle = Qt.DotLine if style is None else minstyle
item.setMinorPen(QPen(mincolor, minwidth, minstyle))
if enablemajor is not None:
if isinstance(enablemajor, tuple) and len(enablemajor) == 2:
item.enableX(enablemajor[0])
item.enableY(enablemajor[1])
else:
raise TypeError(
"Invalid enablemajor %r (expecting tuple of two booleans)"
% enablemajor
)
if enableminor is not None:
if isinstance(enableminor, tuple) and len(enableminor) == 2:
item.enableXMin(enableminor[0])
item.enableYMin(enableminor[1])
else:
raise TypeError(
"Invalid enableminor %r (expecting tuple of two booleans)"
% enableminor
)
if plot is not None:
item.attach(plot)
return item
def rtti(self):
"""
:return: Return `QwtPlotItem.Rtti_PlotGrid`
"""
return QwtPlotItem.Rtti_PlotGrid
def enableX(self, on):
"""
Enable or disable vertical grid lines
:param bool on: Enable (true) or disable
.. seealso::
:py:meth:`enableXMin()`
"""
if self.__data.xEnabled != on:
self.__data.xEnabled = on
self.legendChanged()
self.itemChanged()
def enableY(self, on):
"""
Enable or disable horizontal grid lines
:param bool on: Enable (true) or disable
.. seealso::
:py:meth:`enableYMin()`
"""
if self.__data.yEnabled != on:
self.__data.yEnabled = on
self.legendChanged()
self.itemChanged()
def enableXMin(self, on):
"""
Enable or disable minor vertical grid lines.
:param bool on: Enable (true) or disable
.. seealso::
:py:meth:`enableX()`
"""
if self.__data.xMinEnabled != on:
self.__data.xMinEnabled = on
self.legendChanged()
self.itemChanged()
def enableYMin(self, on):
"""
Enable or disable minor horizontal grid lines.
:param bool on: Enable (true) or disable
.. seealso::
:py:meth:`enableY()`
"""
if self.__data.yMinEnabled != on:
self.__data.yMinEnabled = on
self.legendChanged()
self.itemChanged()
def setXDiv(self, scaleDiv):
"""
Assign an x axis scale division
:param qwt.scale_div.QwtScaleDiv scaleDiv: Scale division
"""
if self.__data.xScaleDiv != scaleDiv:
self.__data.xScaleDiv = scaleDiv
self.itemChanged()
def setYDiv(self, scaleDiv):
"""
Assign an y axis scale division
:param qwt.scale_div.QwtScaleDiv scaleDiv: Scale division
"""
if self.__data.yScaleDiv != scaleDiv:
self.__data.yScaleDiv = scaleDiv
self.itemChanged()
def setPen(self, *args):
"""
Build and/or assign a pen for both major and minor grid lines
.. py:method:: setPen(color, width, style)
:noindex:
Build and assign a pen for both major and minor grid lines
In Qt5 the default pen width is 1.0 ( 0.0 in Qt4 ) what makes it
non cosmetic (see `QPen.isCosmetic()`). This method signature has
been introduced to hide this incompatibility.
:param QColor color: Pen color
:param float width: Pen width
:param Qt.PenStyle style: Pen style
.. py:method:: setPen(pen)
:noindex:
Assign a pen for both major and minor grid lines
:param QPen pen: New pen
.. seealso::
:py:meth:`pen()`, :py:meth:`brush()`
"""
if len(args) == 3:
color, width, style = args
self.setPen(QPen(color, width, style))
elif len(args) == 1:
(pen,) = args
if self.__data.majorPen != pen or self.__data.minorPen != pen:
self.__data.majorPen = pen
self.__data.minorPen = pen
self.legendChanged()
self.itemChanged()
else:
raise TypeError(
"%s().setPen() takes 1 or 3 argument(s) (%s given)"
% (self.__class__.__name__, len(args))
)
def setMajorPen(self, *args):
"""
Build and/or assign a pen for both major grid lines
.. py:method:: setMajorPen(color, width, style)
:noindex:
Build and assign a pen for both major grid lines
In Qt5 the default pen width is 1.0 ( 0.0 in Qt4 ) what makes it
non cosmetic (see `QPen.isCosmetic()`). This method signature has
been introduced to hide this incompatibility.
:param QColor color: Pen color
:param float width: Pen width
:param Qt.PenStyle style: Pen style
.. py:method:: setMajorPen(pen)
:noindex:
Assign a pen for the major grid lines
:param QPen pen: New pen
.. seealso::
:py:meth:`majorPen()`, :py:meth:`setMinorPen()`,
:py:meth:`setPen()`, :py:meth:`pen()`, :py:meth:`brush()`
"""
if len(args) == 3:
color, width, style = args
self.setMajorPen(QPen(color, width, style))
elif len(args) == 1:
(pen,) = args
if self.__data.majorPen != pen:
self.__data.majorPen = pen
self.legendChanged()
self.itemChanged()
else:
raise TypeError(
"%s().setMajorPen() takes 1 or 3 argument(s) (%s "
"given)" % (self.__class__.__name__, len(args))
)
def setMinorPen(self, *args):
"""
Build and/or assign a pen for both minor grid lines
.. py:method:: setMinorPen(color, width, style)
:noindex:
Build and assign a pen for both minor grid lines
In Qt5 the default pen width is 1.0 ( 0.0 in Qt4 ) what makes it
non cosmetic (see `QPen.isCosmetic()`). This method signature has
been introduced to hide this incompatibility.
:param QColor color: Pen color
:param float width: Pen width
:param Qt.PenStyle style: Pen style
.. py:method:: setMinorPen(pen)
:noindex:
Assign a pen for the minor grid lines
:param QPen pen: New pen
.. seealso::
:py:meth:`minorPen()`, :py:meth:`setMajorPen()`,
:py:meth:`setPen()`, :py:meth:`pen()`, :py:meth:`brush()`
"""
if len(args) == 3:
color, width, style = args
self.setMinorPen(QPen(color, width, style))
elif len(args) == 1:
(pen,) = args
if self.__data.minorPen != pen:
self.__data.minorPen = pen
self.legendChanged()
self.itemChanged()
else:
raise TypeError(
"%s().setMinorPen() takes 1 or 3 argument(s) (%s "
"given)" % (self.__class__.__name__, len(args))
)
def draw(self, painter, xMap, yMap, canvasRect):
"""
Draw the grid
The grid is drawn into the bounding rectangle such that
grid lines begin and end at the rectangle's borders. The X and Y
maps are used to map the scale divisions into the drawing region
screen.
:param QPainter painter: Painter
:param qwt.scale_map.QwtScaleMap xMap: X axis map
:param qwt.scale_map.QwtScaleMap yMap: Y axis
:param QRectF canvasRect: Contents rectangle of the plot canvas
"""
minorPen = QPen(self.__data.minorPen)
minorPen.setCapStyle(Qt.FlatCap)
painter.setPen(minorPen)
if self.__data.xEnabled and self.__data.xMinEnabled:
self.drawLines(
painter,
canvasRect,
Qt.Vertical,
xMap,
self.__data.xScaleDiv.ticks(QwtScaleDiv.MinorTick),
)
self.drawLines(
painter,
canvasRect,
Qt.Vertical,
xMap,
self.__data.xScaleDiv.ticks(QwtScaleDiv.MediumTick),
)
if self.__data.yEnabled and self.__data.yMinEnabled:
self.drawLines(
painter,
canvasRect,
Qt.Horizontal,
yMap,
self.__data.yScaleDiv.ticks(QwtScaleDiv.MinorTick),
)
self.drawLines(
painter,
canvasRect,
Qt.Horizontal,
yMap,
self.__data.yScaleDiv.ticks(QwtScaleDiv.MediumTick),
)
majorPen = QPen(self.__data.majorPen)
majorPen.setCapStyle(Qt.FlatCap)
painter.setPen(majorPen)
if self.__data.xEnabled:
self.drawLines(
painter,
canvasRect,
Qt.Vertical,
xMap,
self.__data.xScaleDiv.ticks(QwtScaleDiv.MajorTick),
)
if self.__data.yEnabled:
self.drawLines(
painter,
canvasRect,
Qt.Horizontal,
yMap,
self.__data.yScaleDiv.ticks(QwtScaleDiv.MajorTick),
)
def drawLines(self, painter, canvasRect, orientation, scaleMap, values):
x1 = canvasRect.left()
x2 = canvasRect.right() - 1.0
y1 = canvasRect.top()
y2 = canvasRect.bottom() - 1.0
for val in values:
value = scaleMap.transform(val)
if orientation == Qt.Horizontal:
if qwtFuzzyGreaterOrEqual(value, y1) and qwtFuzzyLessOrEqual(value, y2):
painter.drawLine(QLineF(x1, value, x2, value))
else:
if qwtFuzzyGreaterOrEqual(value, x1) and qwtFuzzyLessOrEqual(value, x2):
painter.drawLine(QLineF(value, y1, value, y2))
def majorPen(self):
"""
:return: the pen for the major grid lines
.. seealso::
:py:meth:`setMajorPen()`, :py:meth:`setMinorPen()`,
:py:meth:`setPen()`
"""
return self.__data.majorPen
def minorPen(self):
"""
:return: the pen for the minor grid lines
.. seealso::
:py:meth:`setMinorPen()`, :py:meth:`setMajorPen()`,
:py:meth:`setPen()`
"""
return self.__data.minorPen
def xEnabled(self):
"""
:return: True if vertical grid lines are enabled
.. seealso::
:py:meth:`enableX()`
"""
return self.__data.xEnabled
def yEnabled(self):
"""
:return: True if horizontal grid lines are enabled
.. seealso::
:py:meth:`enableY()`
"""
return self.__data.yEnabled
def xMinEnabled(self):
"""
:return: True if minor vertical grid lines are enabled
.. seealso::
:py:meth:`enableXMin()`
"""
return self.__data.xMinEnabled
def yMinEnabled(self):
"""
:return: True if minor horizontal grid lines are enabled
.. seealso::
:py:meth:`enableYMin()`
"""
return self.__data.yMinEnabled
def xScaleDiv(self):
"""
:return: the scale division of the x axis
"""
return self.__data.xScaleDiv
def yScaleDiv(self):
"""
:return: the scale division of the y axis
"""
return self.__data.yScaleDiv
def updateScaleDiv(self, xScaleDiv, yScaleDiv):
"""
Update the grid to changes of the axes scale division
:param qwt.scale_map.QwtScaleMap xMap: Scale division of the x-axis
:param qwt.scale_map.QwtScaleMap yMap: Scale division of the y-axis
.. seealso::
:py:meth:`updateAxes()`
"""
self.setXDiv(xScaleDiv)
self.setYDiv(yScaleDiv)
|