(self, *args, **kwargs)
| 53 | class PaintQSlider(QSlider): |
| 54 | |
| 55 | def __init__(self, *args, **kwargs): |
| 56 | super(PaintQSlider, self).__init__(*args, **kwargs) |
| 57 | # 设置代理样式,主要用于计算和解决鼠标点击区域 |
| 58 | self.setStyle(SliderStyle()) |
| 59 | |
| 60 | def paintEvent(self, _): |
| 61 | option = QStyleOptionSlider() |
nothing calls this directly
no test coverage detected