-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtestform.cpp
More file actions
60 lines (56 loc) · 1.27 KB
/
testform.cpp
File metadata and controls
60 lines (56 loc) · 1.27 KB
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
#include "testform.h"
#include "ui_testform.h"
#include <QKeyEvent>
#include <QWheelEvent>
TestForm::TestForm(QWidget *parent)
: QWidget(parent), ui(new Ui::Form)
{
ui->setupUi(this);
initilize();
}
TestForm::~TestForm()
{
delete ui;
}
void TestForm::initilize()
{
ui->textEdit->installEventFilter(this);
ui->spinBox->installEventFilter(this);
}
bool TestForm::eventFilter(QObject *watched, QEvent *event)
{
if(watched == ui->textEdit)
{
if(event->type() == QEvent::Wheel)
{
QWheelEvent *wheelEvent = static_cast<QWheelEvent*>(event);
if(wheelEvent->delta() > 0)
ui->textEdit->zoomIn();
else
ui->textEdit->zoomOut();
return true;
}
else
{
return false;
}
}
else if(watched == ui->spinBox)
{
if(event->type() == QEvent::KeyPress)
{
QKeyEvent *keyEvent = static_cast<QKeyEvent*>(event);
if(keyEvent->key() == Qt::Key_Space)
{
ui->spinBox->setValue(0);
return true;
}
else
{
return false;
}
}
}
else
return QWidget::eventFilter(watched, event);
}