summaryrefslogtreecommitdiff
path: root/src/settingsdialogworkarounds.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/settingsdialogworkarounds.h')
-rw-r--r--src/settingsdialogworkarounds.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/settingsdialogworkarounds.h b/src/settingsdialogworkarounds.h
index 8c86fd69..d31bb371 100644
--- a/src/settingsdialogworkarounds.h
+++ b/src/settingsdialogworkarounds.h
@@ -20,13 +20,29 @@ public:
static std::optional<QString> changeBlacklistLater(QWidget* parent,
const QString& current);
+ // shows the blacklist dialog from the given string and returns the new
+ // blacklist if the user accepted it
+ //
+ static std::optional<QStringList> changeSkipFileSuffixes(QWidget* parent,
+ const QStringList& current);
+
+ // shows the blacklist dialog from the given string and returns the new
+ // blacklist if the user accepted it
+ //
+ static std::optional<QStringList> changeSkipDirectories(QWidget* parent,
+ const QStringList& current);
+
void update();
private:
QString m_ExecutableBlacklist;
+ QStringList m_SkipFileSuffixes;
+ QStringList m_SkipDirectories;
void on_bsaDateBtn_clicked();
void on_execBlacklistBtn_clicked();
+ void on_skipFileSuffixBtn_clicked();
+ void on_skipDirectoriesBtn_clicked();
void on_resetGeometryBtn_clicked();
};