-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaboutdialog.h
47 lines (40 loc) · 1.92 KB
/
aboutdialog.h
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
#ifndef ABOUTDIALOG_H
#define ABOUTDIALOG_H
#include <QDialog>
#include <QLabel>
namespace Ui {
class AboutDialog;
}
class AboutDialog : public QDialog
{
Q_OBJECT
public:
explicit AboutDialog(QWidget *parent = nullptr);
~AboutDialog();
void retranslateDialogUi();
private:
Ui::AboutDialog *ui;
public:
QLabel *aboutLabel;
QString aboutText = tr("<p align='justify'>"
"Version 1.0.2<br>"
"Face Controlled Mouse (C) is a free mouse replacement software. "
"You will be able to control your computer without using your hands. "
"Face Controlled Mouse uses a standard web camera to track your face "
"motion and move the mouse pointer accordingly.<br>"
"It also provides several methods for clicking (dwell or smile). "
"It works on standard PCs equipped with a web camera. "
"No additional hardware is required.<br>"
"Pointer speed, motion acceleration and smoothness, dwelling time, "
"and many other variables can be adjusted to fit the user's needs.<br>"
"License: Face Controlled Mouse released under the BY-NC-SA (non-commercial "
"Attribution-Share-Alike) license.<br>"
"Authors: Eugene Filimonov (development), Julia Reutskaya "
"(adaptation for children with special needs).<br>"
"Face Controlled Mouse (C) 2022, <br>"
"<a href='https://www.facebook.com/filimonov.evg'>Eugene Filimonov,</a><br>"
"<a href='https://preability.com/face-controlled-mouse/'>preAbility.com,</a><br>"
"<a href='https://github.com/EFilimonov/FaceControlledMouse'>github</a></p>"
);
};
#endif // ABOUTDIALOG_H