在QtCore.Qt.CrossPattern上设置图案颜色和线条粗细

时间:2017-01-02 13:17:18

标签: python qt pyqt qgraphicsview brush

我在QtGui.QGraphicsView的init中使用以下内容来制作漂亮的网格/交叉模式。但不确定如何改变十字图案线的背景颜色或厚度?使用setColor设置颜色,但这只会更改crossPattern而不是背景的颜色。

有没有办法改变这些,或者我应该使用不同类型的风格?

import PySide.QtGui as QtGui
import PySide.QtCore as QtCore

class NodeGraphView(QtGui.QGraphicsView):

    def __init__(self, parent):
        super(NodeGraphView, self).__init__(parent)

        self.fg_brush = QtGui.QBrush()
        self.fg_brush.setStyle(QtCore.Qt.CrossPattern)
        self.fg_brush.setColor(QtGui.QColor(42, 42, 42, 255))

        self.setBackgroundBrush(self.fg_brush)

2 个答案:

答案 0 :(得分:2)

视图背景基本上只适用于“填充”;交叉模式是非常基本的,不可配置(除了颜色,因为这是基本的填充属性)。但是绘制自己的网格并不难,然后你有更多的控制权(比如厚度,点线/虚线,显示原点等):

  • 为网格线创建笔:给它颜色和宽度
  • 您可以将笔设置为具有恒定的“装饰”宽度;在这种情况下,它不会缩放
  • 为场景添加线条
  • 将行设置为具有最低z值,以便在其他所有内容之前绘制

示例:

from PyQt5.QtCore import QTimer, Qt
from PyQt5.QtGui import QPen
from PyQt5.QtWidgets import QApplication, QGraphicsScene, QGraphicsView

scale_fac = 1

def scale():
    global scale_fac
    scale_fac = scale_fac * 1.5
    view.scale(scale_fac, scale_fac)

app = QApplication([])

scene = QGraphicsScene()
pen = QPen(Qt.red)
pen.setCosmetic(True)  # ***
for x in range(0, 500, 50):
    line = scene.addLine( x, 0, x, 500, pen)
    line.setZValue(-10)
for y in range(0, 500, 50):
    scene.addLine( 0, y, 500, y, pen)
    line.setZValue(-10)

view = QGraphicsView()
view.setScene(scene)
view.show()

QTimer.singleShot(1000, scale)
QTimer.singleShot(2000, scale)
QTimer.singleShot(3000, scale)
app.exec()

如果未发出setCosmetic(True),则在放大时线条粗细会增加。

上面的好处是线条处于场景中的固定坐标。但是,如果缩小,则可能需要添加更多行,或者使现有行更长。您可以通过覆盖场景的drawBackground()来完成此操作,该场景将通过视图中的场景的矩形进行调用:您可以调整线端点。

答案 1 :(得分:0)

嗯,发现我也可以在不影响网格的情况下设置背景颜色:

    self.setObjectName("QGraphicsView")
    frame_css = '''
     QGraphicsView#QGraphicsView {
         background-color: rgb(42,42,42);
     }
     '''

    self.setStyleSheet(frame_css)