summaryrefslogtreecommitdiffstats
path: root/copydialog.h
blob: 2d340943fc5f3d2a32d76a327e402afe666618f6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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