2018-08-09 15:41:03 +02:00
|
|
|
#include "NotificationPage.hpp"
|
|
|
|
|
|
|
|
#include "Application.hpp"
|
2018-08-10 00:04:50 +02:00
|
|
|
#include "controllers/notifications/NotificationController.hpp"
|
|
|
|
#include "controllers/notifications/NotificationModel.hpp"
|
2018-08-09 15:41:03 +02:00
|
|
|
#include "singletons/Settings.hpp"
|
|
|
|
#include "util/LayoutCreator.hpp"
|
|
|
|
#include "widgets/helper/EditableModelView.hpp"
|
|
|
|
|
|
|
|
#include <QCheckBox>
|
|
|
|
#include <QGroupBox>
|
|
|
|
#include <QHeaderView>
|
|
|
|
#include <QLabel>
|
|
|
|
#include <QListView>
|
|
|
|
#include <QTableView>
|
|
|
|
#include <QTimer>
|
|
|
|
|
|
|
|
namespace chatterino {
|
|
|
|
|
|
|
|
NotificationPage::NotificationPage()
|
|
|
|
: SettingsPage("Notifications", "")
|
|
|
|
{
|
|
|
|
LayoutCreator<NotificationPage> layoutCreator(this);
|
|
|
|
|
|
|
|
auto layout = layoutCreator.emplace<QVBoxLayout>().withoutMargin();
|
|
|
|
{
|
|
|
|
auto tabs = layout.emplace<QTabWidget>();
|
|
|
|
{
|
|
|
|
auto settings = tabs.appendTab(new QVBoxLayout, "Options");
|
|
|
|
{
|
2018-08-18 13:07:12 +02:00
|
|
|
settings.emplace<QLabel>("Enable for selected channels");
|
2018-08-09 15:41:03 +02:00
|
|
|
settings.append(this->createCheckBox(
|
|
|
|
"Flash taskbar",
|
|
|
|
getApp()->settings->notificationFlashTaskbar));
|
|
|
|
settings.append(this->createCheckBox(
|
2018-08-12 20:21:21 +02:00
|
|
|
"Playsound (doesn't mute the Windows 8.x sound of toasts)",
|
|
|
|
getApp()->settings->notificationPlaySound));
|
2018-08-12 18:54:32 +02:00
|
|
|
settings.append(this->createCheckBox(
|
2018-08-12 20:21:21 +02:00
|
|
|
"Enable toasts (currently only for windows 8.x or 10)",
|
2018-08-12 18:54:32 +02:00
|
|
|
getApp()->settings->notificationToast));
|
2018-08-18 13:07:12 +02:00
|
|
|
settings.append(
|
|
|
|
this->createCheckBox("Red dot next to live splits",
|
|
|
|
getApp()->settings->notificationDot));
|
2018-08-19 19:02:49 +02:00
|
|
|
settings.append(this->createCheckBox(
|
|
|
|
"Change color of Splitheader (click to remove)",
|
|
|
|
getApp()->settings->notificationSplitheaderHighlight));
|
2018-08-09 15:41:03 +02:00
|
|
|
|
|
|
|
settings->addStretch(1);
|
|
|
|
}
|
2018-08-12 15:29:40 +02:00
|
|
|
auto twitchChannels = tabs.appendTab(new QVBoxLayout, "Twitch");
|
2018-08-09 15:41:03 +02:00
|
|
|
{
|
|
|
|
EditableModelView *view =
|
2018-08-12 15:29:40 +02:00
|
|
|
twitchChannels
|
2018-08-09 15:41:03 +02:00
|
|
|
.emplace<EditableModelView>(
|
2018-08-12 18:54:32 +02:00
|
|
|
getApp()->notifications->createModel(
|
|
|
|
nullptr, Platform::Twitch))
|
2018-08-09 15:41:03 +02:00
|
|
|
.getElement();
|
2018-08-12 15:29:40 +02:00
|
|
|
view->setTitles({"Twitch channels"});
|
2018-08-09 15:41:03 +02:00
|
|
|
|
|
|
|
view->getTableView()->horizontalHeader()->setSectionResizeMode(
|
|
|
|
QHeaderView::Fixed);
|
|
|
|
view->getTableView()->horizontalHeader()->setSectionResizeMode(
|
|
|
|
0, QHeaderView::Stretch);
|
|
|
|
|
|
|
|
QTimer::singleShot(1, [view] {
|
|
|
|
view->getTableView()->resizeColumnsToContents();
|
|
|
|
view->getTableView()->setColumnWidth(0, 200);
|
|
|
|
});
|
|
|
|
|
|
|
|
view->addButtonPressed.connect([] {
|
2018-08-12 20:21:21 +02:00
|
|
|
getApp()
|
|
|
|
->notifications->channelMap[Platform::Twitch]
|
|
|
|
.appendItem("channel");
|
2018-08-12 15:29:40 +02:00
|
|
|
});
|
|
|
|
}
|
2018-08-12 21:05:12 +02:00
|
|
|
/*
|
2018-08-12 15:29:40 +02:00
|
|
|
auto mixerChannels = tabs.appendTab(new QVBoxLayout, "Mixer");
|
|
|
|
{
|
|
|
|
EditableModelView *view =
|
|
|
|
mixerChannels
|
|
|
|
.emplace<EditableModelView>(
|
2018-08-12 18:54:32 +02:00
|
|
|
getApp()->notifications->createModel(
|
|
|
|
nullptr, Platform::Mixer))
|
2018-08-12 15:29:40 +02:00
|
|
|
.getElement();
|
|
|
|
view->setTitles({"Mixer channels"});
|
|
|
|
|
|
|
|
view->getTableView()->horizontalHeader()->setSectionResizeMode(
|
|
|
|
QHeaderView::Fixed);
|
|
|
|
view->getTableView()->horizontalHeader()->setSectionResizeMode(
|
|
|
|
0, QHeaderView::Stretch);
|
|
|
|
|
|
|
|
QTimer::singleShot(1, [view] {
|
|
|
|
view->getTableView()->resizeColumnsToContents();
|
|
|
|
view->getTableView()->setColumnWidth(0, 200);
|
|
|
|
});
|
|
|
|
|
|
|
|
view->addButtonPressed.connect([] {
|
2018-08-12 20:21:21 +02:00
|
|
|
getApp()
|
|
|
|
->notifications->channelMap[Platform::Mixer]
|
|
|
|
.appendItem("channel");
|
2018-08-09 15:41:03 +02:00
|
|
|
});
|
|
|
|
}
|
2018-08-12 21:05:12 +02:00
|
|
|
*/
|
2018-08-09 15:41:03 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} // namespace chatterino
|