2018-06-26 14:09:39 +02:00
|
|
|
#include "HighlightingPage.hpp"
|
2018-01-12 23:09:05 +01:00
|
|
|
|
2018-06-26 14:09:39 +02:00
|
|
|
#include "Application.hpp"
|
|
|
|
#include "controllers/highlights/HighlightController.hpp"
|
|
|
|
#include "controllers/highlights/HighlightModel.hpp"
|
|
|
|
#include "debug/Log.hpp"
|
2018-06-28 19:46:45 +02:00
|
|
|
#include "singletons/Settings.hpp"
|
2018-06-26 14:09:39 +02:00
|
|
|
#include "util/LayoutCreator.hpp"
|
|
|
|
#include "util/StandardItemHelper.hpp"
|
|
|
|
#include "widgets/helper/EditableModelView.hpp"
|
2018-04-27 22:11:19 +02:00
|
|
|
|
2018-01-13 02:00:02 +01:00
|
|
|
#include <QFileDialog>
|
2018-06-21 13:02:34 +02:00
|
|
|
#include <QHeaderView>
|
2018-01-13 02:00:02 +01:00
|
|
|
#include <QListWidget>
|
|
|
|
#include <QPushButton>
|
2018-04-26 20:58:32 +02:00
|
|
|
#include <QStandardItemModel>
|
2018-01-13 02:00:02 +01:00
|
|
|
#include <QTabWidget>
|
2018-04-25 14:49:30 +02:00
|
|
|
#include <QTableView>
|
2018-01-13 02:00:02 +01:00
|
|
|
#include <QTextEdit>
|
|
|
|
|
|
|
|
#define ENABLE_HIGHLIGHTS "Enable Highlighting"
|
|
|
|
#define HIGHLIGHT_MSG "Highlight messages containing your name"
|
|
|
|
#define PLAY_SOUND "Play sound when your name is mentioned"
|
|
|
|
#define FLASH_TASKBAR "Flash taskbar when your name is mentioned"
|
|
|
|
#define ALWAYS_PLAY "Always play highlight sound (Even if Chatterino is focused)"
|
|
|
|
|
2018-01-12 23:09:05 +01:00
|
|
|
namespace chatterino {
|
2018-04-03 02:55:32 +02:00
|
|
|
|
2018-01-12 23:09:05 +01:00
|
|
|
HighlightingPage::HighlightingPage()
|
2018-01-13 02:21:08 +01:00
|
|
|
: SettingsPage("Highlights", ":/images/notifications.svg")
|
2018-01-12 23:09:05 +01:00
|
|
|
{
|
2018-04-27 22:11:19 +02:00
|
|
|
auto app = getApp();
|
2018-06-26 17:06:17 +02:00
|
|
|
LayoutCreator<HighlightingPage> layoutCreator(this);
|
2018-01-13 02:00:02 +01:00
|
|
|
|
|
|
|
auto layout = layoutCreator.emplace<QVBoxLayout>().withoutMargin();
|
|
|
|
{
|
|
|
|
// GENERAL
|
2018-04-28 13:48:49 +02:00
|
|
|
// layout.append(this->createCheckBox(ENABLE_HIGHLIGHTS, app->settings->enableHighlights));
|
2018-01-13 02:00:02 +01:00
|
|
|
|
|
|
|
// TABS
|
|
|
|
auto tabs = layout.emplace<QTabWidget>();
|
|
|
|
{
|
|
|
|
// HIGHLIGHTS
|
|
|
|
auto highlights = tabs.appendTab(new QVBoxLayout, "Highlights");
|
|
|
|
{
|
2018-06-26 17:06:17 +02:00
|
|
|
EditableModelView *view =
|
2018-06-26 17:20:03 +02:00
|
|
|
highlights.emplace<EditableModelView>(app->highlights->createModel(nullptr))
|
2018-06-22 12:34:33 +02:00
|
|
|
.getElement();
|
2018-04-25 14:49:30 +02:00
|
|
|
|
2018-05-06 00:32:45 +02:00
|
|
|
view->setTitles({"Pattern", "Flash taskbar", "Play sound", "Regex"});
|
|
|
|
view->getTableView()->horizontalHeader()->setSectionResizeMode(QHeaderView::Fixed);
|
2018-05-07 00:47:35 +02:00
|
|
|
view->getTableView()->horizontalHeader()->setSectionResizeMode(
|
|
|
|
0, QHeaderView::Stretch);
|
2018-04-25 14:49:30 +02:00
|
|
|
|
2018-04-25 20:35:32 +02:00
|
|
|
// fourtf: make class extrend BaseWidget and add this to dpiChanged
|
|
|
|
QTimer::singleShot(1, [view] {
|
2018-05-06 00:32:45 +02:00
|
|
|
view->getTableView()->resizeColumnsToContents();
|
2018-05-06 12:52:47 +02:00
|
|
|
view->getTableView()->setColumnWidth(0, 200);
|
2018-04-25 20:35:32 +02:00
|
|
|
});
|
2018-01-13 02:00:02 +01:00
|
|
|
|
2018-05-06 00:32:45 +02:00
|
|
|
view->addButtonPressed.connect([] {
|
|
|
|
getApp()->highlights->phrases.appendItem(
|
2018-06-26 17:06:17 +02:00
|
|
|
HighlightPhrase{"my phrase", true, false, false});
|
2018-04-26 20:58:32 +02:00
|
|
|
});
|
2018-01-13 02:00:02 +01:00
|
|
|
}
|
|
|
|
auto disabledUsers = tabs.appendTab(new QVBoxLayout, "Disabled Users");
|
|
|
|
{
|
|
|
|
auto text = disabledUsers.emplace<QTextEdit>().getElement();
|
|
|
|
|
|
|
|
QObject::connect(text, &QTextEdit::textChanged, this,
|
|
|
|
[this] { this->disabledUsersChangedTimer.start(200); });
|
|
|
|
|
|
|
|
QObject::connect(
|
2018-04-27 22:11:19 +02:00
|
|
|
&this->disabledUsersChangedTimer, &QTimer::timeout, this, [text, app]() {
|
2018-01-13 02:00:02 +01:00
|
|
|
QStringList list = text->toPlainText().split("\n", QString::SkipEmptyParts);
|
|
|
|
list.removeDuplicates();
|
2018-04-27 22:11:19 +02:00
|
|
|
app->settings->highlightUserBlacklist = list.join("\n") + "\n";
|
2018-01-13 02:00:02 +01:00
|
|
|
});
|
|
|
|
|
2018-04-27 22:11:19 +02:00
|
|
|
app->settings->highlightUserBlacklist.connect([=](const QString &str, auto) {
|
2018-01-13 02:00:02 +01:00
|
|
|
text->setPlainText(str); //
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
2018-04-26 23:07:02 +02:00
|
|
|
|
|
|
|
// MISC
|
|
|
|
auto customSound = layout.emplace<QHBoxLayout>().withoutMargin();
|
|
|
|
{
|
2018-04-27 22:11:19 +02:00
|
|
|
customSound.append(
|
|
|
|
this->createCheckBox("Custom sound", app->settings->customHighlightSound));
|
2018-04-26 23:07:02 +02:00
|
|
|
auto selectFile = customSound.emplace<QPushButton>("Select custom sound file");
|
2018-04-27 22:11:19 +02:00
|
|
|
QObject::connect(selectFile.getElement(), &QPushButton::clicked, this, [this, app] {
|
|
|
|
auto fileName = QFileDialog::getOpenFileName(this, tr("Open Sound"), "",
|
|
|
|
tr("Audio Files (*.mp3 *.wav)"));
|
|
|
|
app->settings->pathHighlightSound = fileName;
|
|
|
|
});
|
2018-04-26 23:07:02 +02:00
|
|
|
}
|
|
|
|
|
2018-04-27 22:11:19 +02:00
|
|
|
layout.append(createCheckBox(ALWAYS_PLAY, app->settings->highlightAlwaysPlaySound));
|
2018-01-13 02:00:02 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// ---- misc
|
|
|
|
this->disabledUsersChangedTimer.setSingleShot(true);
|
|
|
|
}
|
|
|
|
|
2018-01-12 23:09:05 +01:00
|
|
|
} // namespace chatterino
|