author | František Kučera <franta-hg@frantovo.cz> |
Tue, 03 Sep 2019 00:43:12 +0200 | |
branch | v_0 |
changeset 18 | 7323a89c15e9 |
parent 17 | d37c6dd9aa20 |
child 20 | cfb5f62ea048 |
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> |
2705911938b4
GUI for mouse configuration over D-Bus daemon
František Kučera <franta-hg@frantovo.cz>
parents:
15
diff
changeset
|
27 |
#include <QtDBus/QDBusConnection> |
2705911938b4
GUI for mouse configuration over D-Bus daemon
František Kučera <franta-hg@frantovo.cz>
parents:
15
diff
changeset
|
28 |
|
2705911938b4
GUI for mouse configuration over D-Bus daemon
František Kučera <franta-hg@frantovo.cz>
parents:
15
diff
changeset
|
29 |
#include "generated-sources/Proxy.h" |
15 | 30 |
|
31 |
class MouseMainWindow : public QMainWindow { |
|
32 |
Q_OBJECT |
|
33 |
public: |
|
16
2705911938b4
GUI for mouse configuration over D-Bus daemon
František Kučera <franta-hg@frantovo.cz>
parents:
15
diff
changeset
|
34 |
MouseMainWindow(); |
15 | 35 |
|
36 |
virtual ~MouseMainWindow() { |
|
37 |
} |
|
38 |
||
16
2705911938b4
GUI for mouse configuration over D-Bus daemon
František Kučera <franta-hg@frantovo.cz>
parents:
15
diff
changeset
|
39 |
private: |
17
d37c6dd9aa20
tabs: Status, Configuration, About
František Kučera <franta-hg@frantovo.cz>
parents:
16
diff
changeset
|
40 |
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
|
41 |
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
|
42 |
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
|
43 |
QCheckBox* statusDevice = new QCheckBox("mouse found", this); |
17
d37c6dd9aa20
tabs: Status, Configuration, About
František Kučera <franta-hg@frantovo.cz>
parents:
16
diff
changeset
|
44 |
|
16
2705911938b4
GUI for mouse configuration over D-Bus daemon
František Kučera <franta-hg@frantovo.cz>
parents:
15
diff
changeset
|
45 |
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
|
46 |
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
|
47 |
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
|
48 |
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
|
49 |
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
|
50 |
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
|
51 |
|
16
2705911938b4
GUI for mouse configuration over D-Bus daemon
František Kučera <franta-hg@frantovo.cz>
parents:
15
diff
changeset
|
52 |
QLineEdit* message = new QLineEdit(this); |
17
d37c6dd9aa20
tabs: Status, Configuration, About
František Kučera <franta-hg@frantovo.cz>
parents:
16
diff
changeset
|
53 |
|
16
2705911938b4
GUI for mouse configuration over D-Bus daemon
František Kučera <franta-hg@frantovo.cz>
parents:
15
diff
changeset
|
54 |
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
|
55 |
InfoGlobalcodeMouseCadMouseProInterface* proxy; |
2705911938b4
GUI for mouse configuration over D-Bus daemon
František Kučera <franta-hg@frantovo.cz>
parents:
15
diff
changeset
|
56 |
|
17
d37c6dd9aa20
tabs: Status, Configuration, About
František Kučera <franta-hg@frantovo.cz>
parents:
16
diff
changeset
|
57 |
void initStatusPanel(); |
d37c6dd9aa20
tabs: Status, Configuration, About
František Kučera <franta-hg@frantovo.cz>
parents:
16
diff
changeset
|
58 |
void initConfigurationPanel(); |
d37c6dd9aa20
tabs: Status, Configuration, About
František Kučera <franta-hg@frantovo.cz>
parents:
16
diff
changeset
|
59 |
void initAboutPanel(); |
18
7323a89c15e9
clickable links in About panel
František Kučera <franta-hg@frantovo.cz>
parents:
17
diff
changeset
|
60 |
|
7323a89c15e9
clickable links in About panel
František Kučera <franta-hg@frantovo.cz>
parents:
17
diff
changeset
|
61 |
void appendAboutLine(QFormLayout* layout, const QString& label, const QString& value, QWidget* parent); |
17
d37c6dd9aa20
tabs: Status, Configuration, About
František Kučera <franta-hg@frantovo.cz>
parents:
16
diff
changeset
|
62 |
|
16
2705911938b4
GUI for mouse configuration over D-Bus daemon
František Kučera <franta-hg@frantovo.cz>
parents:
15
diff
changeset
|
63 |
private slots: |
2705911938b4
GUI for mouse configuration over D-Bus daemon
František Kučera <franta-hg@frantovo.cz>
parents:
15
diff
changeset
|
64 |
void refresh(); |
2705911938b4
GUI for mouse configuration over D-Bus daemon
František Kučera <franta-hg@frantovo.cz>
parents:
15
diff
changeset
|
65 |
void configure(); |
15 | 66 |
}; |