我在尝试绘制和绘制QGraphicsView/Scene
时遇到问题。我正在绘制一堆QLineF as background overriding
QGraphicsView :: drawBackGround`。但是,当我尝试更改背景颜色时,没有任何反应。
这是我正在做的最简单的例子:
import sys
import platform
import ctypes
from PySide import QtCore, QtGui
from mygv import Ui_Dialog
import sys
class myView(QtGui.QDialog):
def __init__(self, parent = None):
QtGui.QDialog.__init__(self, parent)
self.ui = Ui_Dialog()
self.ui.setupUi(self)
self.ui.view.drawBackground = self.drawBackground
self.ui.view.wheelEvent = self.wheelEvent
self.scene = QtGui.QGraphicsScene()
self.ui.view.setScene(self.scene)
self.scene.addEllipse(0,0,100,100)
def drawBackground(self, painter, rect):
bbrush = QtGui.QBrush( QtGui.QColor(255,170,255), QtCore.Qt.SolidPattern)
painter.setBackgroundMode(QtCore.Qt.OpaqueMode)
pen = QtGui.QPen(QtGui.QColor(46, 84, 255))
pen.setWidth(5)
painter.setPen(pen)
line1 = QtCore.QLineF(0,0,0,100)
line2 = QtCore.QLineF(0,100,100,100)
line3 = QtCore.QLineF(100,100,100,0)
line4 = QtCore.QLineF(100,0,0,0)
painter.setBackground(bbrush)
painter.drawLines([line1, line2, line3, line4])
def wheelEvent(self,event):
factor = 1.41 ** (event.delta() / 240.0)
self.ui.view.scale(factor, factor)
if __name__ == '__main__':
app = QtGui.QApplication(sys.argv)
diag = myView()
diag.show()
diag.ui.view.centerOn(50,50)
app.exec_()
Ui_dialog只是一个从QDesigner生成的标准对话框,其中一个QGraphicsView成员名为" view"。
这只是问题的一个例子。我需要能够在执行我的应用程序时系统地更改背景的颜色。
我错过了什么或做得(显然)错了?
答案 0 :(得分:1)
setBackground
的{{1}}方法不会填充背景,但仅指定绘制不透明文本,点画线和位图等操作的背景(请参阅documentation)。
您可以使用QPainter
来首先使用您指定的画笔填充可绘制区域大小的矩形。
示例:
fillRect
它使用PyQt5,但理解起来相当简单。
结果:
显示您指定的漂亮洋红色。