Python PyQt5.QtWidgets.QStyleOption() Examples
The following are 16
code examples of PyQt5.QtWidgets.QStyleOption().
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example.
You may also want to check out all available functions/classes of the module
PyQt5.QtWidgets
, or try the search function
.
Example #1
Source File: qreordertableview.py From track with Apache License 2.0 | 6 votes |
def drawPrimitive( self, element: QtWidgets.QStyle.PrimitiveElement, option: QtWidgets.QStyleOption, painter: QtGui.QPainter, widget: QtWidgets.QWidget = None) -> None: """Draw a line across the entire row rather than just the column we're hovering over. This may not always work depending on global style - for instance I think it won't work on OSX.""" if element == self.PE_IndicatorItemViewItemDrop and not option.rect.isNull(): option_new = QtWidgets.QStyleOption(option) option_new.rect.setLeft(0) if widget: option_new.rect.setRight(widget.width()) option = option_new super().drawPrimitive(element, option, painter, widget)
Example #2
Source File: GeneratorTableView.py From urh with GNU General Public License v3.0 | 6 votes |
def paint_drop_indicator(self, painter): if self.drag_active: opt = QStyleOption() opt.initFrom(self) opt.rect = self.drop_indicator_rect rect = opt.rect brush = QBrush(QColor(Qt.darkRed)) if rect.height() == 0: pen = QPen(brush, 2, Qt.SolidLine) painter.setPen(pen) painter.drawLine(rect.topLeft(), rect.topRight()) else: pen = QPen(brush, 2, Qt.SolidLine) painter.setPen(pen) painter.drawRect(rect)
Example #3
Source File: misc.py From argos with GNU General Public License v3.0 | 5 votes |
def widgetSubCheckBoxRect(widget, option): """ Returns the rectangle of a check box drawn as a sub element of widget """ opt = QtWidgets.QStyleOption() opt.initFrom(widget) style = widget.style() return style.subElementRect(QtWidgets.QStyle.SE_ViewItemCheckIndicator, opt, widget)
Example #4
Source File: custom_dialogs.py From parsec-cloud with GNU Affero General Public License v3.0 | 5 votes |
def paintEvent(self, event): opt = QStyleOption() opt.initFrom(self) p = QPainter(self) self.style().drawPrimitive(QStyle.PE_Widget, opt, p, self)
Example #5
Source File: menu_widget.py From parsec-cloud with GNU Affero General Public License v3.0 | 5 votes |
def paintEvent(self, _): opt = QStyleOption() opt.initFrom(self) p = QPainter(self) self.style().drawPrimitive(QStyle.PE_Widget, opt, p, self)
Example #6
Source File: notification_center_widget.py From parsec-cloud with GNU Affero General Public License v3.0 | 5 votes |
def paintEvent(self, _): opt = QStyleOption() opt.initFrom(self) p = QPainter(self) self.style().drawPrimitive(QStyle.PE_Widget, opt, p, self)
Example #7
Source File: notification_widget.py From parsec-cloud with GNU Affero General Public License v3.0 | 5 votes |
def paintEvent(self, _): opt = QStyleOption() opt.initFrom(self) p = QPainter(self) self.style().drawPrimitive(QStyle.PE_Widget, opt, p, self)
Example #8
Source File: dock.py From eddy with GNU General Public License v3.0 | 5 votes |
def paintEvent(self, paintEvent): """ This is needed for the widget to pick the stylesheet. :type paintEvent: QPaintEvent """ option = QtWidgets.QStyleOption() option.initFrom(self) painter = QtGui.QPainter(self) style = self.style() style.drawPrimitive(QtWidgets.QStyle.PE_Widget, option, painter, self)
Example #9
Source File: welcome.py From eddy with GNU General Public License v3.0 | 5 votes |
def paintEvent(self, paintEvent): """ This is needed for the widget to pick the stylesheet. :type paintEvent: QPaintEvent """ option = QtWidgets.QStyleOption() option.initFrom(self) painter = QtGui.QPainter(self) style = self.style() style.drawPrimitive(QtWidgets.QStyle.PE_Widget, option, painter, self) ############################################# # SLOTS #################################
Example #10
Source File: welcome.py From eddy with GNU General Public License v3.0 | 5 votes |
def paintEvent(self, paintEvent): """ This is needed for the widget to pick the stylesheet. :type paintEvent: QPaintEvent """ option = QtWidgets.QStyleOption() option.initFrom(self) painter = QtGui.QPainter(self) style = self.style() style.drawPrimitive(QtWidgets.QStyle.PE_Widget, option, painter, self)
Example #11
Source File: palette.py From eddy with GNU General Public License v3.0 | 5 votes |
def paintEvent(self, paintEvent): """ This is needed for the widget to pick the stylesheet. :type paintEvent: QPaintEvent """ option = QtWidgets.QStyleOption() option.initFrom(self) painter = QtGui.QPainter(self) style = self.style() style.drawPrimitive(QtWidgets.QStyle.PE_Widget, option, painter, self) ############################################# # INTERFACE #################################
Example #12
Source File: info.py From eddy with GNU General Public License v3.0 | 5 votes |
def paintEvent(self, paintEvent): """ This is needed for the widget to pick the stylesheet. :type paintEvent: QPaintEvent """ option = QtWidgets.QStyleOption() option.initFrom(self) painter = QtGui.QPainter(self) style = self.style() style.drawPrimitive(QtWidgets.QStyle.PE_Widget, option, painter, self) ############################################# # INFO WIDGETS #################################
Example #13
Source File: project_explorer.py From eddy with GNU General Public License v3.0 | 5 votes |
def paintEvent(self, paintEvent): """ This is needed for the widget to pick the stylesheet. :type paintEvent: QPaintEvent """ option = QtWidgets.QStyleOption() option.initFrom(self) painter = QtGui.QPainter(self) style = self.style() style.drawPrimitive(QtWidgets.QStyle.PE_Widget, option, painter, self) ############################################# # INTERFACE #################################
Example #14
Source File: Widgets.py From photobooth with GNU Affero General Public License v3.0 | 5 votes |
def paintEvent(self, event): opt = QtWidgets.QStyleOption() opt.initFrom(self) painter = QtGui.QPainter(self) self.style().drawPrimitive(QtWidgets.QStyle.PE_Widget, opt, painter, self) painter.end()
Example #15
Source File: element_iconbar.py From Pythonic with GNU General Public License v3.0 | 5 votes |
def paintEvent(self, event): style_opt = QStyleOption() style_opt.initFrom(self) painter = QPainter(self) self.style().drawPrimitive(QStyle.PE_Widget, style_opt, painter, self)
Example #16
Source File: CustomPaintWidget.py From PyQt with GNU General Public License v3.0 | 5 votes |
def paintEvent(self, event): # 解决QSS问题 option = QStyleOption() option.initFrom(self) painter = QPainter(self) self.style().drawPrimitive(QStyle.PE_Widget, option, painter, self) super(CustomPaintWidget, self).paintEvent(event)