mirror-chatterino2/src/widgets/Notebook.cpp

721 lines
17 KiB
C++
Raw Normal View History

2018-06-26 14:09:39 +02:00
#include "widgets/Notebook.hpp"
2018-06-26 14:09:39 +02:00
#include "Application.hpp"
#include "common/QLogging.hpp"
#include "singletons/Settings.hpp"
2018-06-28 20:03:04 +02:00
#include "singletons/Theme.hpp"
2018-06-26 14:09:39 +02:00
#include "singletons/WindowManager.hpp"
#include "util/InitUpdateButton.hpp"
#include "util/Shortcut.hpp"
2018-06-26 17:20:03 +02:00
#include "widgets/Window.hpp"
#include "widgets/dialogs/SettingsDialog.hpp"
2018-06-26 14:09:39 +02:00
#include "widgets/helper/NotebookButton.hpp"
#include "widgets/helper/NotebookTab.hpp"
#include "widgets/splits/Split.hpp"
#include "widgets/splits/SplitContainer.hpp"
2016-12-29 17:31:07 +01:00
#include <QDebug>
#include <QFile>
2017-01-18 04:52:47 +01:00
#include <QFormLayout>
#include <QLayout>
#include <QList>
2017-05-29 21:26:55 +02:00
#include <QShortcut>
#include <QStandardPaths>
#include <QUuid>
2017-01-18 04:52:47 +01:00
#include <QWidget>
#include <boost/foreach.hpp>
2017-01-18 04:52:47 +01:00
2017-04-14 17:52:22 +02:00
namespace chatterino {
2017-01-18 21:30:23 +01:00
2018-05-23 11:59:37 +02:00
Notebook::Notebook(QWidget *parent)
: BaseWidget(parent)
, addButton_(new NotebookButton(this))
2018-04-18 09:12:29 +02:00
{
this->addButton_->setIcon(NotebookButton::Icon::Plus);
2018-08-02 14:23:27 +02:00
this->addButton_->setHidden(true);
2018-04-18 09:12:29 +02:00
}
2018-05-23 11:59:37 +02:00
NotebookTab *Notebook::addPage(QWidget *page, QString title, bool select)
2018-04-18 09:12:29 +02:00
{
// Queue up save because: Tab added
getApp()->windows->queueSave();
2018-05-23 11:59:37 +02:00
auto *tab = new NotebookTab(this);
2018-04-18 09:12:29 +02:00
tab->page = page;
2018-06-01 16:01:49 +02:00
tab->setCustomTitle(title);
2018-04-18 09:12:29 +02:00
Item item;
item.page = page;
item.tab = tab;
2018-07-06 19:23:47 +02:00
this->items_.append(item);
2018-04-18 09:12:29 +02:00
page->hide();
page->setParent(this);
2018-10-21 13:43:02 +02:00
if (select || this->items_.count() == 1)
{
2018-04-18 09:12:29 +02:00
this->select(page);
}
this->performLayout();
2018-06-04 12:54:09 +02:00
tab->show();
2018-04-18 09:12:29 +02:00
return tab;
}
2018-05-23 11:59:37 +02:00
void Notebook::removePage(QWidget *page)
2018-04-18 09:12:29 +02:00
{
// Queue up save because: Tab removed
getApp()->windows->queueSave();
2018-10-21 13:43:02 +02:00
for (int i = 0; i < this->items_.count(); i++)
{
if (this->items_[i].page == page)
{
if (this->items_.count() == 1)
{
2018-04-18 09:12:29 +02:00
this->select(nullptr);
2018-10-21 13:43:02 +02:00
}
else if (i == this->items_.count() - 1)
{
2018-07-06 19:23:47 +02:00
this->select(this->items_[i - 1].page);
2018-10-21 13:43:02 +02:00
}
else
{
2018-07-06 19:23:47 +02:00
this->select(this->items_[i + 1].page);
2018-04-18 09:12:29 +02:00
}
2018-07-06 19:23:47 +02:00
this->items_[i].page->deleteLater();
this->items_[i].tab->deleteLater();
2018-04-18 09:12:29 +02:00
// if (this->items.empty()) {
// this->addNewPage();
// }
2018-07-06 19:23:47 +02:00
this->items_.removeAt(i);
2018-04-18 09:12:29 +02:00
break;
}
}
2018-05-23 04:22:17 +02:00
this->performLayout(true);
2018-04-18 09:12:29 +02:00
}
2018-05-23 11:59:37 +02:00
void Notebook::removeCurrentPage()
2018-04-18 09:12:29 +02:00
{
2018-10-21 13:43:02 +02:00
if (this->selectedPage_ != nullptr)
{
2018-07-06 19:23:47 +02:00
this->removePage(this->selectedPage_);
2018-04-18 09:12:29 +02:00
}
}
2018-05-23 11:59:37 +02:00
int Notebook::indexOf(QWidget *page) const
2018-04-18 09:12:29 +02:00
{
2018-10-21 13:43:02 +02:00
for (int i = 0; i < this->items_.count(); i++)
{
if (this->items_[i].page == page)
{
2018-04-18 09:12:29 +02:00
return i;
}
}
return -1;
}
2018-05-23 11:59:37 +02:00
void Notebook::select(QWidget *page)
2018-04-18 09:12:29 +02:00
{
2018-10-21 13:43:02 +02:00
if (page == this->selectedPage_)
{
2018-04-18 09:12:29 +02:00
return;
}
2018-10-21 13:43:02 +02:00
if (page != nullptr)
{
2018-04-18 09:12:29 +02:00
page->setHidden(false);
2018-05-31 16:02:20 +02:00
assert(this->containsPage(page));
Item &item = this->findItem(page);
item.tab->setSelected(true);
item.tab->raise();
2018-10-21 13:43:02 +02:00
if (item.selectedWidget == nullptr)
{
2018-05-31 16:02:20 +02:00
item.page->setFocus();
2018-10-21 13:43:02 +02:00
}
else
{
if (containsChild(page, item.selectedWidget))
{
2018-05-31 16:02:20 +02:00
item.selectedWidget->setFocus(Qt::MouseFocusReason);
2018-10-21 13:43:02 +02:00
}
else
{
qCDebug(chatterinoWidget)
2018-08-06 21:17:03 +02:00
<< "Notebook: selected child of page doesn't exist anymore";
2018-05-31 16:02:20 +02:00
}
}
2018-04-18 09:12:29 +02:00
}
2018-10-21 13:43:02 +02:00
if (this->selectedPage_ != nullptr)
{
2018-07-06 19:23:47 +02:00
this->selectedPage_->setHidden(true);
2018-04-18 09:12:29 +02:00
2018-07-06 19:23:47 +02:00
Item &item = this->findItem(selectedPage_);
2018-05-31 16:02:20 +02:00
item.tab->setSelected(false);
2018-04-18 09:12:29 +02:00
// for (auto split : this->selectedPage->getSplits()) {
// split->updateLastReadMessage();
// }
2018-05-31 16:02:20 +02:00
2018-07-06 19:23:47 +02:00
item.selectedWidget = this->selectedPage_->focusWidget();
2018-04-18 09:12:29 +02:00
}
2018-07-06 19:23:47 +02:00
this->selectedPage_ = page;
2018-04-18 09:12:29 +02:00
this->performLayout();
}
2018-05-31 16:02:20 +02:00
bool Notebook::containsPage(QWidget *page)
{
2018-07-06 19:23:47 +02:00
return std::any_of(this->items_.begin(), this->items_.end(),
[page](const auto &item) {
return item.page == page;
});
2018-05-31 16:02:20 +02:00
}
Notebook::Item &Notebook::findItem(QWidget *page)
{
auto it = std::find_if(this->items_.begin(), this->items_.end(),
[page](const auto &item) {
return page == item.page;
});
2018-07-06 19:23:47 +02:00
assert(it != this->items_.end());
2018-05-31 16:02:20 +02:00
return *it;
}
bool Notebook::containsChild(const QObject *obj, const QObject *child)
{
2018-08-06 21:17:03 +02:00
return std::any_of(obj->children().begin(), obj->children().end(),
[child](const QObject *o) {
2018-10-21 13:43:02 +02:00
if (o == child)
{
2018-08-06 21:17:03 +02:00
return true;
}
2018-05-31 16:02:20 +02:00
2018-08-06 21:17:03 +02:00
return containsChild(o, child);
});
2018-05-31 16:02:20 +02:00
}
2018-05-23 11:59:37 +02:00
void Notebook::selectIndex(int index)
2018-04-18 09:12:29 +02:00
{
2018-10-21 13:43:02 +02:00
if (index < 0 || this->items_.count() <= index)
{
2018-04-18 09:12:29 +02:00
return;
}
2018-07-06 19:23:47 +02:00
this->select(this->items_[index].page);
2018-04-18 09:12:29 +02:00
}
2018-05-23 11:59:37 +02:00
void Notebook::selectNextTab()
2018-04-18 09:12:29 +02:00
{
2018-10-21 13:43:02 +02:00
if (this->items_.size() <= 1)
{
2018-04-18 09:12:29 +02:00
return;
}
2018-10-21 12:13:09 +02:00
auto index =
(this->indexOf(this->selectedPage_) + 1) % this->items_.count();
2018-04-18 09:12:29 +02:00
2018-07-06 19:23:47 +02:00
this->select(this->items_[index].page);
2018-04-18 09:12:29 +02:00
}
2018-05-23 11:59:37 +02:00
void Notebook::selectPreviousTab()
2018-04-18 09:12:29 +02:00
{
2018-10-21 13:43:02 +02:00
if (this->items_.size() <= 1)
{
2018-04-18 09:12:29 +02:00
return;
}
2018-07-06 19:23:47 +02:00
int index = this->indexOf(this->selectedPage_) - 1;
2018-04-18 09:12:29 +02:00
2018-10-21 13:43:02 +02:00
if (index < 0)
{
2018-07-06 19:23:47 +02:00
index += this->items_.count();
2018-04-18 09:12:29 +02:00
}
2018-07-06 19:23:47 +02:00
this->select(this->items_[index].page);
2018-04-18 09:12:29 +02:00
}
void Notebook::selectLastTab()
{
const auto size = this->items_.size();
if (size <= 1)
{
return;
}
this->select(this->items_[size - 1].page);
}
2018-05-23 11:59:37 +02:00
int Notebook::getPageCount() const
2018-04-18 09:12:29 +02:00
{
2018-07-06 19:23:47 +02:00
return this->items_.count();
2018-04-18 09:12:29 +02:00
}
2018-05-23 11:59:37 +02:00
QWidget *Notebook::getPageAt(int index) const
2018-05-23 04:22:17 +02:00
{
2018-07-06 19:23:47 +02:00
return this->items_[index].page;
2018-05-23 04:22:17 +02:00
}
2018-05-23 11:59:37 +02:00
int Notebook::getSelectedIndex() const
2018-04-18 09:12:29 +02:00
{
2018-07-06 19:23:47 +02:00
return this->indexOf(this->selectedPage_);
2018-04-18 09:12:29 +02:00
}
2018-05-23 11:59:37 +02:00
QWidget *Notebook::getSelectedPage() const
2018-04-18 09:12:29 +02:00
{
2018-07-06 19:23:47 +02:00
return this->selectedPage_;
2018-04-18 09:12:29 +02:00
}
2018-05-23 11:59:37 +02:00
QWidget *Notebook::tabAt(QPoint point, int &index, int maxWidth)
2018-04-18 09:12:29 +02:00
{
2018-10-21 12:13:09 +02:00
auto i = 0;
2018-04-18 09:12:29 +02:00
2018-10-21 13:43:02 +02:00
for (auto &item : this->items_)
{
2018-10-21 12:13:09 +02:00
auto rect = item.tab->getDesiredRect();
2018-11-21 21:37:41 +01:00
rect.setHeight(int(this->scale() * 24));
2018-04-18 09:12:29 +02:00
rect.setWidth(std::min(maxWidth, rect.width()));
2018-10-21 13:43:02 +02:00
if (rect.contains(point))
{
2018-04-18 09:12:29 +02:00
index = i;
return item.page;
}
i++;
}
index = -1;
return nullptr;
}
2018-05-23 11:59:37 +02:00
void Notebook::rearrangePage(QWidget *page, int index)
2018-04-18 09:12:29 +02:00
{
// Queue up save because: Tab rearranged
getApp()->windows->queueSave();
2018-07-06 19:23:47 +02:00
this->items_.move(this->indexOf(page), index);
2018-04-18 09:12:29 +02:00
this->performLayout(true);
2018-04-18 09:12:29 +02:00
}
2018-05-23 11:59:37 +02:00
bool Notebook::getAllowUserTabManagement() const
2018-04-18 09:12:29 +02:00
{
2018-07-06 19:23:47 +02:00
return this->allowUserTabManagement_;
2018-04-18 09:12:29 +02:00
}
2018-05-23 11:59:37 +02:00
void Notebook::setAllowUserTabManagement(bool value)
2018-04-18 09:12:29 +02:00
{
2018-07-06 19:23:47 +02:00
this->allowUserTabManagement_ = value;
2018-04-18 09:12:29 +02:00
}
2018-05-23 11:59:37 +02:00
bool Notebook::getShowAddButton() const
2018-04-18 09:12:29 +02:00
{
2018-07-06 19:23:47 +02:00
return this->showAddButton_;
2018-04-18 09:12:29 +02:00
}
2018-05-23 11:59:37 +02:00
void Notebook::setShowAddButton(bool value)
2018-04-18 09:12:29 +02:00
{
2018-07-06 19:23:47 +02:00
this->showAddButton_ = value;
2018-04-18 09:12:29 +02:00
this->addButton_->setHidden(!value);
2018-04-18 09:12:29 +02:00
}
2018-05-23 11:59:37 +02:00
void Notebook::scaleChangedEvent(float scale)
2018-04-18 09:12:29 +02:00
{
2018-11-21 21:37:41 +01:00
float h = (NOTEBOOK_TAB_HEIGHT - 1) * this->scale();
2018-04-18 09:12:29 +02:00
this->addButton_->setFixedSize(h, h);
2018-04-18 09:12:29 +02:00
2018-10-21 13:43:02 +02:00
for (auto &i : this->items_)
{
2018-04-18 09:12:29 +02:00
i.tab->updateSize();
}
}
2018-05-23 11:59:37 +02:00
void Notebook::resizeEvent(QResizeEvent *)
2018-04-18 09:12:29 +02:00
{
this->performLayout();
}
2018-05-23 11:59:37 +02:00
void Notebook::performLayout(bool animated)
2018-04-18 09:12:29 +02:00
{
2018-11-21 21:37:41 +01:00
const auto left = int(2 * this->scale());
const auto scale = this->scale();
2018-10-21 12:13:09 +02:00
const auto tabHeight = int(NOTEBOOK_TAB_HEIGHT * scale);
const auto addButtonWidth = this->showAddButton_ ? tabHeight : 0;
2018-04-18 09:12:29 +02:00
if (this->tabDirection_ == NotebookTabDirection::Horizontal)
2018-10-21 13:43:02 +02:00
{
auto x = left;
auto y = 0;
// set size of custom buttons (settings, user, ...)
for (auto *btn : this->customButtons_)
2018-10-21 13:43:02 +02:00
{
if (!btn->isVisible())
{
continue;
}
btn->setFixedSize(tabHeight, tabHeight - 1);
btn->move(x, 0);
x += tabHeight;
}
// layout tabs
/// Notebook tabs need to know if they are in the last row.
auto firstInBottomRow =
this->items_.size() ? &this->items_.front() : nullptr;
for (auto &item : this->items_)
{
/// Break line if element doesn't fit.
auto isFirst = &item == &this->items_.front();
auto isLast = &item == &this->items_.back();
2018-10-21 12:13:09 +02:00
auto fitsInLine = ((isLast ? addButtonWidth : 0) + x +
item.tab->width()) <= width();
2018-04-18 09:12:29 +02:00
if (!isFirst && !fitsInLine)
{
y += item.tab->height();
x = left;
firstInBottomRow = &item;
}
/// Layout tab
item.tab->growWidth(0);
item.tab->moveAnimated(QPoint(x, y), animated);
x += item.tab->width() + std::max<int>(1, int(scale * 1));
}
/// Update which tabs are in the last row
auto inLastRow = false;
for (const auto &item : this->items_)
2018-10-21 13:43:02 +02:00
{
if (&item == firstInBottomRow)
{
inLastRow = true;
}
item.tab->setInLastRow(inLastRow);
2018-04-18 09:12:29 +02:00
}
// move misc buttons
if (this->showAddButton_)
{
this->addButton_->move(x, y);
}
2018-04-18 09:12:29 +02:00
if (this->lineOffset_ != y + tabHeight)
2018-10-21 13:43:02 +02:00
{
this->lineOffset_ = y + tabHeight;
this->update();
2018-10-21 12:13:09 +02:00
}
2018-04-18 09:12:29 +02:00
/// Increment for the line at the bottom
y += int(2 * scale);
2018-04-18 09:12:29 +02:00
// raise elements
for (auto &i : this->items_)
{
i.tab->raise();
}
2018-04-18 09:12:29 +02:00
if (this->showAddButton_)
{
this->addButton_->raise();
}
2018-04-18 09:12:29 +02:00
// set page bounds
if (this->selectedPage_ != nullptr)
{
this->selectedPage_->move(0, y + tabHeight);
this->selectedPage_->resize(width(), height() - y - tabHeight);
this->selectedPage_->raise();
}
2018-04-18 09:12:29 +02:00
}
else
2018-10-21 13:43:02 +02:00
{
const int lineThickness = int(2 * scale);
auto x = left;
auto y = 0;
// set size of custom buttons (settings, user, ...)
for (auto *btn : this->customButtons_)
{
if (!btn->isVisible())
{
continue;
}
btn->setFixedSize(tabHeight, tabHeight - 1);
btn->move(x, y);
x += tabHeight;
}
if (this->customButtons_.size() > 0)
y = tabHeight;
int buttonWidth = x;
int top = y;
x = left;
int verticalRowSpace = (this->height() - top) / tabHeight;
if (verticalRowSpace == 0) // window hasn't properly rendered yet
return;
int count = this->items_.size() + (this->showAddButton_ ? 1 : 0);
int columnCount = ceil((float)count / verticalRowSpace);
for (int col = 0; col < columnCount; col++)
{
auto largestWidth = 0;
int colStart = col * verticalRowSpace;
int colEnd =
std::min((col + 1) * verticalRowSpace, this->items_.size());
for (int i = colStart; i < colEnd; i++)
{
largestWidth = std::max(
this->items_.at(i).tab->normalTabWidth(), largestWidth);
}
if (col == columnCount - 1 && this->showAddButton_ &&
largestWidth == 0)
{
largestWidth = this->addButton_->width();
}
if (largestWidth + x < buttonWidth && col == columnCount - 1)
largestWidth = buttonWidth - x;
for (int i = colStart; i < colEnd; i++)
{
auto item = this->items_.at(i);
/// Layout tab
item.tab->growWidth(largestWidth);
item.tab->moveAnimated(QPoint(x, y), animated);
y += tabHeight;
}
if (col == columnCount - 1 && this->showAddButton_)
{
this->addButton_->move(x, y);
}
x += largestWidth + lineThickness;
y = top;
}
x = std::max(x, buttonWidth);
if (this->lineOffset_ != x - lineThickness)
{
this->lineOffset_ = x - lineThickness;
this->update();
}
// raise elements
for (auto &i : this->items_)
{
i.tab->raise();
}
if (this->showAddButton_)
{
this->addButton_->raise();
}
// set page bounds
if (this->selectedPage_ != nullptr)
{
this->selectedPage_->move(x, 0);
this->selectedPage_->resize(width() - x, height());
this->selectedPage_->raise();
}
2018-04-18 09:12:29 +02:00
}
}
2018-04-18 09:12:29 +02:00
void Notebook::setTabDirection(NotebookTabDirection direction)
{
if (direction != this->tabDirection_)
2018-10-21 13:43:02 +02:00
{
this->tabDirection_ = direction;
this->performLayout();
2018-04-18 09:12:29 +02:00
}
}
2018-05-23 11:59:37 +02:00
void Notebook::paintEvent(QPaintEvent *event)
2018-04-18 09:12:29 +02:00
{
BaseWidget::paintEvent(event);
auto scale = this->scale();
2018-04-18 09:12:29 +02:00
QPainter painter(this);
if (this->tabDirection_ == NotebookTabDirection::Horizontal)
{
/// horizontal line
painter.fillRect(0, this->lineOffset_, this->width(), int(2 * scale),
this->theme->tabs.dividerLine);
}
else
{
if (this->customButtons_.size() > 0)
{
painter.fillRect(0, int(NOTEBOOK_TAB_HEIGHT * scale),
this->lineOffset_, int(2 * scale),
this->theme->tabs.dividerLine);
}
/// vertical line
painter.fillRect(this->lineOffset_, 0, int(2 * scale), this->height(),
this->theme->tabs.dividerLine);
}
2018-04-18 09:12:29 +02:00
}
2018-05-23 11:59:37 +02:00
NotebookButton *Notebook::getAddButton()
2018-05-23 04:22:17 +02:00
{
return this->addButton_;
2018-05-23 04:22:17 +02:00
}
NotebookButton *Notebook::addCustomButton()
{
NotebookButton *btn = new NotebookButton(this);
2018-07-06 19:23:47 +02:00
this->customButtons_.push_back(btn);
this->performLayout();
return btn;
}
2018-05-23 11:59:37 +02:00
NotebookTab *Notebook::getTabFromPage(QWidget *page)
2018-04-18 09:12:29 +02:00
{
2018-10-21 13:43:02 +02:00
for (auto &it : this->items_)
{
if (it.page == page)
{
2018-04-18 09:12:29 +02:00
return it.tab;
}
}
return nullptr;
}
SplitNotebook::SplitNotebook(Window *parent)
2018-05-23 11:59:37 +02:00
: Notebook(parent)
2016-12-29 17:31:07 +01:00
{
this->connect(this->getAddButton(), &NotebookButton::leftClicked, [this]() {
QTimer::singleShot(80, this, [this] {
this->addPage(true);
});
2018-08-06 21:17:03 +02:00
});
2018-10-21 12:13:09 +02:00
// add custom buttons if they are not in the parent window frame
2018-10-21 13:43:02 +02:00
if (!parent->hasCustomWindowFrame())
{
this->addCustomButtons();
}
2017-01-01 18:43:52 +01:00
}
2020-09-26 01:52:39 +02:00
void SplitNotebook::showEvent(QShowEvent *)
{
if (auto page = this->getSelectedPage())
{
if (auto split = page->findChild<Split *>())
{
split->giveFocus(Qt::OtherFocusReason);
}
}
}
void SplitNotebook::addCustomButtons()
{
// settings
auto settingsBtn = this->addCustomButton();
2018-08-15 22:46:20 +02:00
settingsBtn->setVisible(!getSettings()->hidePreferencesButton.getValue());
getSettings()->hidePreferencesButton.connect(
[settingsBtn](bool hide, auto) {
settingsBtn->setVisible(!hide);
},
2018-08-06 21:17:03 +02:00
this->connections_);
settingsBtn->setIcon(NotebookButton::Settings);
QObject::connect(settingsBtn, &NotebookButton::leftClicked, [this] {
getApp()->windows->showSettingsDialog(this);
});
// account
auto userBtn = this->addCustomButton();
userBtn->setVisible(!getSettings()->hideUserButton.getValue());
getSettings()->hideUserButton.connect(
[userBtn](bool hide, auto) {
userBtn->setVisible(!hide);
},
2018-08-06 21:17:03 +02:00
this->connections_);
userBtn->setIcon(NotebookButton::User);
QObject::connect(userBtn, &NotebookButton::leftClicked, [this, userBtn] {
2018-08-06 21:17:03 +02:00
getApp()->windows->showAccountSelectPopup(
this->mapToGlobal(userBtn->rect().bottomRight()));
});
// updates
auto updateBtn = this->addCustomButton();
initUpdateButton(*updateBtn, this->signalHolder_);
}
2018-05-23 04:22:17 +02:00
SplitContainer *SplitNotebook::addPage(bool select)
{
2018-10-21 12:13:09 +02:00
auto container = new SplitContainer(this);
auto tab = Notebook::addPage(container, QString(), select);
2018-05-23 04:22:17 +02:00
container->setTab(tab);
tab->setParent(this);
2017-01-22 12:46:35 +01:00
tab->show();
2018-05-23 04:22:17 +02:00
return container;
2016-12-29 17:31:07 +01:00
}
2016-12-30 12:20:26 +01:00
2018-05-23 04:22:17 +02:00
SplitContainer *SplitNotebook::getOrAddSelectedPage()
{
2018-05-23 04:22:17 +02:00
auto *selectedPage = this->getSelectedPage();
2018-01-22 21:31:45 +01:00
2018-08-06 21:17:03 +02:00
return selectedPage != nullptr ? (SplitContainer *)selectedPage
: this->addPage();
2017-01-18 21:30:23 +01:00
}
void SplitNotebook::select(QWidget *page)
{
2018-10-21 13:43:02 +02:00
if (auto selectedPage = this->getSelectedPage())
{
if (auto splitContainer = dynamic_cast<SplitContainer *>(selectedPage))
{
for (auto split : splitContainer->getSplits())
{
split->updateLastReadMessage();
}
}
}
this->Notebook::select(page);
}
2017-04-14 17:52:22 +02:00
} // namespace chatterino