Найти - Пользователи
Полная версия: PyQt, обращение к методу QPainter'у виджета.
Начало » GUI » PyQt, обращение к методу QPainter'у виджета.
1
AlexComeback
Каким образом можно отрисовывать объекты в клиентской части окна после обработки, например, щелчка мыши.
То есть, предположим, есть некоторый класc, необходимо при mouseReleaseEvent() отрисовать какой-либо объект, предположим круг. пробовал так:
def mouseReleaseEvent(self, event):
paint = QtGui.QPainter()
paint.begin(self)
brush = QtGui.QBrush(QtCore.Qt.SolidPattern)
paint.setBrush(brush)
paint.drawRect(10, 15, 90, 60)
paint.end()

однако получаю :
QPainter::begin: Paint device returned engine == 0, type: 1
QPainter::setBrush: Painter not active
QPainter::drawRects: Painter not active
QPainter::end: Painter not active, aborted

Как быть?
udav
paint.begin(self.viewport())
и рисуй что пожелаешь
This is a "lo-fi" version of our main content. To view the full version with more information, formatting and images, please click here.
Powered by DjangoBB