#include "widgets/notebook.hpp" #include "application.hpp" #include "debug/log.hpp" #include "singletons/thememanager.hpp" #include "singletons/windowmanager.hpp" #include "widgets/helper/notebookbutton.hpp" #include "widgets/helper/notebooktab.hpp" #include "widgets/helper/shortcut.hpp" #include "widgets/settingsdialog.hpp" #include "widgets/splitcontainer.hpp" #include "widgets/window.hpp" #include #include #include #include #include #include #include #include #include #include namespace chatterino { namespace widgets { Notebook::Notebook(QWidget *parent) : BaseWidget(parent) , addButton(this) { this->addButton.setHidden(true); auto *shortcut_next = new QShortcut(QKeySequence("Ctrl+Tab"), this); QObject::connect(shortcut_next, &QShortcut::activated, [this] { this->selectNextTab(); }); auto *shortcut_prev = new QShortcut(QKeySequence("Ctrl+Shift+Tab"), this); QObject::connect(shortcut_prev, &QShortcut::activated, [this] { this->selectPreviousTab(); }); } NotebookTab *Notebook::addPage(QWidget *page, QString title, bool select) { auto *tab = new NotebookTab(this); tab->page = page; if (!title.isEmpty()) { tab->setTitle(title); tab->useDefaultTitle = false; } Item item; item.page = page; item.tab = tab; this->items.append(item); page->hide(); page->setParent(this); if (select || this->items.count() == 1) { this->select(page); } this->performLayout(); return tab; } void Notebook::removePage(QWidget *page) { for (int i = 0; i < this->items.count(); i++) { if (this->items[i].page == page) { if (this->items.count() == 1) { this->select(nullptr); } else if (i == this->items.count() - 1) { this->select(this->items[i - 1].page); } else { this->select(this->items[i + 1].page); } this->items[i].page->deleteLater(); this->items[i].tab->deleteLater(); // if (this->items.empty()) { // this->addNewPage(); // } this->items.removeAt(i); break; } } this->performLayout(); } void Notebook::removeCurrentPage() { if (this->selectedPage != nullptr) { this->removePage(this->selectedPage); } } int Notebook::indexOf(QWidget *page) const { for (int i = 0; i < this->items.count(); i++) { if (this->items[i].page == page) { return i; } } return -1; } void Notebook::select(QWidget *page) { if (page == this->selectedPage) { return; } if (page != nullptr) { page->setHidden(false); NotebookTab *tab = this->getTabFromPage(page); tab->setSelected(true); tab->raise(); } if (this->selectedPage != nullptr) { this->selectedPage->setHidden(true); NotebookTab *tab = this->getTabFromPage(selectedPage); tab->setSelected(false); // for (auto split : this->selectedPage->getSplits()) { // split->updateLastReadMessage(); // } } this->selectedPage = page; this->performLayout(); } void Notebook::selectIndex(int index) { if (index < 0 || this->items.count() <= index) { return; } this->select(this->items[index].page); } void Notebook::selectNextTab() { if (this->items.size() <= 1) { return; } int index = (this->indexOf(this->selectedPage) + 1) % this->items.count(); this->select(this->items[index].page); } void Notebook::selectPreviousTab() { if (this->items.size() <= 1) { return; } int index = this->indexOf(this->selectedPage) - 1; if (index < 0) { index += this->items.count(); } this->select(this->items[index].page); } int Notebook::getPageCount() const { return this->items.count(); } QWidget *Notebook::getPageAt(int index) const { return this->items[index].page; } int Notebook::getSelectedIndex() const { return this->indexOf(this->selectedPage); } QWidget *Notebook::getSelectedPage() const { return this->selectedPage; } QWidget *Notebook::tabAt(QPoint point, int &index, int maxWidth) { int i = 0; for (auto &item : this->items) { QRect rect = item.tab->getDesiredRect(); rect.setHeight((int)(this->getScale() * 24)); rect.setWidth(std::min(maxWidth, rect.width())); if (rect.contains(point)) { index = i; return item.page; } i++; } index = -1; return nullptr; } void Notebook::rearrangePage(QWidget *page, int index) { this->items.move(this->indexOf(page), index); this->performLayout(); } bool Notebook::getAllowUserTabManagement() const { return this->allowUserTabManagement; } void Notebook::setAllowUserTabManagement(bool value) { this->allowUserTabManagement = value; } bool Notebook::getShowAddButton() const { return this->showAddButton; } void Notebook::setShowAddButton(bool value) { this->showAddButton = value; this->addButton.setHidden(!value); } void Notebook::scaleChangedEvent(float scale) { float h = NOTEBOOK_TAB_HEIGHT * this->getScale(); // this->settingsButton.setFixedSize(h, h); // this->userButton.setFixedSize(h, h); this->addButton.setFixedSize(h, h); for (auto &i : this->items) { i.tab->updateSize(); } } void Notebook::resizeEvent(QResizeEvent *) { this->performLayout(); } void Notebook::performLayout(bool animated) { auto app = getApp(); int xStart = (int)(2 * this->getScale()); int x = xStart, y = 0; float scale = this->getScale(); // bool customFrame = this->parentWindow->hasCustomWindowFrame(); // bool customFrame = false; // if (!this->showButtons || app->settings->hidePreferencesButton || customFrame) { // this->settingsButton.hide(); // } else { // this->settingsButton.show(); // x += settingsButton.width(); // } // if (!this->showButtons || app->settings->hideUserButton || customFrame) { // this->userButton.hide(); // } else { // this->userButton.move(x, 0); // this->userButton.show(); // x += userButton.width(); // } // if (customFrame || !this->showButtons || // (app->settings->hideUserButton && app->settings->hidePreferencesButton)) { // x += (int)(scale * 2); // } int tabHeight = static_cast(NOTEBOOK_TAB_HEIGHT * scale); bool first = true; for (auto i = this->items.begin(); i != this->items.end(); i++) { // int yOffset = i->tab->isSelected() ? 0 : 1; if (!first && (i == this->items.end() && this->showAddButton ? tabHeight : 0) + x + i->tab->width() > width()) // { y += i->tab->height(); // y += 20; i->tab->moveAnimated(QPoint(xStart, y), animated); x = i->tab->width() + xStart; } else { i->tab->moveAnimated(QPoint(x, y), animated); x += i->tab->width(); } x += 1; first = false; } if (this->showAddButton) { this->addButton.move(x, y); } if (this->lineY != y + tabHeight) { this->lineY = y + tabHeight; this->update(); } y += (int)(3 * scale); for (auto &i : this->items) { i.tab->raise(); } if (this->showAddButton) { this->addButton.raise(); } if (this->selectedPage != nullptr) { this->selectedPage->move(0, y + tabHeight); this->selectedPage->resize(width(), height() - y - tabHeight); this->selectedPage->raise(); } } void Notebook::paintEvent(QPaintEvent *event) { BaseWidget::paintEvent(event); QPainter painter(this); painter.fillRect(0, this->lineY, this->width(), (int)(3 * this->getScale()), this->themeManager->tabs.bottomLine); } NotebookButton *Notebook::getAddButton() { return &this->addButton; } NotebookTab *Notebook::getTabFromPage(QWidget *page) { for (auto &it : this->items) { if (it.page == page) { return it.tab; } } return nullptr; } SplitNotebook::SplitNotebook(QWidget *parent) : Notebook(parent) { this->connect(this->getAddButton(), &NotebookButton::clicked, [this]() { QTimer::singleShot(80, this, [this] { this->addPage(true); }); }); } SplitContainer *SplitNotebook::addPage(bool select) { SplitContainer *container = new SplitContainer(this); auto *tab = Notebook::addPage(container, QString(), select); container->setTab(tab); tab->setParent(this); tab->show(); return container; } SplitContainer *SplitNotebook::getOrAddSelectedPage() { auto *selectedPage = this->getSelectedPage(); return selectedPage != nullptr ? (SplitContainer *)selectedPage : this->addPage(); } } // namespace widgets } // namespace chatterino