#include "widgets/window.hpp" #include "channelmanager.hpp" #include "colorscheme.hpp" #include "settingsmanager.hpp" #include "widgets/notebook.hpp" #include "widgets/settingsdialog.hpp" #include "widgets/split.hpp" #include #include #include namespace chatterino { namespace widgets { Window::Window(const QString &_windowName, ChannelManager &_channelManager, ColorScheme &_colorScheme, bool _isMainWindow) : BaseWidget(_colorScheme, nullptr) , windowName(_windowName) , windowGeometry(this->windowName.toStdString()) , channelManager(_channelManager) , colorScheme(_colorScheme) , notebook(this->channelManager, this, _isMainWindow) , dpi(this->getDpiMultiplier()) { this->initAsWindow(); QVBoxLayout *layout = new QVBoxLayout(this); // add titlebar // if (SettingsManager::getInstance().useCustomWindowFrame.get()) { // layout->addWidget(&_titleBar); // } layout->addWidget(&this->notebook); setLayout(layout); // set margin // if (SettingsManager::getInstance().useCustomWindowFrame.get()) { // layout->setMargin(1); // } else { layout->setMargin(0); // } this->refreshTheme(); this->loadGeometry(); // Initialize program-wide hotkeys { // CTRL+P: Open Settings Dialog auto shortcut = new QShortcut(QKeySequence("CTRL+P"), this); connect(shortcut, &QShortcut::activated, []() { SettingsDialog::showDialog(); // }); } } void Window::repaintVisibleChatWidgets(Channel *channel) { auto *page = this->notebook.getSelectedPage(); if (page == nullptr) { return; } const std::vector &widgets = page->getChatWidgets(); for (auto it = widgets.begin(); it != widgets.end(); ++it) { Split *widget = *it; if (channel == nullptr || channel == widget->getChannel().get()) { widget->layoutMessages(); } } } void Window::load(const boost::property_tree::ptree &tree) { this->notebook.load(tree); loaded = true; } boost::property_tree::ptree Window::save() { boost::property_tree::ptree child; child.put("type", "main"); this->notebook.save(child); return child; } void Window::loadDefaults() { this->notebook.loadDefaults(); loaded = true; } bool Window::isLoaded() const { return loaded; } Notebook &Window::getNotebook() { return this->notebook; } void Window::closeEvent(QCloseEvent *) { const QRect &geom = this->geometry(); this->windowGeometry.x = geom.x(); this->windowGeometry.y = geom.y(); this->windowGeometry.width = geom.width(); this->windowGeometry.height = geom.height(); this->closed(); } void Window::refreshTheme() { QPalette palette; palette.setColor(QPalette::Background, this->colorScheme.TabBackground); this->setPalette(palette); } void Window::loadGeometry() { if (!this->windowGeometry.x.isDefaultValue() && !this->windowGeometry.y.isDefaultValue()) { this->move(this->windowGeometry.x, this->windowGeometry.y); } if (!this->windowGeometry.width.isDefaultValue() && !this->windowGeometry.height.isDefaultValue()) { this->resize(this->windowGeometry.width, this->windowGeometry.height); } else { this->resize(1280, 800); } } } // namespace widgets } // namespace chatterino