mirror of
https://gitee.com/vnotex/vnote.git
synced 2025-07-06 06:19:52 +08:00
25 lines
540 B
C++
25 lines
540 B
C++
#ifndef IMPORTLEGACYNOTEBOOKDIALOG_H
|
|
#define IMPORTLEGACYNOTEBOOKDIALOG_H
|
|
|
|
#include "newnotebookdialog.h"
|
|
|
|
namespace vnotex
|
|
{
|
|
class ImportLegacyNotebookDialog : public NewNotebookDialog
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit ImportLegacyNotebookDialog(QWidget *p_parent = nullptr);
|
|
|
|
protected:
|
|
void acceptedButtonClicked() Q_DECL_OVERRIDE;
|
|
|
|
bool validateRootFolderInput(QString &p_msg) Q_DECL_OVERRIDE;
|
|
|
|
private:
|
|
bool importLegacyNotebook();
|
|
};
|
|
}
|
|
|
|
#endif // IMPORTLEGACYNOTEBOOKDIALOG_H
|