本文整理汇总了Python中qt.QWidget.paintEvent方法的典型用法代码示例。如果您正苦于以下问题:Python QWidget.paintEvent方法的具体用法?Python QWidget.paintEvent怎么用?Python QWidget.paintEvent使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类qt.QWidget
的用法示例。
在下文中一共展示了QWidget.paintEvent方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: paintEvent
# 需要导入模块: from qt import QWidget [as 别名]
# 或者: from qt.QWidget import paintEvent [as 别名]
def paintEvent(self, e):
""" Draw the border. """
if self.drawBorder:
p = QPainter(self)
if self.roundCorners:
# draw quarter-circles for borders
p.drawArc(0, 0, self.cornerRadius, self.cornerRadius, 1440, 1440)
p.drawArc(0, self.height() - self.cornerRadius,
self.cornerRadius, self.cornerRadius, 2880, 1440)
p.drawArc(self.width() - self.cornerRadius,
self.height() - self.cornerRadius,
self.cornerRadius, self.cornerRadius, 4320, 1440)
p.drawArc(self.width() - self.cornerRadius,
0, self.cornerRadius, self.cornerRadius, 5760, 1440)
corner = self.cornerRadius / 2
p.drawLine(corner, 0, self.width() - corner, 0)
p.drawLine(0, corner, 0, self.height() - corner)
p.drawLine(corner, self.height()-1,
self.width() - corner, self.height()-1)
p.drawLine(self.width()-1, corner, self.width()-1,
self.height() - corner)
else:
p.drawRect(0, 0, self.width(), self.height())
QWidget.paintEvent(self, e)