(self, *args, **kwargs)
| 108 | class Window(QWidget): |
| 109 | |
| 110 | def __init__(self, *args, **kwargs): |
| 111 | super(Window, self).__init__(*args, **kwargs) |
| 112 | self.setAttribute(Qt.WA_StyledBackground, True) |
| 113 | layout = QVBoxLayout(self) |
| 114 | layout.addWidget(PaintQSlider(Qt.Vertical, self, minimumWidth=90)) |
| 115 | layout.addWidget(PaintQSlider(Qt.Horizontal, self, minimumHeight=90)) |
| 116 | |
| 117 | |
| 118 | if __name__ == '__main__': |
no test coverage detected