summaryrefslogtreecommitdiffstats
path: root/copydialog.h
diff options
context:
space:
mode:
Diffstat (limited to 'copydialog.h')
-rw-r--r--copydialog.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/copydialog.h b/copydialog.h
new file mode 100644
index 0000000..2d34094
--- /dev/null
+++ b/copydialog.h
@@ -0,0 +1,20 @@
+#ifndef COPYDIALOG_H
+#define COPYDIALOG_H
+
+#include <QDialog>
+
+class QLineEdit;
+class QLabel;
+
+class CopyDialog : public QDialog {
+ public:
+ explicit CopyDialog(QWidget *parent = nullptr, Qt::WindowFlags f = Qt::WindowFlags());
+
+ private:
+ QLineEdit *mSrcE;
+ QLineEdit *mDstE;
+ QLineEdit *mFolderE;
+ QLabel *mResultL;
+};
+
+#endif // COPYDIALOG_H