2018-07-03 17:39:20 +02:00
|
|
|
#include "LookPage.hpp"
|
2018-01-12 23:09:05 +01:00
|
|
|
|
2018-06-26 14:09:39 +02:00
|
|
|
#include "Application.hpp"
|
|
|
|
#include "singletons/WindowManager.hpp"
|
|
|
|
#include "util/LayoutCreator.hpp"
|
|
|
|
#include "util/RemoveScrollAreaBackground.hpp"
|
2018-07-03 16:55:02 +02:00
|
|
|
#include "widgets/helper/Line.hpp"
|
2018-04-27 22:11:19 +02:00
|
|
|
|
2018-01-12 23:09:05 +01:00
|
|
|
#include <QFontDialog>
|
|
|
|
#include <QFormLayout>
|
|
|
|
#include <QGroupBox>
|
|
|
|
#include <QLabel>
|
|
|
|
#include <QPushButton>
|
2018-04-25 20:35:32 +02:00
|
|
|
#include <QScrollArea>
|
2018-04-03 02:55:32 +02:00
|
|
|
#include <QSlider>
|
2018-01-12 23:09:05 +01:00
|
|
|
#include <QVBoxLayout>
|
|
|
|
|
|
|
|
#define THEME_ITEMS "White", "Light", "Dark", "Black"
|
|
|
|
|
2018-07-05 18:17:12 +02:00
|
|
|
#define TAB_X "Show tab close button"
|
2018-07-05 17:38:24 +02:00
|
|
|
#define TAB_PREF "Preferences button (ctrl+p to show)"
|
|
|
|
#define TAB_USER "User button"
|
2018-01-12 23:09:05 +01:00
|
|
|
|
2018-01-17 18:36:12 +01:00
|
|
|
// clang-format off
|
|
|
|
#define TIMESTAMP_FORMATS "hh:mm a", "h:mm a", "hh:mm:ss a", "h:mm:ss a", "HH:mm", "H:mm", "HH:mm:ss", "H:mm:ss"
|
|
|
|
// clang-format on
|
2018-01-12 23:09:05 +01:00
|
|
|
|
2018-07-05 18:17:12 +02:00
|
|
|
#ifdef USEWINSDK
|
|
|
|
#define WINDOW_TOPMOST "Window always on top"
|
|
|
|
#else
|
|
|
|
#define WINDOW_TOPMOST "Window always on top (requires restart)"
|
|
|
|
#endif
|
|
|
|
#define INPUT_EMPTY "Show input box when empty"
|
|
|
|
#define LAST_MSG "Mark the last message you read"
|
|
|
|
|
2018-01-12 23:09:05 +01:00
|
|
|
namespace chatterino {
|
|
|
|
|
2018-07-03 17:40:15 +02:00
|
|
|
LookPage::LookPage()
|
2018-04-25 20:35:32 +02:00
|
|
|
: SettingsPage("Look", ":/images/theme.svg")
|
2018-07-05 18:17:12 +02:00
|
|
|
{
|
|
|
|
this->initializeUi();
|
|
|
|
}
|
|
|
|
|
|
|
|
void LookPage::initializeUi()
|
2018-01-12 23:09:05 +01:00
|
|
|
{
|
2018-07-03 17:40:15 +02:00
|
|
|
LayoutCreator<LookPage> layoutCreator(this);
|
2018-04-25 20:35:32 +02:00
|
|
|
|
2018-07-05 17:38:24 +02:00
|
|
|
auto layout = layoutCreator.emplace<QVBoxLayout>().withoutMargin();
|
2018-07-03 16:55:02 +02:00
|
|
|
|
|
|
|
// settings
|
2018-07-05 17:38:24 +02:00
|
|
|
auto tabs = layout.emplace<QTabWidget>();
|
2018-04-25 20:35:32 +02:00
|
|
|
|
2018-07-05 17:38:24 +02:00
|
|
|
this->addInterfaceTab(tabs.appendTab(new QVBoxLayout, "Interface"));
|
|
|
|
this->addMessageTab(tabs.appendTab(new QVBoxLayout, "Messages"));
|
|
|
|
this->addEmoteTab(tabs.appendTab(new QVBoxLayout, "Emotes"));
|
2018-01-12 23:09:05 +01:00
|
|
|
|
2018-07-05 17:38:24 +02:00
|
|
|
layout->addStretch(1);
|
2018-07-03 16:55:02 +02:00
|
|
|
|
|
|
|
// preview
|
2018-07-05 17:38:24 +02:00
|
|
|
layout.emplace<Line>(false);
|
2018-07-03 16:55:02 +02:00
|
|
|
|
2018-07-05 17:38:24 +02:00
|
|
|
auto channelView = layout.emplace<ChannelView>();
|
2018-07-03 16:55:02 +02:00
|
|
|
auto channel = this->createPreviewChannel();
|
|
|
|
channelView->setChannel(channel);
|
2018-07-12 18:58:56 +02:00
|
|
|
channelView->setScaleIndependantHeight(74);
|
2018-07-03 16:55:02 +02:00
|
|
|
}
|
|
|
|
|
2018-07-05 17:38:24 +02:00
|
|
|
void LookPage::addInterfaceTab(LayoutCreator<QVBoxLayout> layout)
|
2018-07-03 16:55:02 +02:00
|
|
|
{
|
|
|
|
// theme
|
2018-07-05 17:38:24 +02:00
|
|
|
{
|
|
|
|
auto *theme = this->createComboBox({THEME_ITEMS}, getApp()->themes->themeName);
|
|
|
|
QObject::connect(theme, &QComboBox::currentTextChanged,
|
|
|
|
[](const QString &) { getApp()->windows->forceLayoutChannelViews(); });
|
|
|
|
|
|
|
|
auto box = layout.emplace<QHBoxLayout>().withoutMargin();
|
|
|
|
box.emplace<QLabel>("Theme: ");
|
|
|
|
box.append(theme);
|
|
|
|
box->addStretch(1);
|
|
|
|
}
|
2018-06-04 16:10:54 +02:00
|
|
|
|
2018-07-03 16:55:02 +02:00
|
|
|
// ui scale
|
2018-07-05 17:38:24 +02:00
|
|
|
{
|
|
|
|
auto box = layout.emplace<QHBoxLayout>().withoutMargin();
|
2018-07-05 18:17:12 +02:00
|
|
|
box.emplace<QLabel>("Window scale: ");
|
2018-07-05 17:38:24 +02:00
|
|
|
box.append(this->createUiScaleSlider());
|
|
|
|
}
|
2018-07-03 16:55:02 +02:00
|
|
|
|
2018-07-05 18:17:12 +02:00
|
|
|
layout.append(this->createCheckBox(WINDOW_TOPMOST, getSettings()->windowTopMost));
|
|
|
|
|
|
|
|
// --
|
|
|
|
layout.emplace<Line>(false);
|
|
|
|
|
2018-07-03 16:55:02 +02:00
|
|
|
// tab x
|
2018-07-05 17:38:24 +02:00
|
|
|
layout.append(this->createCheckBox(TAB_X, getSettings()->showTabCloseButton));
|
2018-07-03 16:55:02 +02:00
|
|
|
|
|
|
|
// show buttons
|
2018-06-04 16:10:54 +02:00
|
|
|
#ifndef USEWINSDK
|
2018-07-05 17:38:24 +02:00
|
|
|
layout.append(this->createCheckBox(TAB_PREF, getSettings()->hidePreferencesButton));
|
|
|
|
layout.append(this->createCheckBox(TAB_USER, getSettings()->hideUserButton));
|
2018-06-04 16:10:54 +02:00
|
|
|
#endif
|
|
|
|
|
2018-07-05 18:17:12 +02:00
|
|
|
// empty input
|
|
|
|
layout.append(this->createCheckBox(INPUT_EMPTY, getSettings()->showEmptyInput));
|
2018-07-05 17:38:24 +02:00
|
|
|
layout.append(
|
2018-07-05 18:17:12 +02:00
|
|
|
this->createCheckBox("Show message length while typing", getSettings()->showMessageLength));
|
2018-07-05 17:38:24 +02:00
|
|
|
|
|
|
|
layout->addStretch(1);
|
2018-07-03 16:55:02 +02:00
|
|
|
}
|
|
|
|
|
2018-07-05 17:38:24 +02:00
|
|
|
void LookPage::addMessageTab(LayoutCreator<QVBoxLayout> layout)
|
2018-07-03 16:55:02 +02:00
|
|
|
{
|
2018-07-05 17:38:24 +02:00
|
|
|
// font
|
|
|
|
layout.append(this->createFontChanger());
|
|
|
|
|
|
|
|
// --
|
|
|
|
layout.emplace<Line>(false);
|
2018-07-03 16:55:02 +02:00
|
|
|
|
|
|
|
// timestamps
|
2018-07-05 18:17:12 +02:00
|
|
|
{
|
|
|
|
auto box = layout.emplace<QHBoxLayout>().withoutMargin();
|
|
|
|
box.append(this->createCheckBox("Show timestamps", getSettings()->showTimestamps));
|
|
|
|
box.append(this->createComboBox({TIMESTAMP_FORMATS}, getSettings()->timestampFormat));
|
|
|
|
box->addStretch(1);
|
|
|
|
}
|
2018-01-12 23:09:05 +01:00
|
|
|
|
2018-07-03 16:55:02 +02:00
|
|
|
// badges
|
2018-07-05 17:38:24 +02:00
|
|
|
layout.append(this->createCheckBox("Show badges", getSettings()->showBadges));
|
|
|
|
|
|
|
|
// --
|
|
|
|
layout.emplace<Line>(false);
|
|
|
|
|
|
|
|
// seperate
|
|
|
|
layout.append(this->createCheckBox("Seperate lines", getSettings()->separateMessages));
|
|
|
|
|
|
|
|
// alternate
|
|
|
|
layout.append(
|
|
|
|
this->createCheckBox("Alternate background", getSettings()->alternateMessageBackground));
|
|
|
|
|
|
|
|
// --
|
|
|
|
layout.emplace<Line>(false);
|
|
|
|
|
|
|
|
// lowercase links
|
2018-08-06 16:40:12 +02:00
|
|
|
layout.append(this->createCheckBox("Lowercase domains", getSettings()->enableLowercaseLink));
|
2018-07-05 17:38:24 +02:00
|
|
|
// bold usernames
|
2018-07-12 18:56:54 +02:00
|
|
|
layout.append(this->createCheckBox("Bold @usernames", getSettings()->enableUsernameBold));
|
2018-07-03 16:55:02 +02:00
|
|
|
|
|
|
|
// collapsing
|
2018-01-12 23:09:05 +01:00
|
|
|
{
|
2018-07-03 16:55:02 +02:00
|
|
|
auto *combo = new QComboBox(this);
|
|
|
|
combo->addItems(
|
|
|
|
{"Never", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14", "15"});
|
|
|
|
|
2018-07-03 17:21:41 +02:00
|
|
|
const auto currentIndex = []() -> int {
|
|
|
|
auto val = getSettings()->collpseMessagesMinLines.getValue();
|
|
|
|
if (val > 0) {
|
|
|
|
--val;
|
|
|
|
}
|
|
|
|
return val;
|
|
|
|
}();
|
|
|
|
combo->setCurrentIndex(currentIndex);
|
|
|
|
|
2018-07-03 16:55:02 +02:00
|
|
|
QObject::connect(combo, &QComboBox::currentTextChanged, [](const QString &str) {
|
|
|
|
getSettings()->collpseMessagesMinLines = str.toInt();
|
|
|
|
});
|
|
|
|
|
2018-07-05 17:38:24 +02:00
|
|
|
auto hbox = layout.emplace<QHBoxLayout>().withoutMargin();
|
2018-07-03 16:55:02 +02:00
|
|
|
hbox.emplace<QLabel>("Collapse messages longer than");
|
|
|
|
hbox.append(combo);
|
|
|
|
hbox.emplace<QLabel>("lines");
|
2018-01-12 23:09:05 +01:00
|
|
|
}
|
|
|
|
|
2018-07-05 18:17:12 +02:00
|
|
|
// last read message
|
|
|
|
this->addLastReadMessageIndicatorPatternSelector(layout);
|
|
|
|
|
2018-07-05 17:38:24 +02:00
|
|
|
// --
|
|
|
|
layout->addStretch(1);
|
2018-07-03 16:55:02 +02:00
|
|
|
}
|
|
|
|
|
2018-07-05 17:38:24 +02:00
|
|
|
void LookPage::addEmoteTab(LayoutCreator<QVBoxLayout> layout)
|
2018-07-03 16:55:02 +02:00
|
|
|
{
|
|
|
|
/*
|
|
|
|
emotes.append(
|
|
|
|
this->createCheckBox("Enable Twitch emotes", app->settings->enableTwitchEmotes));
|
|
|
|
emotes.append(this->createCheckBox("Enable BetterTTV emotes for Twitch",
|
|
|
|
app->settings->enableBttvEmotes));
|
|
|
|
emotes.append(this->createCheckBox("Enable FrankerFaceZ emotes for Twitch",
|
|
|
|
app->settings->enableFfzEmotes));
|
|
|
|
emotes.append(this->createCheckBox("Enable emojis", app->settings->enableEmojis));
|
|
|
|
*/
|
2018-07-05 17:38:24 +02:00
|
|
|
layout.append(this->createCheckBox("Animations", getSettings()->enableGifAnimations));
|
2018-07-03 16:55:02 +02:00
|
|
|
|
2018-07-05 17:38:24 +02:00
|
|
|
auto scaleBox = layout.emplace<QHBoxLayout>().withoutMargin();
|
2018-01-12 23:09:05 +01:00
|
|
|
{
|
2018-07-03 16:55:02 +02:00
|
|
|
scaleBox.emplace<QLabel>("Size:");
|
|
|
|
|
|
|
|
auto emoteScale = scaleBox.emplace<QSlider>(Qt::Horizontal);
|
|
|
|
emoteScale->setMinimum(5);
|
|
|
|
emoteScale->setMaximum(50);
|
|
|
|
|
|
|
|
auto scaleLabel = scaleBox.emplace<QLabel>("1.0");
|
|
|
|
scaleLabel->setFixedWidth(100);
|
|
|
|
QObject::connect(emoteScale.getElement(), &QSlider::valueChanged,
|
|
|
|
[scaleLabel](int value) mutable {
|
|
|
|
float f = float(value) / 10.f;
|
|
|
|
scaleLabel->setText(QString::number(f));
|
|
|
|
|
|
|
|
getSettings()->emoteScale.setValue(f);
|
|
|
|
});
|
|
|
|
|
|
|
|
emoteScale->setValue(
|
|
|
|
std::max<int>(5, std::min<int>(50, int(getSettings()->emoteScale.getValue() * 10.f))));
|
|
|
|
|
|
|
|
scaleLabel->setText(QString::number(getSettings()->emoteScale.getValue()));
|
2018-04-25 20:35:32 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
{
|
2018-07-03 16:55:02 +02:00
|
|
|
auto *combo = new QComboBox(this);
|
|
|
|
combo->addItems(
|
|
|
|
{"EmojiOne 2", "EmojiOne 3", "Twitter", "Facebook", "Apple", "Google", "Messenger"});
|
|
|
|
|
|
|
|
combo->setCurrentText(getSettings()->emojiSet);
|
|
|
|
|
|
|
|
QObject::connect(combo, &QComboBox::currentTextChanged, [](const QString &str) {
|
|
|
|
getSettings()->emojiSet = str; //
|
|
|
|
});
|
|
|
|
|
2018-07-05 17:38:24 +02:00
|
|
|
auto hbox = layout.emplace<QHBoxLayout>().withoutMargin();
|
2018-07-03 16:55:02 +02:00
|
|
|
hbox.emplace<QLabel>("Emoji set:");
|
|
|
|
hbox.append(combo);
|
|
|
|
}
|
2018-07-05 17:38:24 +02:00
|
|
|
|
|
|
|
layout->addStretch(1);
|
2018-07-03 16:55:02 +02:00
|
|
|
}
|
|
|
|
|
2018-07-05 18:17:12 +02:00
|
|
|
void LookPage::addLastReadMessageIndicatorPatternSelector(LayoutCreator<QVBoxLayout> layout)
|
|
|
|
{
|
|
|
|
// combo
|
|
|
|
auto *combo = new QComboBox(this);
|
|
|
|
combo->addItems({"Dotted line", "Solid line"});
|
|
|
|
|
|
|
|
const auto currentIndex = []() -> int {
|
|
|
|
switch (getApp()->settings->lastMessagePattern.getValue()) {
|
|
|
|
case Qt::SolidLine:
|
|
|
|
return 1;
|
|
|
|
case Qt::VerPattern:
|
|
|
|
default:
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}();
|
|
|
|
combo->setCurrentIndex(currentIndex);
|
|
|
|
|
|
|
|
QObject::connect(combo, static_cast<void (QComboBox::*)(int)>(&QComboBox::currentIndexChanged),
|
|
|
|
[](int index) {
|
|
|
|
getSettings()->lastMessagePattern = [&] {
|
|
|
|
switch (index) {
|
|
|
|
case 1:
|
|
|
|
return Qt::SolidPattern;
|
|
|
|
case 0:
|
|
|
|
default:
|
|
|
|
return Qt::VerPattern;
|
|
|
|
}
|
|
|
|
}();
|
|
|
|
});
|
|
|
|
|
|
|
|
// layout
|
|
|
|
auto hbox = layout.emplace<QHBoxLayout>().withoutMargin();
|
|
|
|
hbox.append(this->createCheckBox(LAST_MSG, getSettings()->showLastMessageIndicator));
|
|
|
|
hbox.append(combo);
|
|
|
|
hbox->addStretch(1);
|
|
|
|
}
|
|
|
|
|
2018-07-03 17:40:15 +02:00
|
|
|
ChannelPtr LookPage::createPreviewChannel()
|
2018-07-03 16:55:02 +02:00
|
|
|
{
|
2018-07-06 17:30:12 +02:00
|
|
|
auto channel = ChannelPtr(new Channel("preview", Channel::Type::Misc));
|
2018-07-03 16:55:02 +02:00
|
|
|
|
|
|
|
{
|
|
|
|
auto message = MessagePtr(new Message());
|
2018-07-12 18:58:56 +02:00
|
|
|
message->addElement(new TimestampElement(QTime(8, 13, 42)));
|
2018-07-03 16:55:02 +02:00
|
|
|
message->addElement(new ImageElement(getApp()->resources->badgeModerator,
|
|
|
|
MessageElement::BadgeChannelAuthority));
|
|
|
|
message->addElement(new ImageElement(getApp()->resources->badgeSubscriber,
|
|
|
|
MessageElement::BadgeSubscription));
|
|
|
|
message->addElement(new TextElement("username1:", MessageElement::Username,
|
|
|
|
QColor("#0094FF"), FontStyle::ChatMediumBold));
|
2018-07-12 18:58:56 +02:00
|
|
|
message->addElement(new TextElement("This is a preview message", MessageElement::Text));
|
|
|
|
message->addElement(new EmoteElement(EmoteData(getApp()->resources->pajaDank),
|
|
|
|
MessageElement::Flags::AlwaysShow));
|
2018-08-06 16:40:12 +02:00
|
|
|
message->addElement(new TextElement("@fourtf", TextElement::BoldUsername,
|
|
|
|
MessageColor::Text, FontStyle::ChatMediumBold));
|
|
|
|
message->addElement(new TextElement("@fourtf", TextElement::NonBoldUsername));
|
2018-07-03 16:55:02 +02:00
|
|
|
channel->addMessage(message);
|
|
|
|
}
|
2018-04-25 20:35:32 +02:00
|
|
|
{
|
2018-07-03 16:55:02 +02:00
|
|
|
auto message = MessagePtr(new Message());
|
2018-07-12 18:58:56 +02:00
|
|
|
message->addElement(new TimestampElement(QTime(8, 15, 21)));
|
2018-07-03 16:55:02 +02:00
|
|
|
message->addElement(new ImageElement(getApp()->resources->badgePremium,
|
|
|
|
MessageElement::BadgeChannelAuthority));
|
|
|
|
message->addElement(new TextElement("username2:", MessageElement::Username,
|
|
|
|
QColor("#FF6A00"), FontStyle::ChatMediumBold));
|
2018-07-12 18:58:56 +02:00
|
|
|
message->addElement(new TextElement("This is another one", MessageElement::Text));
|
|
|
|
message->addElement(
|
|
|
|
new EmoteElement(EmoteData(getApp()->resources->ppHop), MessageElement::BttvEmote));
|
|
|
|
message->addElement(
|
2018-08-06 16:40:12 +02:00
|
|
|
(new TextElement("www.fourtf.com", MessageElement::LowercaseLink, MessageColor::Link))
|
|
|
|
->setLink(Link(Link::Url, "https://www.fourtf.com")));
|
|
|
|
message->addElement(
|
|
|
|
(new TextElement("wWw.FoUrTf.CoM", MessageElement::OriginalLink, MessageColor::Link))
|
2018-07-12 18:58:56 +02:00
|
|
|
->setLink(Link(Link::Url, "https://www.fourtf.com")));
|
2018-07-03 16:55:02 +02:00
|
|
|
channel->addMessage(message);
|
2018-01-12 23:09:05 +01:00
|
|
|
}
|
|
|
|
|
2018-07-03 16:55:02 +02:00
|
|
|
return channel;
|
2018-06-06 01:29:43 +02:00
|
|
|
}
|
2018-01-12 23:09:05 +01:00
|
|
|
|
2018-07-03 17:40:15 +02:00
|
|
|
QLayout *LookPage::createThemeColorChanger()
|
2018-01-12 23:09:05 +01:00
|
|
|
{
|
2018-04-27 22:11:19 +02:00
|
|
|
auto app = getApp();
|
2018-01-12 23:09:05 +01:00
|
|
|
QHBoxLayout *layout = new QHBoxLayout;
|
|
|
|
|
2018-04-27 22:11:19 +02:00
|
|
|
auto &themeHue = app->themes->themeHue;
|
2018-01-12 23:09:05 +01:00
|
|
|
|
|
|
|
// SLIDER
|
|
|
|
QSlider *slider = new QSlider(Qt::Horizontal);
|
|
|
|
layout->addWidget(slider);
|
2018-06-04 16:10:54 +02:00
|
|
|
slider->setValue(int(std::min(std::max(themeHue.getValue(), 0.0), 1.0) * 100));
|
2018-01-12 23:09:05 +01:00
|
|
|
|
|
|
|
// BUTTON
|
|
|
|
QPushButton *button = new QPushButton;
|
|
|
|
layout->addWidget(button);
|
|
|
|
button->setFlat(true);
|
|
|
|
button->setFixedWidth(64);
|
|
|
|
|
2018-04-27 22:11:19 +02:00
|
|
|
auto setButtonColor = [button, app](int value) mutable {
|
2018-01-23 13:34:26 +01:00
|
|
|
double newValue = value / 100.0;
|
2018-04-27 22:11:19 +02:00
|
|
|
app->themes->themeHue.setValue(newValue);
|
2018-01-12 23:09:05 +01:00
|
|
|
|
|
|
|
QPalette pal = button->palette();
|
|
|
|
QColor color;
|
|
|
|
color.setHsvF(newValue, 1.0, 1.0, 1.0);
|
|
|
|
pal.setColor(QPalette::Button, color);
|
|
|
|
button->setAutoFillBackground(true);
|
|
|
|
button->setPalette(pal);
|
|
|
|
button->update();
|
2018-02-06 00:10:30 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
// SIGNALS
|
|
|
|
QObject::connect(slider, &QSlider::valueChanged, this, setButtonColor);
|
2018-01-12 23:09:05 +01:00
|
|
|
|
2018-02-06 00:10:30 +01:00
|
|
|
setButtonColor(themeHue * 100);
|
2018-01-12 23:09:05 +01:00
|
|
|
|
|
|
|
return layout;
|
|
|
|
}
|
|
|
|
|
2018-07-03 17:40:15 +02:00
|
|
|
QLayout *LookPage::createFontChanger()
|
2018-01-12 23:09:05 +01:00
|
|
|
{
|
2018-04-28 15:20:18 +02:00
|
|
|
auto app = getApp();
|
2018-01-12 23:09:05 +01:00
|
|
|
|
2018-04-28 15:20:18 +02:00
|
|
|
QHBoxLayout *layout = new QHBoxLayout;
|
2018-07-05 17:38:24 +02:00
|
|
|
layout->setMargin(0);
|
2018-01-12 23:09:05 +01:00
|
|
|
|
|
|
|
// LABEL
|
|
|
|
QLabel *label = new QLabel();
|
|
|
|
layout->addWidget(label);
|
|
|
|
|
2018-04-28 15:20:18 +02:00
|
|
|
auto updateFontFamilyLabel = [=](auto) {
|
2018-07-05 17:38:24 +02:00
|
|
|
label->setText("Font (" + QString::fromStdString(app->fonts->chatFontFamily.getValue()) +
|
|
|
|
", " + QString::number(app->fonts->chatFontSize) + "pt)");
|
2018-01-12 23:09:05 +01:00
|
|
|
};
|
|
|
|
|
2018-07-06 19:23:47 +02:00
|
|
|
app->fonts->chatFontFamily.connectSimple(updateFontFamilyLabel, this->managedConnections_);
|
|
|
|
app->fonts->chatFontSize.connectSimple(updateFontFamilyLabel, this->managedConnections_);
|
2018-01-12 23:09:05 +01:00
|
|
|
|
|
|
|
// BUTTON
|
|
|
|
QPushButton *button = new QPushButton("Select");
|
|
|
|
layout->addWidget(button);
|
|
|
|
button->setSizePolicy(QSizePolicy::Fixed, QSizePolicy::Policy::Fixed);
|
|
|
|
|
2018-04-28 15:20:18 +02:00
|
|
|
QObject::connect(button, &QPushButton::clicked, [=]() {
|
2018-06-28 19:51:07 +02:00
|
|
|
QFontDialog dialog(app->fonts->getFont(Fonts::ChatMedium, 1.));
|
2018-01-12 23:09:05 +01:00
|
|
|
|
2018-06-25 11:25:39 +02:00
|
|
|
dialog.setWindowFlag(Qt::WindowStaysOnTopHint);
|
|
|
|
|
2018-04-28 15:20:18 +02:00
|
|
|
dialog.connect(&dialog, &QFontDialog::fontSelected, [=](const QFont &font) {
|
2018-05-23 04:22:17 +02:00
|
|
|
app->fonts->chatFontFamily = font.family().toStdString();
|
|
|
|
app->fonts->chatFontSize = font.pointSize();
|
2018-01-12 23:09:05 +01:00
|
|
|
});
|
|
|
|
|
|
|
|
dialog.show();
|
|
|
|
dialog.exec();
|
|
|
|
});
|
|
|
|
|
2018-07-05 17:38:24 +02:00
|
|
|
layout->addStretch(1);
|
|
|
|
|
2018-01-12 23:09:05 +01:00
|
|
|
return layout;
|
|
|
|
}
|
2018-04-03 02:55:32 +02:00
|
|
|
|
2018-07-03 17:40:15 +02:00
|
|
|
QLayout *LookPage::createUiScaleSlider()
|
2018-06-11 15:04:54 +02:00
|
|
|
{
|
|
|
|
auto layout = new QHBoxLayout();
|
|
|
|
auto slider = new QSlider(Qt::Horizontal);
|
|
|
|
auto label = new QLabel();
|
|
|
|
layout->addWidget(slider);
|
|
|
|
layout->addWidget(label);
|
|
|
|
|
2018-06-28 19:38:57 +02:00
|
|
|
slider->setMinimum(WindowManager::uiScaleMin);
|
|
|
|
slider->setMaximum(WindowManager::uiScaleMax);
|
2018-07-03 16:55:02 +02:00
|
|
|
slider->setValue(WindowManager::clampUiScale(getSettings()->uiScale.getValue()));
|
2018-06-11 15:04:54 +02:00
|
|
|
|
|
|
|
label->setMinimumWidth(100);
|
|
|
|
|
|
|
|
QObject::connect(slider, &QSlider::valueChanged,
|
2018-07-03 16:55:02 +02:00
|
|
|
[](auto value) { getSettings()->uiScale.setValue(value); });
|
2018-06-11 15:04:54 +02:00
|
|
|
|
2018-07-03 16:55:02 +02:00
|
|
|
getSettings()->uiScale.connect(
|
2018-07-03 17:19:49 +02:00
|
|
|
[label](auto, auto) { label->setText(QString::number(WindowManager::getUiScaleValue())); },
|
2018-06-11 15:04:54 +02:00
|
|
|
this->connections_);
|
|
|
|
|
|
|
|
return layout;
|
|
|
|
}
|
|
|
|
|
2018-01-12 23:09:05 +01:00
|
|
|
} // namespace chatterino
|