mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
106 lines
3.3 KiB
C++
106 lines
3.3 KiB
C++
#include "IgnorePage.hpp"
|
|
|
|
#include "Application.hpp"
|
|
#include "controllers/accounts/AccountController.hpp"
|
|
#include "controllers/ignores/IgnoreController.hpp"
|
|
#include "controllers/ignores/IgnoreModel.hpp"
|
|
#include "singletons/Settings.hpp"
|
|
#include "util/LayoutCreator.hpp"
|
|
#include "widgets/helper/EditableModelView.hpp"
|
|
|
|
#include <QCheckBox>
|
|
#include <QGroupBox>
|
|
#include <QHeaderView>
|
|
#include <QLabel>
|
|
#include <QListView>
|
|
#include <QPushButton>
|
|
#include <QTableView>
|
|
#include <QVBoxLayout>
|
|
|
|
// clang-format off
|
|
#define INFO "/ignore <user> in chat ignores a user\n/unignore <user> in chat unignores a user"
|
|
// clang-format on
|
|
|
|
namespace chatterino {
|
|
|
|
IgnoresPage::IgnoresPage()
|
|
: SettingsPage("Ignores", "")
|
|
{
|
|
auto app = getApp();
|
|
|
|
LayoutCreator<IgnoresPage> layoutCreator(this);
|
|
auto layout = layoutCreator.setLayoutType<QVBoxLayout>();
|
|
|
|
// auto group = layout.emplace<QGroupBox>("Ignored users").setLayoutType<QVBoxLayout>();
|
|
auto tabs = layout.emplace<QTabWidget>();
|
|
// tabs->setStyleSheet("color: #000");
|
|
|
|
// users
|
|
auto users = tabs.appendTab(new QVBoxLayout, "Users");
|
|
{
|
|
users.append(this->createCheckBox("Enable twitch ignored users",
|
|
app->settings->enableTwitchIgnoredUsers));
|
|
|
|
auto anyways = users.emplace<QHBoxLayout>().withoutMargin();
|
|
{
|
|
anyways.emplace<QLabel>("Show anyways if:");
|
|
anyways.emplace<QComboBox>();
|
|
anyways->addStretch(1);
|
|
}
|
|
|
|
auto addremove = users.emplace<QHBoxLayout>().withoutMargin();
|
|
{
|
|
auto add = addremove.emplace<QPushButton>("Ignore user");
|
|
auto remove = addremove.emplace<QPushButton>("Unignore User");
|
|
UNUSED(add); // TODO: Add on-clicked event
|
|
UNUSED(remove); // TODO: Add on-clicked event
|
|
addremove->addStretch(1);
|
|
}
|
|
|
|
users.emplace<QListView>()->setModel(&this->userListModel);
|
|
}
|
|
|
|
// messages
|
|
auto messages = tabs.appendTab(new QVBoxLayout, "Messages");
|
|
{
|
|
EditableModelView *view =
|
|
messages.emplace<EditableModelView>(app->ignores->createModel(nullptr)).getElement();
|
|
view->setTitles({"Pattern", "Regex"});
|
|
view->getTableView()->horizontalHeader()->setSectionResizeMode(QHeaderView::Fixed);
|
|
view->getTableView()->horizontalHeader()->setSectionResizeMode(0, QHeaderView::Stretch);
|
|
|
|
// fourtf: make class extrend BaseWidget and add this to dpiChanged
|
|
QTimer::singleShot(1, [view] {
|
|
view->getTableView()->resizeColumnsToContents();
|
|
view->getTableView()->setColumnWidth(0, 200);
|
|
});
|
|
|
|
view->addButtonPressed.connect([] {
|
|
getApp()->ignores->phrases.appendItem(IgnorePhrase{"my phrase", false});
|
|
});
|
|
}
|
|
|
|
auto label = layout.emplace<QLabel>(INFO);
|
|
label->setWordWrap(true);
|
|
label->setStyleSheet("color: #BBB");
|
|
}
|
|
|
|
void IgnoresPage::onShow()
|
|
{
|
|
auto app = getApp();
|
|
|
|
auto user = app->accounts->twitch.getCurrent();
|
|
|
|
if (user->isAnon()) {
|
|
return;
|
|
}
|
|
|
|
QStringList users;
|
|
for (const auto &ignoredUser : user->getIgnores()) {
|
|
users << ignoredUser.name;
|
|
}
|
|
this->userListModel.setStringList(users);
|
|
}
|
|
|
|
} // namespace chatterino
|