summaryrefslogtreecommitdiff
path: root/src/settingsdialog.h
diff options
context:
space:
mode:
authorLostDragonist <lost.dragonist@gmail.com>2018-11-29 08:17:28 -0600
committerLostDragonist <lost.dragonist@gmail.com>2018-11-29 14:11:09 -0600
commit2212ad6f1c0bbaff7025cdb7227023661e399596 (patch)
tree800fd33340a8aed14bd11ab9605398fe9c07284c /src/settingsdialog.h
parent6142872620983a2bdd352d4e9e391ddb11c40305 (diff)
Add executable blacklisting
Diffstat (limited to 'src/settingsdialog.h')
-rw-r--r--src/settingsdialog.h13
1 files changed, 10 insertions, 3 deletions
diff --git a/src/settingsdialog.h b/src/settingsdialog.h
index 386cd24e..911f910d 100644
--- a/src/settingsdialog.h
+++ b/src/settingsdialog.h
@@ -17,8 +17,8 @@ You should have received a copy of the GNU General Public License
along with Mod Organizer. If not, see <http://www.gnu.org/licenses/>.
*/
-#ifndef WORKAROUNDDIALOG_H
-#define WORKAROUNDDIALOG_H
+#ifndef SETTINGSDIALOG_H
+#define SETTINGSDIALOG_H
#include "tutorabledialog.h"
#include <iplugin.h>
@@ -69,17 +69,22 @@ public:
QColor getOverwrittenColor() { return m_OverwrittenColor; }
QColor getContainsColor() { return m_ContainsColor; }
QColor getContainedColor() { return m_ContainedColor; }
+ QString getExecutableBlacklist() { return m_ExecutableBlacklist; }
void setOverwritingColor(QColor col) { m_OverwritingColor = col; }
void setOverwrittenColor(QColor col) { m_OverwrittenColor = col; }
void setContainsColor(QColor col) { m_ContainsColor = col; }
void setContainedColor(QColor col) { m_ContainedColor = col; }
+ void setExecutableBlacklist(QString blacklist) { m_ExecutableBlacklist = blacklist; }
+
private slots:
void on_loginCheckBox_toggled(bool checked);
void on_categoriesBtn_clicked();
+ void on_execBlacklistBtn_clicked();
+
void on_bsaDateBtn_clicked();
void on_browseDownloadDirBtn_clicked();
@@ -134,8 +139,10 @@ private:
QColor m_OverwrittenColor;
QColor m_ContainsColor;
QColor m_ContainedColor;
+
+ QString m_ExecutableBlacklist;
};
-#endif // WORKAROUNDDIALOG_H
+#endif // SETTINGSDIALOG_H