author | František Kučera <franta-hg@frantovo.cz> |
Wed, 04 Sep 2019 19:41:21 +0200 | |
branch | v_0 |
changeset 21 | 642f32f76c9d |
parent 20 | cfb5f62ea048 |
child 26 | fff8e9a86e85 |
permissions | -rw-r--r-- |
15 | 1 |
/** |
2 |
* cadMousePro |
|
3 |
* Copyright © 2019 František Kučera (Frantovo.cz, GlobalCode.info) |
|
4 |
* |
|
5 |
* This program is free software: you can redistribute it and/or modify |
|
6 |
* it under the terms of the GNU General Public License as published by |
|
7 |
* the Free Software Foundation, either version 3 of the License, or |
|
8 |
* (at your option) any later version. |
|
9 |
* |
|
10 |
* This program is distributed in the hope that it will be useful, |
|
11 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
12 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
13 |
* GNU General Public License for more details. |
|
14 |
* |
|
15 |
* You should have received a copy of the GNU General Public License |
|
16 |
* along with this program. If not, see <http://www.gnu.org/licenses/>. |
|
17 |
*/ |
|
18 |
#pragma once |
|
19 |
||
20 |
#include <QMainWindow> |
|
17
d37c6dd9aa20
tabs: Status, Configuration, About
František Kučera <franta-hg@frantovo.cz>
parents:
16
diff
changeset
|
21 |
#include <QTabWidget> |
16
2705911938b4
GUI for mouse configuration over D-Bus daemon
František Kučera <franta-hg@frantovo.cz>
parents:
15
diff
changeset
|
22 |
#include <QFormLayout> |
2705911938b4
GUI for mouse configuration over D-Bus daemon
František Kučera <franta-hg@frantovo.cz>
parents:
15
diff
changeset
|
23 |
#include <QCheckBox> |
2705911938b4
GUI for mouse configuration over D-Bus daemon
František Kučera <franta-hg@frantovo.cz>
parents:
15
diff
changeset
|
24 |
#include <QRadioButton> |
2705911938b4
GUI for mouse configuration over D-Bus daemon
František Kučera <franta-hg@frantovo.cz>
parents:
15
diff
changeset
|
25 |
#include <QButtonGroup> |
2705911938b4
GUI for mouse configuration over D-Bus daemon
František Kučera <franta-hg@frantovo.cz>
parents:
15
diff
changeset
|
26 |
#include <QLineEdit> |
20
cfb5f62ea048
display the USB device name
František Kučera <franta-hg@frantovo.cz>
parents:
18
diff
changeset
|
27 |
#include <QLabel> |
21
642f32f76c9d
display the battery charge level (from UPower)
František Kučera <franta-hg@frantovo.cz>
parents:
20
diff
changeset
|
28 |
#include <QProgressBar> |
16
2705911938b4
GUI for mouse configuration over D-Bus daemon
František Kučera <franta-hg@frantovo.cz>
parents:
15
diff
changeset
|
29 |
#include <QtDBus/QDBusConnection> |
2705911938b4
GUI for mouse configuration over D-Bus daemon
František Kučera <franta-hg@frantovo.cz>
parents:
15
diff
changeset
|
30 |
|
2705911938b4
GUI for mouse configuration over D-Bus daemon
František Kučera <franta-hg@frantovo.cz>
parents:
15
diff
changeset
|
31 |
#include "generated-sources/Proxy.h" |
21
642f32f76c9d
display the battery charge level (from UPower)
František Kučera <franta-hg@frantovo.cz>
parents:
20
diff
changeset
|
32 |
#include "generated-sources/UPowerProxy.h" |
15 | 33 |
|
34 |
class MouseMainWindow : public QMainWindow { |
|
35 |
Q_OBJECT |
|
36 |
public: |
|
16
2705911938b4
GUI for mouse configuration over D-Bus daemon
František Kučera <franta-hg@frantovo.cz>
parents:
15
diff
changeset
|
37 |
MouseMainWindow(); |
15 | 38 |
|
39 |
virtual ~MouseMainWindow() { |
|
40 |
} |
|
41 |
||
16
2705911938b4
GUI for mouse configuration over D-Bus daemon
František Kučera <franta-hg@frantovo.cz>
parents:
15
diff
changeset
|
42 |
private: |
17
d37c6dd9aa20
tabs: Status, Configuration, About
František Kučera <franta-hg@frantovo.cz>
parents:
16
diff
changeset
|
43 |
QTabWidget* tabs = new QTabWidget(this); |
16
2705911938b4
GUI for mouse configuration over D-Bus daemon
František Kučera <franta-hg@frantovo.cz>
parents:
15
diff
changeset
|
44 |
QCheckBox* statusProxy = new QCheckBox("connected to Daemon", this); |
2705911938b4
GUI for mouse configuration over D-Bus daemon
František Kučera <franta-hg@frantovo.cz>
parents:
15
diff
changeset
|
45 |
QCheckBox* statusUPower = new QCheckBox("connected to UPower", this); |
18
7323a89c15e9
clickable links in About panel
František Kučera <franta-hg@frantovo.cz>
parents:
17
diff
changeset
|
46 |
QCheckBox* statusDevice = new QCheckBox("mouse found", this); |
20
cfb5f62ea048
display the USB device name
František Kučera <franta-hg@frantovo.cz>
parents:
18
diff
changeset
|
47 |
QLabel* statusName = new QLabel(this); |
21
642f32f76c9d
display the battery charge level (from UPower)
František Kučera <franta-hg@frantovo.cz>
parents:
20
diff
changeset
|
48 |
QProgressBar* statusBattery = new QProgressBar(this); |
17
d37c6dd9aa20
tabs: Status, Configuration, About
František Kučera <franta-hg@frantovo.cz>
parents:
16
diff
changeset
|
49 |
|
16
2705911938b4
GUI for mouse configuration over D-Bus daemon
František Kučera <franta-hg@frantovo.cz>
parents:
15
diff
changeset
|
50 |
QCheckBox* configureSmartScrolling = new QCheckBox("smart scrolling (free wheel)", this); |
2705911938b4
GUI for mouse configuration over D-Bus daemon
František Kučera <franta-hg@frantovo.cz>
parents:
15
diff
changeset
|
51 |
QCheckBox* configureLiftOffDetection = new QCheckBox("lift-off detection", this); |
2705911938b4
GUI for mouse configuration over D-Bus daemon
František Kučera <franta-hg@frantovo.cz>
parents:
15
diff
changeset
|
52 |
QRadioButton* configureFrequency125 = new QRadioButton("125 Hz", this); |
2705911938b4
GUI for mouse configuration over D-Bus daemon
František Kučera <franta-hg@frantovo.cz>
parents:
15
diff
changeset
|
53 |
QRadioButton* configureFrequency250 = new QRadioButton("250 Hz", this); |
2705911938b4
GUI for mouse configuration over D-Bus daemon
František Kučera <franta-hg@frantovo.cz>
parents:
15
diff
changeset
|
54 |
QRadioButton* configureFrequency500 = new QRadioButton("500 Hz", this); |
2705911938b4
GUI for mouse configuration over D-Bus daemon
František Kučera <franta-hg@frantovo.cz>
parents:
15
diff
changeset
|
55 |
QRadioButton* configureFrequency1000 = new QRadioButton("1000 Hz", this); |
17
d37c6dd9aa20
tabs: Status, Configuration, About
František Kučera <franta-hg@frantovo.cz>
parents:
16
diff
changeset
|
56 |
|
16
2705911938b4
GUI for mouse configuration over D-Bus daemon
František Kučera <franta-hg@frantovo.cz>
parents:
15
diff
changeset
|
57 |
QLineEdit* message = new QLineEdit(this); |
17
d37c6dd9aa20
tabs: Status, Configuration, About
František Kučera <franta-hg@frantovo.cz>
parents:
16
diff
changeset
|
58 |
|
16
2705911938b4
GUI for mouse configuration over D-Bus daemon
František Kučera <franta-hg@frantovo.cz>
parents:
15
diff
changeset
|
59 |
QDBusConnection connection = QDBusConnection::systemBus(); |
2705911938b4
GUI for mouse configuration over D-Bus daemon
František Kučera <franta-hg@frantovo.cz>
parents:
15
diff
changeset
|
60 |
InfoGlobalcodeMouseCadMouseProInterface* proxy; |
21
642f32f76c9d
display the battery charge level (from UPower)
František Kučera <franta-hg@frantovo.cz>
parents:
20
diff
changeset
|
61 |
OrgFreedesktopUPowerInterface* upowerProxy; |
16
2705911938b4
GUI for mouse configuration over D-Bus daemon
František Kučera <franta-hg@frantovo.cz>
parents:
15
diff
changeset
|
62 |
|
17
d37c6dd9aa20
tabs: Status, Configuration, About
František Kučera <franta-hg@frantovo.cz>
parents:
16
diff
changeset
|
63 |
void initStatusPanel(); |
d37c6dd9aa20
tabs: Status, Configuration, About
František Kučera <franta-hg@frantovo.cz>
parents:
16
diff
changeset
|
64 |
void initConfigurationPanel(); |
d37c6dd9aa20
tabs: Status, Configuration, About
František Kučera <franta-hg@frantovo.cz>
parents:
16
diff
changeset
|
65 |
void initAboutPanel(); |
18
7323a89c15e9
clickable links in About panel
František Kučera <franta-hg@frantovo.cz>
parents:
17
diff
changeset
|
66 |
|
7323a89c15e9
clickable links in About panel
František Kučera <franta-hg@frantovo.cz>
parents:
17
diff
changeset
|
67 |
void appendAboutLine(QFormLayout* layout, const QString& label, const QString& value, QWidget* parent); |
21
642f32f76c9d
display the battery charge level (from UPower)
František Kučera <franta-hg@frantovo.cz>
parents:
20
diff
changeset
|
68 |
|
642f32f76c9d
display the battery charge level (from UPower)
František Kučera <franta-hg@frantovo.cz>
parents:
20
diff
changeset
|
69 |
int getBatteryLevel(); |
17
d37c6dd9aa20
tabs: Status, Configuration, About
František Kučera <franta-hg@frantovo.cz>
parents:
16
diff
changeset
|
70 |
|
16
2705911938b4
GUI for mouse configuration over D-Bus daemon
František Kučera <franta-hg@frantovo.cz>
parents:
15
diff
changeset
|
71 |
private slots: |
2705911938b4
GUI for mouse configuration over D-Bus daemon
František Kučera <franta-hg@frantovo.cz>
parents:
15
diff
changeset
|
72 |
void refresh(); |
2705911938b4
GUI for mouse configuration over D-Bus daemon
František Kučera <franta-hg@frantovo.cz>
parents:
15
diff
changeset
|
73 |
void configure(); |
15 | 74 |
}; |