drawBackground works. thx for the help.

    def drawBackground(self, painter, rect):
        backgroundColor = Qt.red
        painter.setPen(QPen(backgroundColor, 1, Qt.SolidLine))
        painter.setBrush(QBrush(Qt.lightGray, Qt.SolidPattern))
        # draw frame
        painter.drawRect(0, 0, 800, 600)
        # draw grid
        for y in range(0, 601, 50):
            for x in range(0, 801, 50):
                painter.drawRect(x-1, y-1, 3, 3)
_______________________________________________
PyQt mailing list    [email protected]
http://www.riverbankcomputing.com/mailman/listinfo/pyqt

Reply via email to