import dialog

This commit is contained in:
2019-02-12 15:32:09 +01:00
parent ee6bcd5af3
commit 9bc94a0afd
7 changed files with 618 additions and 7 deletions
+37
View File
@@ -0,0 +1,37 @@
#ifndef CIMPORTDIALOG_H
#define CIMPORTDIALOG_H
#include <QDialog>
#include <QCloseEvent>
namespace Ui {
class cImportDialog;
}
class cImportDialog : public QDialog
{
Q_OBJECT
public:
explicit cImportDialog(QWidget *parent = nullptr);
~cImportDialog();
private slots:
void on_m_lpPathSelect_clicked();
private:
Ui::cImportDialog *ui;
protected:
/*!
\brief
\fn closeEvent
\param event
*/
void closeEvent(QCloseEvent* event);
};
#endif // CIMPORTDIALOG_H