mirror-chatterino2/src/widgets/settingspages/GeneralPage.cpp

346 lines
12 KiB
C++
Raw Normal View History

2018-10-31 19:45:51 +01:00
#include "GeneralPage.hpp"
#include <QFontDialog>
#include <QLabel>
#include <QScrollArea>
#include "Application.hpp"
#include "singletons/Fonts.hpp"
2018-11-25 15:02:48 +01:00
#include "singletons/Paths.hpp"
2018-10-31 19:45:51 +01:00
#include "singletons/Theme.hpp"
#include "singletons/WindowManager.hpp"
#include "util/FuzzyConvert.hpp"
#include "util/Helpers.hpp"
#include "widgets/helper/Line.hpp"
#define CHROME_EXTENSION_LINK \
"https://chrome.google.com/webstore/detail/chatterino-native-host/" \
"glknmaideaikkmemifbfkhnomoknepka"
#define FIREFOX_EXTENSION_LINK \
"https://addons.mozilla.org/en-US/firefox/addon/chatterino-native-host/"
namespace chatterino {
TitleLabel *SettingsLayout::addTitle(const QString &title)
{
auto label = new TitleLabel(title + ":");
if (this->count() != 0)
this->addSpacing(16);
this->addWidget(label);
return label;
}
TitleLabel2 *SettingsLayout::addTitle2(const QString &title)
{
auto label = new TitleLabel2(title);
this->addSpacing(16);
this->addWidget(label);
return label;
}
QCheckBox *SettingsLayout::addCheckbox(const QString &text,
BoolSetting &setting)
{
auto check = new QCheckBox(text);
// update when setting changes
setting.connect(
[check](const bool &value, auto) { check->setChecked(value); },
this->managedConnections_);
// update setting on toggle
QObject::connect(check, &QCheckBox::toggled, this,
[&setting](bool state) { setting = state; });
this->addWidget(check);
return check;
}
2018-10-31 20:57:29 +01:00
ComboBox *SettingsLayout::addDropdown(const QString &text,
const QStringList &list)
2018-10-31 19:45:51 +01:00
{
auto layout = new QHBoxLayout;
2018-10-31 20:57:29 +01:00
auto combo = new ComboBox;
combo->setFocusPolicy(Qt::StrongFocus);
2018-10-31 19:45:51 +01:00
combo->addItems(list);
layout->addWidget(new QLabel(text + ":"));
layout->addStretch(1);
layout->addWidget(combo);
this->addLayout(layout);
return combo;
}
2018-10-31 20:57:29 +01:00
ComboBox *SettingsLayout::addDropdown(
2018-10-31 19:45:51 +01:00
const QString &text, const QStringList &items,
2018-10-31 21:13:01 +01:00
pajlada::Settings::Setting<QString> &setting, bool editable)
2018-10-31 19:45:51 +01:00
{
auto combo = this->addDropdown(text, items);
2018-10-31 21:13:01 +01:00
if (editable)
combo->setEditable(true);
2018-10-31 19:45:51 +01:00
// update when setting changes
setting.connect(
[combo](const QString &value, auto) { combo->setCurrentText(value); },
this->managedConnections_);
QObject::connect(combo, &QComboBox::currentTextChanged,
[&setting](const QString &newValue) {
setting = newValue;
getApp()->windows->forceLayoutChannelViews();
});
return combo;
}
DescriptionLabel *SettingsLayout::addDescription(const QString &text)
{
auto label = new DescriptionLabel(text);
label->setTextInteractionFlags(Qt::TextBrowserInteraction |
Qt::LinksAccessibleByKeyboard);
label->setOpenExternalLinks(true);
label->setWordWrap(true);
this->addWidget(label);
return label;
}
void SettingsLayout::addSeperator()
{
this->addWidget(new Line(false));
}
GeneralPage::GeneralPage()
: SettingsPage("General", ":/settings/about.svg")
{
auto y = new QVBoxLayout;
auto scroll = new QScrollArea;
scroll->setWidgetResizable(true);
y->addWidget(scroll);
auto x = new QHBoxLayout;
auto layout = new SettingsLayout;
x->addStretch(1);
x->addLayout(layout, 0);
x->addStretch(1);
auto z = new QFrame;
z->setLayout(x);
scroll->setWidget(z);
this->setLayout(y);
this->initLayout(*layout);
layout->addStretch(1);
this->initExtra();
}
void GeneralPage::initLayout(SettingsLayout &layout)
{
auto &s = *getSettings();
layout.addTitle("Appearance");
layout.addDropdown("Theme", {"White", "Light", "Dark", "Black"},
getApp()->themes->themeName);
layout.addDropdown<QString>(
2018-10-31 19:45:51 +01:00
"Font", {"Segoe UI", "Arial", "Choose..."},
getApp()->fonts->chatFontFamily, [](auto val) { return val; },
2018-10-31 19:45:51 +01:00
[this](auto args) { return this->getFont(args); });
layout.addDropdown<int>(
"Font size", {"9pt", "10pt", "12pt", "14pt", "16pt", "20pt"},
getApp()->fonts->chatFontSize,
[](auto val) { return QString::number(val) + "pt"; },
[](auto args) { return fuzzyToInt(args.value, 10); });
2018-11-25 21:14:42 +01:00
layout.addDropdown<float>(
2018-10-31 19:45:51 +01:00
"UI Scale",
{"0.5x", "0.6x", "0.7x", "0.8x", "0.9x", "Default", "1.2x", "1.4x",
"1.6x", "1.8x", "2x", "2.33x", "2.66x", "3x", "3.5x", "4x"},
2018-11-25 21:14:42 +01:00
s.uiScale,
[](auto val) {
if (val == 1)
return QString("Default");
else
return QString::number(val) + "x";
},
[](auto args) { return fuzzyToFloat(args.value, 1.f); });
2018-10-31 19:45:51 +01:00
layout.addCheckbox("Always on top", s.windowTopMost);
layout.addTitle("Interface");
layout.addDropdown<float>(
"Mouse scroll speed", {"0.5x", "0.75x", "Default", "1.5x", "2x"},
s.mouseScrollMultiplier,
[](auto val) {
if (val == 1)
return QString("Default");
else
return QString::number(val) + "x";
},
[](auto args) { return fuzzyToFloat(args.value, 1.f); });
layout.addCheckbox("Smooth scrolling", s.enableSmoothScrolling);
layout.addCheckbox("Smooth scrolling on new messages.",
s.enableSmoothScrollingNewMessages);
layout.addCheckbox("Pause chat while hovering", s.pauseChatOnHover);
layout.addCheckbox("Show tab close button", s.showTabCloseButton);
layout.addCheckbox("Show input when empty", s.showEmptyInput);
layout.addCheckbox("Show input message length", s.showMessageLength);
layout.addCheckbox("Hide preferences button (ctrl+p to show)",
2019-03-24 01:04:25 +01:00
s.hidePreferencesButton);
2019-03-24 00:54:56 +01:00
layout.addCheckbox("Hide user button", s.hideUserButton);
2018-10-31 19:45:51 +01:00
layout.addTitle("Messages");
layout.addCheckbox("Timestamps", s.showTimestamps);
layout.addDropdown("Timestamp format",
2018-10-31 21:13:01 +01:00
{"h:mm", "hh:mm", "h:mm a", "hh:mm a"},
s.timestampFormat, true);
2018-10-31 19:45:51 +01:00
layout.addDropdown<int>(
"Collapse messages",
{"Never", "After 2 lines", "After 3 lines", "After 4 lines",
"After 5 lines"},
2018-10-31 19:45:51 +01:00
s.collpseMessagesMinLines,
[](auto val) {
return val ? QString("After ") + QString::number(val) + " lines"
: QString("Never");
},
[](auto args) { return fuzzyToInt(args.value, 0); });
layout.addCheckbox("Seperate with lines", s.separateMessages);
layout.addCheckbox("Alternate background color", s.alternateMessages);
// layout.addCheckbox("Mark last message you read");
// layout.addDropdown("Last read message style", {"Default"});
layout.addCheckbox("Hide moderated messages", s.hideModerated);
2018-10-31 19:45:51 +01:00
layout.addTitle("Emotes");
layout.addDropdown<float>(
2018-10-31 20:57:29 +01:00
"Emote size", {"0.5x", "0.75x", "Default", "1.25x", "1.5x", "2x"},
2018-10-31 19:45:51 +01:00
s.emoteScale,
[](auto val) {
if (val == 1)
return QString("Default");
else
return QString::number(val) + "x";
},
[](auto args) { return fuzzyToFloat(args.value, 1.f); });
layout.addCheckbox("Gif animations", s.animateEmotes);
layout.addCheckbox("Animate only when focused", s.animationsWhenFocused);
layout.addDropdown("Emoji set",
{"EmojiOne 2", "EmojiOne 3", "Twitter", "Facebook",
"Apple", "Google", "Messenger"},
s.emojiSet);
2018-10-31 19:45:51 +01:00
layout.addTitle("Badges");
2019-01-23 17:52:53 +01:00
layout.addCheckbox("Show authority badges (staff, admin)",
2018-10-31 19:45:51 +01:00
getSettings()->showBadgesGlobalAuthority);
layout.addCheckbox("Show channel badges (broadcaster, moderator)",
getSettings()->showBadgesChannelAuthority);
layout.addCheckbox("Show subscriber badges ",
getSettings()->showBadgesSubscription);
layout.addCheckbox("Show vanity badges (prime, bits, subgifter)",
getSettings()->showBadgesVanity);
layout.addCheckbox("Show chatterino badges",
getSettings()->showBadgesChatterino);
layout.addTitle("Header");
layout.addCheckbox("Show stream uptime", s.headerUptime);
layout.addCheckbox("Show stream viewer count", s.headerViewerCount);
layout.addCheckbox("Show stream category", s.headerGame);
layout.addCheckbox("Show stream title", s.headerStreamTitle);
layout.addTitle("Miscellaneous");
layout.addCheckbox("Show joined users (< 1000 chatters)", s.showJoins);
layout.addCheckbox("Show parted users (< 1000 chatters)", s.showParts);
layout.addDropdown("Boldness", {"Not implemented"});
layout.addCheckbox("Lowercase domains", s.lowercaseDomains);
layout.addCheckbox("Bold @usernames", s.boldUsernames);
layout.addCheckbox("Show link info when hovering", s.linkInfoTooltip);
layout.addCheckbox("Double click links to open", s.linksDoubleClickOnly);
layout.addCheckbox("Unshorten links", s.unshortLinks);
layout.addCheckbox("Show live indicator in tabs", s.showTabLive);
layout.addSpacing(16);
layout.addSeperator();
2018-10-31 21:23:19 +01:00
layout.addTitle2("Misc");
layout.addCheckbox("Show twitch whispers inline", s.inlineWhispers);
2018-10-31 19:45:51 +01:00
/*
layout.addTitle2("Cache");
layout.addDescription("Chatterino saves files on disk to speed up loading "
"times and reduce network usage.");
this->cachePath = layout.addDescription("%cachePath%");
layout.addDropdown("Cache directory", {"Automatic"});
*/
layout.addTitle2("Browser Integration");
layout.addDescription("The browser extension replaces the default "
"Twitch.tv chat with chatterino.");
layout.addDescription(
createNamedLink(CHROME_EXTENSION_LINK, "Download for Google Chrome"));
layout.addDescription(
createNamedLink(FIREFOX_EXTENSION_LINK, "Download for Firefox"));
/*
layout.addTitle2("Streamlink");
layout.addDescription("Streamlinks allows you to watch streams with "
"desktop media players like VLC.");
layout.addDescription(
createNamedLink("https://streamlink.github.io/", "Website") + " " +
createNamedLink("https://github.com/streamlink/streamlink/"
"releases/latest",
"Download"));
layout.addDropdown("Executable path", {"Automatic"});
layout.addDropdown("Preferred quality", {"Choose", "Source", "High",
"Medium", "Low", "Audio only"});
layout.addDropdown("Command line arguments", {"..."});
*/
} // namespace chatterino
2018-10-31 19:45:51 +01:00
void GeneralPage::initExtra()
{
/// update cache path
if (this->cachePath)
{
getSettings()->cachePath.connect(
[cachePath = this->cachePath](const auto &, auto) mutable {
QString newPath = getPaths()->cacheDirectory();
QString pathShortened = "Current location: <a href=\"file:///" +
newPath + "\">" +
shortenString(newPath, 50) + "</a>";
cachePath->setText(pathShortened);
cachePath->setToolTip(newPath);
});
}
}
QString GeneralPage::getFont(const DropdownArgs &args) const
2018-10-31 19:45:51 +01:00
{
if (args.combobox->currentIndex() == args.combobox->count() - 1)
{
args.combobox->setCurrentIndex(0);
args.combobox->setEditText("Choosing...");
QFontDialog dialog(getApp()->fonts->getFont(FontStyle::ChatMedium, 1.));
dialog.setWindowFlag(Qt::WindowStaysOnTopHint);
auto ok = bool();
auto font = dialog.getFont(&ok);
if (ok)
return font.family();
2018-10-31 19:45:51 +01:00
else
return args.combobox->itemText(0);
2018-10-31 19:45:51 +01:00
}
return args.value;
2018-10-31 19:45:51 +01:00
}
} // namespace chatterino