-
-
Notifications
You must be signed in to change notification settings - Fork 2k
/
LfSlider.py
87 lines (66 loc) · 2.58 KB
/
LfSlider.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
Created on 2021/4/9
@author: Irony
@site: https://pyqt.site , https://github.com/PyQt5
@email: [email protected]
@file: LfSlider
@description: 降低值变化频率
"""
from datetime import datetime
try:
from PyQt5.QtCore import pyqtSignal, QTimer, Qt
from PyQt5.QtWidgets import QApplication, QSlider, QWidget, QVBoxLayout, QPlainTextEdit, QHBoxLayout, \
QGroupBox
except ImportError:
from PySide2.QtCore import Signal as pyqtSignal, QTimer, Qt
from PySide2.QtWidgets import QApplication, QSlider, QWidget, QVBoxLayout, QPlainTextEdit, QHBoxLayout, \
QGroupBox
class LfSlider(QSlider):
valueChanged = pyqtSignal(int)
def __init__(self, *args, **kwargs):
delay = kwargs.pop('delay', 500)
super(LfSlider, self).__init__(*args, **kwargs)
self.lastValue = self.value()
self.uTimer = QTimer(self)
self.uTimer.timeout.connect(self.onValueChanged)
self.uTimer.start(delay)
def onValueChanged(self):
if self.lastValue != self.value():
self.lastValue = self.value()
self.valueChanged.emit(self.lastValue)
class Window(QWidget):
def __init__(self, *args, **kwargs):
super(Window, self).__init__(*args, **kwargs)
layout = QHBoxLayout(self)
# 左侧原始
left_group = QGroupBox('原始QSlider', self)
left_layout = QVBoxLayout(left_group)
self.leftLabel = QPlainTextEdit(self)
left_layout.addWidget(self.leftLabel)
self.leftSlider = QSlider(Qt.Horizontal, self)
self.leftSlider.valueChanged.connect(self.onLeftChanged)
left_layout.addWidget(self.leftSlider)
layout.addWidget(left_group)
# 右侧低频率变化
right_group = QGroupBox('LfSlider', self)
right_layout = QVBoxLayout(right_group)
self.rightLabel = QPlainTextEdit(self)
right_layout.addWidget(self.rightLabel)
self.rightSlider = LfSlider(Qt.Horizontal, self)
self.rightSlider.valueChanged.connect(self.onRightChanged)
right_layout.addWidget(self.rightSlider)
layout.addWidget(right_group)
def onLeftChanged(self, value):
self.leftLabel.appendPlainText(datetime.now().strftime("[%H:%M:%S.%f] ") + str(value))
def onRightChanged(self, value):
self.rightLabel.appendPlainText(datetime.now().strftime("[%H:%M:%S.%f] ") + str(value))
if __name__ == '__main__':
import sys
import cgitb
cgitb.enable(format='text')
app = QApplication(sys.argv)
w = Window()
w.show()
sys.exit(app.exec_())