Add folder support

This commit is contained in:
Aurélie Delhaie
2022-10-22 19:33:54 +02:00
parent 8ceae034e1
commit 7b17dfb044
35 changed files with 1299 additions and 1313 deletions

24
src/frames/renamedialog.h Normal file
View File

@@ -0,0 +1,24 @@
#ifndef RENAMEDIALOG_H
#define RENAMEDIALOG_H
#include <QDialog>
namespace Ui {
class RenameDialog;
}
class RenameDialog : public QDialog
{
Q_OBJECT
public:
explicit RenameDialog(QString oldName, QWidget *parent = nullptr);
~RenameDialog();
QString getNewName();
private:
Ui::RenameDialog *ui;
};
#endif // RENAMEDIALOG_H