-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathfrmsoftwareinfo.h
More file actions
40 lines (33 loc) · 794 Bytes
/
frmsoftwareinfo.h
File metadata and controls
40 lines (33 loc) · 794 Bytes
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
#ifndef FRMSOFTWAREINFO_H
#define FRMSOFTWAREINFO_H
#include <QDialog>
#include "iconhelper.h"
#include "../myhelper.h"
namespace Ui {
class frmSoftwareInfo;
}
class frmSoftwareInfo : public QDialog
{
Q_OBJECT
public:
explicit frmSoftwareInfo(QWidget *parent = 0);
~frmSoftwareInfo();
protected:
bool eventFilter(QObject *obj, QEvent *event);
void mouseMoveEvent(QMouseEvent *e);
void mousePressEvent(QMouseEvent *e);
void mouseReleaseEvent(QMouseEvent *);
private:
Ui::frmSoftwareInfo *ui;
QPoint mousePoint;
bool mousePressed;
bool max;
QRect location;
void InitStyle();
signals:
private slots:
void on_btnMenu_Close_clicked();
void on_btnMenu_Max_clicked();
void on_btnMenu_Min_clicked();
};
#endif // FRMSOFTWAREINFO_H