-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathencoder.cpp
64 lines (54 loc) · 1.16 KB
/
encoder.cpp
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
#include "encoder.h"
#include <QMouseEvent>
//#define __ENC_DEBUG
#ifdef __ENC_DEBUG
#include <QDebug>
#endif
Encoder::Encoder(QWidget *parent) :
QDial(parent)
{
outvalue = 0;
pro_value = 0;
connect(this, &QDial::valueChanged, this, &Encoder::res_value_change);
times = 10;
}
void Encoder::mousePressEvent(QMouseEvent *me)
{
if(me->button() == Qt::RightButton)
{
if(times == 10)
{
times = 1;
this->setPalette(QPalette(QColor("#D0D0D0")));
}
else
{
times = 10;
this->setPalette(QPalette(QColor("#EFEFEF")));
}
}
me->accept();
}
void Encoder::res_value_change(int value)
{
if(pro_value != value)
{
outvalue = value - pro_value;
if(outvalue > 50)
outvalue -= 100;
else if(outvalue < -50)
outvalue += 100;
pro_value = value;
emit encoderOutput(outvalue * times);
#ifdef __ENC_DEBUG
qDebug()<<this->objectName()<<" output value:"<<outvalue;
#endif
}
}
void Encoder::resetValue()
{
setValue(0);
pro_value = 0;
outvalue = 0;
emit encoderOutput(outvalue);
}