summaryrefslogtreecommitdiffstats
path: root/copydialog.h
blob: fd101ce9b64dd58678cef29adc53676aa09b6aba (plain)
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
#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());

    public slots:
        void readSettings();
        void getDestination();

    protected:
        virtual void closeEvent(QCloseEvent *e);

    private:
        QLineEdit *mSrcE;
        QLineEdit *mDstE;
        QLineEdit *mFolderE;
        QLabel *mResultL;
};

#endif // COPYDIALOG_H