-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathto_start.h
46 lines (38 loc) · 992 Bytes
/
to_start.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
#ifndef TO_START_H
#define TO_START_H
#include <QWidget>
#include<QMouseEvent>
#include<QPixmap>
#include<QPalette>
#include<QIcon>
#include<QImage>
#include<QBitmap>
#include<QPainter>
namespace Ui {
class to_Start;
}
class to_Start : public QWidget
{
Q_OBJECT
public:
static QString WhoUsing;
static QString UsingName;
explicit to_Start(QWidget *parent = nullptr);
~to_Start();
private:
QPoint mousePosition;
bool mouseIsPressd=false;
Ui::to_Start *ui;
private slots:
void mousePressEvent(QMouseEvent *event);
void mouseReleseEvent(QMouseEvent *);
void mouseMoveEvent(QMouseEvent *event);
void on_pushButton_Exit_clicked();
void on_pushButton_Regist_clicked();
void on_pushButton_sure_clicked();
void on_pushButton_Min_clicked();
void on_pushButton_register_clicked();
void on_pushButton_cancel_clicked();
void on_pushButton_yes_clicked();
};
#endif // TO_START_H