mirror of
https://github.com/d47081/qBittorrent.git
synced 2025-01-10 23:07:59 +00:00
Merge pull request #17392 from Chocobo1/validatePath
Fix path validator
This commit is contained in:
commit
f505d742d8
@ -70,14 +70,14 @@ class FileSystemPathEdit::FileSystemPathEditPrivate
|
|||||||
Q_DECLARE_PUBLIC(FileSystemPathEdit)
|
Q_DECLARE_PUBLIC(FileSystemPathEdit)
|
||||||
Q_DISABLE_COPY_MOVE(FileSystemPathEditPrivate)
|
Q_DISABLE_COPY_MOVE(FileSystemPathEditPrivate)
|
||||||
|
|
||||||
FileSystemPathEditPrivate(FileSystemPathEdit *q, Private::FileEditorWithCompletion *editor);
|
FileSystemPathEditPrivate(FileSystemPathEdit *q, Private::IFileEditorWithCompletion *editor);
|
||||||
|
|
||||||
void modeChanged();
|
void modeChanged();
|
||||||
void browseActionTriggered();
|
void browseActionTriggered();
|
||||||
QString dialogCaptionOrDefault() const;
|
QString dialogCaptionOrDefault() const;
|
||||||
|
|
||||||
FileSystemPathEdit *q_ptr = nullptr;
|
FileSystemPathEdit *q_ptr = nullptr;
|
||||||
std::unique_ptr<Private::FileEditorWithCompletion> m_editor;
|
std::unique_ptr<Private::IFileEditorWithCompletion> m_editor;
|
||||||
QAction *m_browseAction = nullptr;
|
QAction *m_browseAction = nullptr;
|
||||||
QToolButton *m_browseBtn = nullptr;
|
QToolButton *m_browseBtn = nullptr;
|
||||||
QString m_fileNameFilter;
|
QString m_fileNameFilter;
|
||||||
@ -88,7 +88,7 @@ class FileSystemPathEdit::FileSystemPathEditPrivate
|
|||||||
};
|
};
|
||||||
|
|
||||||
FileSystemPathEdit::FileSystemPathEditPrivate::FileSystemPathEditPrivate(
|
FileSystemPathEdit::FileSystemPathEditPrivate::FileSystemPathEditPrivate(
|
||||||
FileSystemPathEdit *q, Private::FileEditorWithCompletion *editor)
|
FileSystemPathEdit *q, Private::IFileEditorWithCompletion *editor)
|
||||||
: q_ptr {q}
|
: q_ptr {q}
|
||||||
, m_editor {editor}
|
, m_editor {editor}
|
||||||
, m_browseAction {new QAction(q)}
|
, m_browseAction {new QAction(q)}
|
||||||
@ -183,13 +183,12 @@ void FileSystemPathEdit::FileSystemPathEditPrivate::modeChanged()
|
|||||||
m_validator->setCheckWritePermission((m_mode == FileSystemPathEdit::Mode::FileSave) || (m_mode == FileSystemPathEdit::Mode::DirectorySave));
|
m_validator->setCheckWritePermission((m_mode == FileSystemPathEdit::Mode::FileSave) || (m_mode == FileSystemPathEdit::Mode::DirectorySave));
|
||||||
}
|
}
|
||||||
|
|
||||||
FileSystemPathEdit::FileSystemPathEdit(Private::FileEditorWithCompletion *editor, QWidget *parent)
|
FileSystemPathEdit::FileSystemPathEdit(Private::IFileEditorWithCompletion *editor, QWidget *parent)
|
||||||
: QWidget(parent)
|
: QWidget(parent)
|
||||||
, d_ptr(new FileSystemPathEditPrivate(this, editor))
|
, d_ptr(new FileSystemPathEditPrivate(this, editor))
|
||||||
{
|
{
|
||||||
Q_D(FileSystemPathEdit);
|
Q_D(FileSystemPathEdit);
|
||||||
editor->widget()->setParent(this);
|
editor->widget()->setParent(this);
|
||||||
setFocusProxy(editor->widget());
|
|
||||||
|
|
||||||
auto *layout = new QHBoxLayout(this);
|
auto *layout = new QHBoxLayout(this);
|
||||||
layout->setContentsMargins(0, 0, 0, 0);
|
layout->setContentsMargins(0, 0, 0, 0);
|
||||||
|
@ -35,8 +35,8 @@
|
|||||||
namespace Private
|
namespace Private
|
||||||
{
|
{
|
||||||
class FileComboEdit;
|
class FileComboEdit;
|
||||||
class FileEditorWithCompletion;
|
|
||||||
class FileLineEdit;
|
class FileLineEdit;
|
||||||
|
class IFileEditorWithCompletion;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*!
|
/*!
|
||||||
@ -92,7 +92,7 @@ signals:
|
|||||||
void selectedPathChanged(const Path &path);
|
void selectedPathChanged(const Path &path);
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
explicit FileSystemPathEdit(Private::FileEditorWithCompletion *editor, QWidget *parent);
|
explicit FileSystemPathEdit(Private::IFileEditorWithCompletion *editor, QWidget *parent);
|
||||||
|
|
||||||
template <class Widget>
|
template <class Widget>
|
||||||
Widget *editWidget() const
|
Widget *editWidget() const
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* Bittorrent Client using Qt and libtorrent.
|
* Bittorrent Client using Qt and libtorrent.
|
||||||
|
* Copyright (C) 2022 Mike Tzou (Chocobo1)
|
||||||
* Copyright (C) 2016 Eugene Shalygin
|
* Copyright (C) 2016 Eugene Shalygin
|
||||||
*
|
*
|
||||||
* This program is free software; you can redistribute it and/or
|
* This program is free software; you can redistribute it and/or
|
||||||
@ -42,13 +43,6 @@
|
|||||||
// -------------------- FileSystemPathValidator ----------------------------------------
|
// -------------------- FileSystemPathValidator ----------------------------------------
|
||||||
Private::FileSystemPathValidator::FileSystemPathValidator(QObject *parent)
|
Private::FileSystemPathValidator::FileSystemPathValidator(QObject *parent)
|
||||||
: QValidator(parent)
|
: QValidator(parent)
|
||||||
, m_strictMode(false)
|
|
||||||
, m_existingOnly(false)
|
|
||||||
, m_directoriesOnly(false)
|
|
||||||
, m_checkReadPermission(false)
|
|
||||||
, m_checkWritePermission(false)
|
|
||||||
, m_lastTestResult(TestResult::DoesNotExist)
|
|
||||||
, m_lastValidationState(QValidator::Invalid)
|
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -57,9 +51,9 @@ bool Private::FileSystemPathValidator::strictMode() const
|
|||||||
return m_strictMode;
|
return m_strictMode;
|
||||||
}
|
}
|
||||||
|
|
||||||
void Private::FileSystemPathValidator::setStrictMode(bool v)
|
void Private::FileSystemPathValidator::setStrictMode(const bool value)
|
||||||
{
|
{
|
||||||
m_strictMode = v;
|
m_strictMode = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool Private::FileSystemPathValidator::existingOnly() const
|
bool Private::FileSystemPathValidator::existingOnly() const
|
||||||
@ -67,9 +61,9 @@ bool Private::FileSystemPathValidator::existingOnly() const
|
|||||||
return m_existingOnly;
|
return m_existingOnly;
|
||||||
}
|
}
|
||||||
|
|
||||||
void Private::FileSystemPathValidator::setExistingOnly(bool v)
|
void Private::FileSystemPathValidator::setExistingOnly(const bool value)
|
||||||
{
|
{
|
||||||
m_existingOnly = v;
|
m_existingOnly = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool Private::FileSystemPathValidator::directoriesOnly() const
|
bool Private::FileSystemPathValidator::directoriesOnly() const
|
||||||
@ -77,9 +71,9 @@ bool Private::FileSystemPathValidator::directoriesOnly() const
|
|||||||
return m_directoriesOnly;
|
return m_directoriesOnly;
|
||||||
}
|
}
|
||||||
|
|
||||||
void Private::FileSystemPathValidator::setDirectoriesOnly(bool v)
|
void Private::FileSystemPathValidator::setDirectoriesOnly(const bool value)
|
||||||
{
|
{
|
||||||
m_directoriesOnly = v;
|
m_directoriesOnly = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool Private::FileSystemPathValidator::checkReadPermission() const
|
bool Private::FileSystemPathValidator::checkReadPermission() const
|
||||||
@ -87,9 +81,9 @@ bool Private::FileSystemPathValidator::checkReadPermission() const
|
|||||||
return m_checkReadPermission;
|
return m_checkReadPermission;
|
||||||
}
|
}
|
||||||
|
|
||||||
void Private::FileSystemPathValidator::setCheckReadPermission(bool v)
|
void Private::FileSystemPathValidator::setCheckReadPermission(const bool value)
|
||||||
{
|
{
|
||||||
m_checkReadPermission = v;
|
m_checkReadPermission = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool Private::FileSystemPathValidator::checkWritePermission() const
|
bool Private::FileSystemPathValidator::checkWritePermission() const
|
||||||
@ -97,91 +91,36 @@ bool Private::FileSystemPathValidator::checkWritePermission() const
|
|||||||
return m_checkWritePermission;
|
return m_checkWritePermission;
|
||||||
}
|
}
|
||||||
|
|
||||||
void Private::FileSystemPathValidator::setCheckWritePermission(bool v)
|
void Private::FileSystemPathValidator::setCheckWritePermission(const bool value)
|
||||||
{
|
{
|
||||||
m_checkWritePermission = v;
|
m_checkWritePermission = value;
|
||||||
}
|
|
||||||
|
|
||||||
QValidator::State Private::FileSystemPathValidator::validate(QString &input, int &pos) const
|
|
||||||
{
|
|
||||||
if (input.isEmpty())
|
|
||||||
return m_strictMode ? QValidator::Invalid : QValidator::Intermediate;
|
|
||||||
|
|
||||||
// we test path components from beginning to the one with cursor location in strict mode
|
|
||||||
// and the one with cursor and beyond in non-strict mode
|
|
||||||
QList<QStringView> components = QStringView(input).split(QDir::separator(), Qt::KeepEmptyParts);
|
|
||||||
// find index of the component that contains pos
|
|
||||||
int componentWithCursorIndex = 0;
|
|
||||||
int componentWithCursorPosition = 0;
|
|
||||||
int pathLength = 0;
|
|
||||||
|
|
||||||
// components.size() - 1 because when path ends with QDir::separator(), we will not see the last
|
|
||||||
// character in the components array, yet everything past the one before the last delimiter
|
|
||||||
// belongs to the last component
|
|
||||||
for (; (componentWithCursorIndex < (components.size() - 1)) && (pathLength < pos); ++componentWithCursorIndex)
|
|
||||||
{
|
|
||||||
pathLength = componentWithCursorPosition + components[componentWithCursorIndex].size();
|
|
||||||
componentWithCursorPosition += components[componentWithCursorIndex].size() + 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
Q_ASSERT(componentWithCursorIndex < components.size());
|
|
||||||
|
|
||||||
m_lastValidationState = QValidator::Acceptable;
|
|
||||||
if (componentWithCursorIndex > 0)
|
|
||||||
m_lastValidationState = validate(components, m_strictMode, 0, componentWithCursorIndex - 1);
|
|
||||||
if ((m_lastValidationState == QValidator::Acceptable) && (componentWithCursorIndex < components.size()))
|
|
||||||
m_lastValidationState = validate(components, false, componentWithCursorIndex, components.size() - 1);
|
|
||||||
return m_lastValidationState;
|
|
||||||
}
|
|
||||||
|
|
||||||
QValidator::State Private::FileSystemPathValidator::validate(const QList<QStringView> &pathComponents, bool strict,
|
|
||||||
int firstComponentToTest, int lastComponentToTest) const
|
|
||||||
{
|
|
||||||
Q_ASSERT(firstComponentToTest >= 0);
|
|
||||||
Q_ASSERT(lastComponentToTest >= firstComponentToTest);
|
|
||||||
Q_ASSERT(lastComponentToTest < pathComponents.size());
|
|
||||||
|
|
||||||
m_lastTestResult = TestResult::DoesNotExist;
|
|
||||||
if (pathComponents.empty())
|
|
||||||
return strict ? QValidator::Invalid : QValidator::Intermediate;
|
|
||||||
|
|
||||||
for (int i = firstComponentToTest; i <= lastComponentToTest; ++i)
|
|
||||||
{
|
|
||||||
const bool isFinalPath = (i == (pathComponents.size() - 1));
|
|
||||||
const QStringView componentPath = pathComponents[i];
|
|
||||||
if (componentPath.isEmpty()) continue;
|
|
||||||
|
|
||||||
m_lastTestResult = testPath(Path(pathComponents[i].toString()), isFinalPath);
|
|
||||||
if (m_lastTestResult != TestResult::OK)
|
|
||||||
{
|
|
||||||
m_lastTestedPath = componentPath.toString();
|
|
||||||
return strict ? QValidator::Invalid : QValidator::Intermediate;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return QValidator::Acceptable;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
Private::FileSystemPathValidator::TestResult
|
Private::FileSystemPathValidator::TestResult
|
||||||
Private::FileSystemPathValidator::testPath(const Path &path, bool pathIsComplete) const
|
Private::FileSystemPathValidator::testPath(const Path &path) const
|
||||||
{
|
{
|
||||||
QFileInfo fi {path.data()};
|
// `QFileInfo` will cache the query results and avoid exessive querying to filesystem
|
||||||
if (m_existingOnly && !fi.exists())
|
const QFileInfo info {path.data()};
|
||||||
|
|
||||||
|
if (existingOnly() && !info.exists())
|
||||||
return TestResult::DoesNotExist;
|
return TestResult::DoesNotExist;
|
||||||
|
|
||||||
if ((!pathIsComplete || m_directoriesOnly) && !fi.isDir())
|
if (directoriesOnly())
|
||||||
return TestResult::NotADir;
|
|
||||||
|
|
||||||
if (pathIsComplete)
|
|
||||||
{
|
{
|
||||||
if (!m_directoriesOnly && fi.isDir())
|
if (!info.isDir())
|
||||||
return TestResult::NotAFile;
|
return TestResult::NotADir;
|
||||||
|
|
||||||
if (m_checkWritePermission && (fi.exists() && !fi.isWritable()))
|
|
||||||
return TestResult::CantWrite;
|
|
||||||
if (m_checkReadPermission && !fi.isReadable())
|
|
||||||
return TestResult::CantRead;
|
|
||||||
}
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
if (!info.isFile())
|
||||||
|
return TestResult::NotAFile;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (checkReadPermission() && !info.isReadable())
|
||||||
|
return TestResult::CantRead;
|
||||||
|
|
||||||
|
if (checkWritePermission() && !info.isWritable())
|
||||||
|
return TestResult::CantWrite;
|
||||||
|
|
||||||
return TestResult::OK;
|
return TestResult::OK;
|
||||||
}
|
}
|
||||||
@ -196,9 +135,17 @@ QValidator::State Private::FileSystemPathValidator::lastValidationState() const
|
|||||||
return m_lastValidationState;
|
return m_lastValidationState;
|
||||||
}
|
}
|
||||||
|
|
||||||
QString Private::FileSystemPathValidator::lastTestedPath() const
|
QValidator::State Private::FileSystemPathValidator::validate(QString &input, int &pos) const
|
||||||
{
|
{
|
||||||
return m_lastTestedPath;
|
// ignore cursor position and validate the full path anyway
|
||||||
|
Q_UNUSED(pos);
|
||||||
|
|
||||||
|
m_lastTestResult = testPath(Path(input));
|
||||||
|
m_lastValidationState = (m_lastTestResult == TestResult::OK)
|
||||||
|
? QValidator::Acceptable
|
||||||
|
: (strictMode() ? QValidator::Invalid : QValidator::Intermediate);
|
||||||
|
|
||||||
|
return m_lastValidationState;
|
||||||
}
|
}
|
||||||
|
|
||||||
Private::FileLineEdit::FileLineEdit(QWidget *parent)
|
Private::FileLineEdit::FileLineEdit(QWidget *parent)
|
||||||
@ -208,11 +155,15 @@ Private::FileLineEdit::FileLineEdit(QWidget *parent)
|
|||||||
, m_browseAction {nullptr}
|
, m_browseAction {nullptr}
|
||||||
, m_warningAction {nullptr}
|
, m_warningAction {nullptr}
|
||||||
{
|
{
|
||||||
m_completerModel->setRootPath({});
|
m_iconProvider.setOptions(QFileIconProvider::DontUseCustomDirectoryIcons);
|
||||||
|
|
||||||
m_completerModel->setIconProvider(&m_iconProvider);
|
m_completerModel->setIconProvider(&m_iconProvider);
|
||||||
|
m_completerModel->setOptions(QFileSystemModel::DontWatchForChanges);
|
||||||
|
|
||||||
m_completer->setModel(m_completerModel);
|
m_completer->setModel(m_completerModel);
|
||||||
m_completer->setCompletionMode(QCompleter::PopupCompletion);
|
|
||||||
setCompleter(m_completer);
|
setCompleter(m_completer);
|
||||||
|
|
||||||
|
connect(this, &QLineEdit::textChanged, this, &FileLineEdit::validateText);
|
||||||
}
|
}
|
||||||
|
|
||||||
Private::FileLineEdit::~FileLineEdit()
|
Private::FileLineEdit::~FileLineEdit()
|
||||||
@ -220,10 +171,10 @@ Private::FileLineEdit::~FileLineEdit()
|
|||||||
delete m_completerModel; // has to be deleted before deleting the m_iconProvider object
|
delete m_completerModel; // has to be deleted before deleting the m_iconProvider object
|
||||||
}
|
}
|
||||||
|
|
||||||
void Private::FileLineEdit::completeDirectoriesOnly(bool completeDirsOnly)
|
void Private::FileLineEdit::completeDirectoriesOnly(const bool completeDirsOnly)
|
||||||
{
|
{
|
||||||
QDir::Filters filters = completeDirsOnly ? QDir::Dirs : QDir::AllEntries;
|
const QDir::Filters filters = QDir::NoDotAndDotDot
|
||||||
filters |= QDir::NoDotAndDotDot;
|
| (completeDirsOnly ? QDir::Dirs : QDir::AllEntries);
|
||||||
m_completerModel->setFilter(filters);
|
m_completerModel->setFilter(filters);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -260,40 +211,12 @@ QWidget *Private::FileLineEdit::widget()
|
|||||||
void Private::FileLineEdit::keyPressEvent(QKeyEvent *e)
|
void Private::FileLineEdit::keyPressEvent(QKeyEvent *e)
|
||||||
{
|
{
|
||||||
QLineEdit::keyPressEvent(e);
|
QLineEdit::keyPressEvent(e);
|
||||||
|
|
||||||
if ((e->key() == Qt::Key_Space) && (e->modifiers() == Qt::CTRL))
|
if ((e->key() == Qt::Key_Space) && (e->modifiers() == Qt::CTRL))
|
||||||
{
|
{
|
||||||
m_completerModel->setRootPath(QFileInfo(text()).absoluteDir().absolutePath());
|
m_completerModel->setRootPath(Path(text()).data());
|
||||||
showCompletionPopup();
|
showCompletionPopup();
|
||||||
}
|
}
|
||||||
|
|
||||||
auto *validator = qobject_cast<const FileSystemPathValidator *>(this->validator());
|
|
||||||
if (validator)
|
|
||||||
{
|
|
||||||
FileSystemPathValidator::TestResult lastTestResult = validator->lastTestResult();
|
|
||||||
QValidator::State lastState = validator->lastValidationState();
|
|
||||||
if (lastTestResult == FileSystemPathValidator::TestResult::OK)
|
|
||||||
{
|
|
||||||
delete m_warningAction;
|
|
||||||
m_warningAction = nullptr;
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
if (!m_warningAction)
|
|
||||||
{
|
|
||||||
m_warningAction = new QAction(this);
|
|
||||||
addAction(m_warningAction, QLineEdit::TrailingPosition);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (m_warningAction)
|
|
||||||
{
|
|
||||||
if (lastState == QValidator::Invalid)
|
|
||||||
m_warningAction->setIcon(style()->standardIcon(QStyle::SP_MessageBoxCritical));
|
|
||||||
else if (lastState == QValidator::Intermediate)
|
|
||||||
m_warningAction->setIcon(style()->standardIcon(QStyle::SP_MessageBoxWarning));
|
|
||||||
m_warningAction->setToolTip(warningText(lastTestResult).arg(validator->lastTestedPath()));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void Private::FileLineEdit::contextMenuEvent(QContextMenuEvent *event)
|
void Private::FileLineEdit::contextMenuEvent(QContextMenuEvent *event)
|
||||||
@ -316,24 +239,58 @@ void Private::FileLineEdit::showCompletionPopup()
|
|||||||
m_completer->complete();
|
m_completer->complete();
|
||||||
}
|
}
|
||||||
|
|
||||||
QString Private::FileLineEdit::warningText(FileSystemPathValidator::TestResult r)
|
void Private::FileLineEdit::validateText()
|
||||||
|
{
|
||||||
|
const auto *validator = qobject_cast<const FileSystemPathValidator *>(this->validator());
|
||||||
|
if (!validator)
|
||||||
|
return;
|
||||||
|
|
||||||
|
const FileSystemPathValidator::TestResult lastTestResult = validator->lastTestResult();
|
||||||
|
const QValidator::State lastState = validator->lastValidationState();
|
||||||
|
|
||||||
|
if (lastTestResult == FileSystemPathValidator::TestResult::OK)
|
||||||
|
{
|
||||||
|
delete m_warningAction;
|
||||||
|
m_warningAction = nullptr;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
if (!m_warningAction)
|
||||||
|
{
|
||||||
|
m_warningAction = new QAction(this);
|
||||||
|
addAction(m_warningAction, QLineEdit::TrailingPosition);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (m_warningAction)
|
||||||
|
{
|
||||||
|
if (lastState == QValidator::Invalid)
|
||||||
|
m_warningAction->setIcon(style()->standardIcon(QStyle::SP_MessageBoxCritical));
|
||||||
|
else if (lastState == QValidator::Intermediate)
|
||||||
|
m_warningAction->setIcon(style()->standardIcon(QStyle::SP_MessageBoxInformation));
|
||||||
|
m_warningAction->setToolTip(warningText(lastTestResult));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
QString Private::FileLineEdit::warningText(const FileSystemPathValidator::TestResult result)
|
||||||
{
|
{
|
||||||
using TestResult = FileSystemPathValidator::TestResult;
|
using TestResult = FileSystemPathValidator::TestResult;
|
||||||
switch (r)
|
switch (result)
|
||||||
{
|
{
|
||||||
case TestResult::DoesNotExist:
|
case TestResult::DoesNotExist:
|
||||||
return tr("'%1' does not exist");
|
return tr("Path does not exist");
|
||||||
case TestResult::NotADir:
|
case TestResult::NotADir:
|
||||||
return tr("'%1' does not point to a directory");
|
return tr("Path does not point to a directory");
|
||||||
case TestResult::NotAFile:
|
case TestResult::NotAFile:
|
||||||
return tr("'%1' does not point to a file");
|
return tr("Path does not point to a file");
|
||||||
case TestResult::CantRead:
|
case TestResult::CantRead:
|
||||||
return tr("Does not have read permission in '%1'");
|
return tr("Don't have read permission to path");
|
||||||
case TestResult::CantWrite:
|
case TestResult::CantWrite:
|
||||||
return tr("Does not have write permission in '%1'");
|
return tr("Don't have write permission to path");
|
||||||
default:
|
default:
|
||||||
return {};
|
break;
|
||||||
}
|
}
|
||||||
|
return {};
|
||||||
}
|
}
|
||||||
|
|
||||||
Private::FileComboEdit::FileComboEdit(QWidget *parent)
|
Private::FileComboEdit::FileComboEdit(QWidget *parent)
|
||||||
|
@ -50,25 +50,6 @@ namespace Private
|
|||||||
Q_DISABLE_COPY_MOVE(FileSystemPathValidator)
|
Q_DISABLE_COPY_MOVE(FileSystemPathValidator)
|
||||||
|
|
||||||
public:
|
public:
|
||||||
FileSystemPathValidator(QObject *parent = nullptr);
|
|
||||||
|
|
||||||
bool strictMode() const;
|
|
||||||
void setStrictMode(bool v);
|
|
||||||
|
|
||||||
bool existingOnly() const;
|
|
||||||
void setExistingOnly(bool v);
|
|
||||||
|
|
||||||
bool directoriesOnly() const;
|
|
||||||
void setDirectoriesOnly(bool v);
|
|
||||||
|
|
||||||
bool checkReadPermission() const;
|
|
||||||
void setCheckReadPermission(bool v);
|
|
||||||
|
|
||||||
bool checkWritePermission() const;
|
|
||||||
void setCheckWritePermission(bool v);
|
|
||||||
|
|
||||||
QValidator::State validate(QString &input, int &pos) const override;
|
|
||||||
|
|
||||||
enum class TestResult
|
enum class TestResult
|
||||||
{
|
{
|
||||||
OK,
|
OK,
|
||||||
@ -79,31 +60,45 @@ namespace Private
|
|||||||
CantWrite
|
CantWrite
|
||||||
};
|
};
|
||||||
|
|
||||||
|
FileSystemPathValidator(QObject *parent = nullptr);
|
||||||
|
|
||||||
|
bool strictMode() const;
|
||||||
|
void setStrictMode(bool value);
|
||||||
|
|
||||||
|
bool existingOnly() const;
|
||||||
|
void setExistingOnly(bool value);
|
||||||
|
|
||||||
|
bool directoriesOnly() const;
|
||||||
|
void setDirectoriesOnly(bool value);
|
||||||
|
|
||||||
|
bool checkReadPermission() const;
|
||||||
|
void setCheckReadPermission(bool value);
|
||||||
|
|
||||||
|
bool checkWritePermission() const;
|
||||||
|
void setCheckWritePermission(bool value);
|
||||||
|
|
||||||
TestResult lastTestResult() const;
|
TestResult lastTestResult() const;
|
||||||
QValidator::State lastValidationState() const;
|
QValidator::State lastValidationState() const;
|
||||||
QString lastTestedPath() const;
|
|
||||||
|
QValidator::State validate(QString &input, int &pos) const override;
|
||||||
|
|
||||||
private:
|
private:
|
||||||
QValidator::State validate(const QList<QStringView> &pathComponents, bool strict,
|
TestResult testPath(const Path &path) const;
|
||||||
int firstComponentToTest, int lastComponentToTest) const;
|
|
||||||
|
|
||||||
TestResult testPath(const Path &path, bool pathIsComplete) const;
|
bool m_strictMode = false;
|
||||||
|
bool m_existingOnly = false;
|
||||||
|
bool m_directoriesOnly = false;
|
||||||
|
bool m_checkReadPermission = false;
|
||||||
|
bool m_checkWritePermission = false;
|
||||||
|
|
||||||
bool m_strictMode;
|
mutable TestResult m_lastTestResult = TestResult::DoesNotExist;
|
||||||
bool m_existingOnly;
|
mutable QValidator::State m_lastValidationState = QValidator::Invalid;
|
||||||
bool m_directoriesOnly;
|
|
||||||
bool m_checkReadPermission;
|
|
||||||
bool m_checkWritePermission;
|
|
||||||
|
|
||||||
mutable TestResult m_lastTestResult;
|
|
||||||
mutable QValidator::State m_lastValidationState;
|
|
||||||
mutable QString m_lastTestedPath;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
class FileEditorWithCompletion
|
class IFileEditorWithCompletion
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
virtual ~FileEditorWithCompletion() = default;
|
virtual ~IFileEditorWithCompletion() = default;
|
||||||
virtual void completeDirectoriesOnly(bool completeDirsOnly) = 0;
|
virtual void completeDirectoriesOnly(bool completeDirsOnly) = 0;
|
||||||
virtual void setFilenameFilters(const QStringList &filters) = 0;
|
virtual void setFilenameFilters(const QStringList &filters) = 0;
|
||||||
virtual void setBrowseAction(QAction *action) = 0;
|
virtual void setBrowseAction(QAction *action) = 0;
|
||||||
@ -113,7 +108,7 @@ namespace Private
|
|||||||
virtual QWidget *widget() = 0;
|
virtual QWidget *widget() = 0;
|
||||||
};
|
};
|
||||||
|
|
||||||
class FileLineEdit final : public QLineEdit, public FileEditorWithCompletion
|
class FileLineEdit final : public QLineEdit, public IFileEditorWithCompletion
|
||||||
{
|
{
|
||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
Q_DISABLE_COPY_MOVE(FileLineEdit)
|
Q_DISABLE_COPY_MOVE(FileLineEdit)
|
||||||
@ -135,8 +130,10 @@ namespace Private
|
|||||||
void contextMenuEvent(QContextMenuEvent *event) override;
|
void contextMenuEvent(QContextMenuEvent *event) override;
|
||||||
|
|
||||||
private:
|
private:
|
||||||
static QString warningText(FileSystemPathValidator::TestResult r);
|
|
||||||
void showCompletionPopup();
|
void showCompletionPopup();
|
||||||
|
void validateText();
|
||||||
|
|
||||||
|
static QString warningText(FileSystemPathValidator::TestResult result);
|
||||||
|
|
||||||
QFileSystemModel *m_completerModel = nullptr;
|
QFileSystemModel *m_completerModel = nullptr;
|
||||||
QCompleter *m_completer = nullptr;
|
QCompleter *m_completer = nullptr;
|
||||||
@ -145,7 +142,7 @@ namespace Private
|
|||||||
QFileIconProvider m_iconProvider;
|
QFileIconProvider m_iconProvider;
|
||||||
};
|
};
|
||||||
|
|
||||||
class FileComboEdit final : public QComboBox, public FileEditorWithCompletion
|
class FileComboEdit final : public QComboBox, public IFileEditorWithCompletion
|
||||||
{
|
{
|
||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
Q_DISABLE_COPY_MOVE(FileComboEdit)
|
Q_DISABLE_COPY_MOVE(FileComboEdit)
|
||||||
|
Loading…
Reference in New Issue
Block a user