Credentials_manager/PasswordManager/movingdialog.h
danylo-nevidomiy b84ab05bed Directories list finished
records moving between the directories partially done
Nothing was broken
Hooorrray!
2022-02-02 13:00:10 +03:00

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