31 lines
482 B
C++
31 lines
482 B
C++
#ifndef MOVINGDIALOG_H
|
|
#define MOVINGDIALOG_H
|
|
|
|
#include <QDialog>
|
|
#include <QtSql>
|
|
#include <QStringList>
|
|
|
|
|
|
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
|