-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathcam_importmat.h
More file actions
42 lines (37 loc) · 877 Bytes
/
cam_importmat.h
File metadata and controls
42 lines (37 loc) · 877 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
41
42
#ifndef CAM_IMPORTMAT_H
#define CAM_IMPORTMAT_H
/*
************************************
*** @Xu Xu
*** @2017.05.10
*** @LianYunGang,China
*** @Hananiahhsu@live.cn
************************************
*/
#include <QDialog>
#include <QAbstractButton>
#include <QFileDialog>
namespace Ui {
class CAM_ImportMat;
}
class CAM_ImportMat : public /*QDialog*/QFileDialog
{
Q_OBJECT
public:
explicit CAM_ImportMat(QWidget *parent = 0);
~CAM_ImportMat();
public:
QString dxf_name;
QStringList dxf_list;
private:
Ui::CAM_ImportMat *ui;
private:
void closeEvent(QCloseEvent *event);
signals:
void CAM_ImportMat_Close_Signal(QStringList dxf_list);
private slots:
void on_buttonBox_clicked(QAbstractButton *button);
void on_destroyed();
void on_FilesSelected();
};
#endif // CAM_IMPORTMAT_H