author | František Kučera <franta-hg@frantovo.cz> |
Thu, 29 Aug 2019 22:20:18 +0200 | |
branch | v_0 |
changeset 15 | 00783e323e66 |
parent 14 | 759edaff1755 |
child 16 | 2705911938b4 |
permissions | -rw-r--r-- |
6 | 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 |
*/ |
|
0
6ff501639c23
project skeleton, open USB HID device
František Kučera <franta-hg@frantovo.cz>
parents:
diff
changeset
|
18 |
#include <iostream> |
6ff501639c23
project skeleton, open USB HID device
František Kučera <franta-hg@frantovo.cz>
parents:
diff
changeset
|
19 |
|
15 | 20 |
#include <QApplication> |
12 | 21 |
#include <QtDBus/QDBusConnection> |
22 |
||
14
759edaff1755
GUI project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
13
diff
changeset
|
23 |
#include "generated-sources/Proxy.h" |
15 | 24 |
#include "MouseMainWindow.h" |
4
405aa9de65d2
CadMouseConfig class, frequency, lift-off detection, smart scrolling
František Kučera <franta-hg@frantovo.cz>
parents:
3
diff
changeset
|
25 |
|
0
6ff501639c23
project skeleton, open USB HID device
František Kučera <franta-hg@frantovo.cz>
parents:
diff
changeset
|
26 |
int main(int argc, char** argv) { |
6ff501639c23
project skeleton, open USB HID device
František Kučera <franta-hg@frantovo.cz>
parents:
diff
changeset
|
27 |
|
14
759edaff1755
GUI project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
13
diff
changeset
|
28 |
std::wcout << L"cadMousePro GUI" << std::endl; |
1
29cbe171cd43
first working version: disables „free wheel“ a.k.a. „smart scrolling“ feature
František Kučera <franta-hg@frantovo.cz>
parents:
0
diff
changeset
|
29 |
|
12 | 30 |
|
15 | 31 |
QApplication qtApplication(argc, argv); |
32 |
||
33 |
MouseMainWindow window; |
|
34 |
window.show(); |
|
35 |
||
12 | 36 |
|
14
759edaff1755
GUI project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
13
diff
changeset
|
37 |
QDBusConnection connection = QDBusConnection::systemBus(); |
759edaff1755
GUI project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
13
diff
changeset
|
38 |
|
759edaff1755
GUI project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
13
diff
changeset
|
39 |
InfoGlobalcodeMouseCadMouseProInterface* proxy = new InfoGlobalcodeMouseCadMouseProInterface("info.globalcode.mouse.cadMousePro", "/info/globalcode/mouse/cadMousePro", connection, &qtApplication); |
15 | 40 |
|
14
759edaff1755
GUI project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
13
diff
changeset
|
41 |
std::wcout << (proxy->isValid() ? L"connected" : L"disconnected") << std::endl; |
759edaff1755
GUI project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
13
diff
changeset
|
42 |
std::wcout << (proxy->devicePresent() ? L"mouse found" : L"mouse not found") << std::endl; |
759edaff1755
GUI project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
13
diff
changeset
|
43 |
std::wcout << L"mouse name: " << proxy->deviceName().toStdWString() << std::endl; |
759edaff1755
GUI project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
13
diff
changeset
|
44 |
std::wcout << connection.lastError().message().toStdWString() << std::endl; |
12 | 45 |
|
14
759edaff1755
GUI project skeleton
František Kučera <franta-hg@frantovo.cz>
parents:
13
diff
changeset
|
46 |
return qtApplication.exec(); |
7
148f8dd077e8
CLI options and parser of configuration parameters instead of hardcoded values
František Kučera <franta-hg@frantovo.cz>
parents:
6
diff
changeset
|
47 |
|
4
405aa9de65d2
CadMouseConfig class, frequency, lift-off detection, smart scrolling
František Kučera <franta-hg@frantovo.cz>
parents:
3
diff
changeset
|
48 |
} |