#ifndef MOVINGDIALOG_H #define MOVINGDIALOG_H #include #include #include namespace Ui { class MovingDialog; } class MovingDialog : public QDialog { Q_OBJECT public: explicit MovingDialog(QWidget *parent = nullptr); ~MovingDialog(); void initialize(QStringList items); signals: void trueMove(QString directory); private slots: void on_buttonBox_accepted(); private: Ui::MovingDialog *ui; }; #endif // MOVINGDIALOG_H