2017-06-11 09:31:45 +02:00
|
|
|
#include "widgets/notebook.hpp"
|
2017-12-19 02:16:01 +01:00
|
|
|
#include "debug/log.hpp"
|
2017-12-31 00:50:07 +01:00
|
|
|
#include "singletons/thememanager.hpp"
|
2018-01-24 15:08:22 +01:00
|
|
|
#include "singletons/windowmanager.hpp"
|
2017-11-12 17:21:50 +01:00
|
|
|
#include "widgets/helper/notebookbutton.hpp"
|
|
|
|
#include "widgets/helper/notebooktab.hpp"
|
2018-04-07 12:27:08 +02:00
|
|
|
#include "widgets/helper/shortcut.hpp"
|
2017-06-11 09:31:45 +02:00
|
|
|
#include "widgets/settingsdialog.hpp"
|
2017-11-12 17:21:50 +01:00
|
|
|
#include "widgets/splitcontainer.hpp"
|
|
|
|
#include "widgets/window.hpp"
|
2016-12-29 17:31:07 +01:00
|
|
|
|
2017-01-28 22:35:23 +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>
|
2017-01-28 22:35:23 +01:00
|
|
|
#include <QStandardPaths>
|
2017-12-22 14:44:31 +01:00
|
|
|
#include <QUuid>
|
2017-01-18 04:52:47 +01:00
|
|
|
#include <QWidget>
|
2017-01-28 22:35:23 +01:00
|
|
|
#include <boost/foreach.hpp>
|
2017-01-18 04:52:47 +01:00
|
|
|
|
2017-04-14 17:52:22 +02:00
|
|
|
namespace chatterino {
|
|
|
|
namespace widgets {
|
2017-01-18 21:30:23 +01:00
|
|
|
|
2018-04-18 09:12:29 +02:00
|
|
|
Notebook2::Notebook2(QWidget *parent)
|
|
|
|
: BaseWidget(singletons::ThemeManager::getInstance(), 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(); });
|
|
|
|
}
|
|
|
|
|
|
|
|
NotebookTab2 *Notebook2::addPage(QWidget *page, bool select)
|
|
|
|
{
|
|
|
|
auto *tab = new NotebookTab2(this);
|
|
|
|
tab->page = page;
|
|
|
|
|
|
|
|
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 Notebook2::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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void Notebook2::removeCurrentPage()
|
|
|
|
{
|
|
|
|
if (this->selectedPage != nullptr) {
|
|
|
|
this->removePage(this->selectedPage);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
int Notebook2::indexOf(QWidget *page) const
|
|
|
|
{
|
|
|
|
for (int i = 0; i < this->items.count(); i++) {
|
|
|
|
if (this->items[i].page == page) {
|
|
|
|
return i;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Notebook2::select(QWidget *page)
|
|
|
|
{
|
|
|
|
if (page == this->selectedPage) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (page != nullptr) {
|
|
|
|
page->setHidden(false);
|
|
|
|
|
|
|
|
NotebookTab2 *tab = this->getTabFromPage(page);
|
|
|
|
tab->setSelected(true);
|
|
|
|
tab->raise();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (this->selectedPage != nullptr) {
|
|
|
|
this->selectedPage->setHidden(true);
|
|
|
|
|
|
|
|
NotebookTab2 *tab = this->getTabFromPage(selectedPage);
|
|
|
|
tab->setSelected(false);
|
|
|
|
|
|
|
|
// for (auto split : this->selectedPage->getSplits()) {
|
|
|
|
// split->updateLastReadMessage();
|
|
|
|
// }
|
|
|
|
}
|
|
|
|
|
|
|
|
this->selectedPage = page;
|
|
|
|
|
|
|
|
this->performLayout();
|
|
|
|
}
|
|
|
|
|
|
|
|
void Notebook2::selectIndex(int index)
|
|
|
|
{
|
|
|
|
if (index < 0 || this->items.count() <= index) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
this->select(this->items[index].page);
|
|
|
|
}
|
|
|
|
|
|
|
|
void Notebook2::selectNextTab()
|
|
|
|
{
|
|
|
|
if (this->items.size() <= 1) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
int index = (this->indexOf(this->selectedPage) + 1) % this->items.count();
|
|
|
|
|
|
|
|
this->select(this->items[index].page);
|
|
|
|
}
|
|
|
|
|
|
|
|
void Notebook2::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 Notebook2::getPageCount() const
|
|
|
|
{
|
|
|
|
return this->items.count();
|
|
|
|
}
|
|
|
|
|
|
|
|
int Notebook2::getSelectedIndex() const
|
|
|
|
{
|
|
|
|
return this->indexOf(this->selectedPage);
|
|
|
|
}
|
|
|
|
|
|
|
|
QWidget *Notebook2::getSelectedPage() const
|
|
|
|
{
|
|
|
|
return this->selectedPage;
|
|
|
|
}
|
|
|
|
|
|
|
|
QWidget *Notebook2::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 Notebook2::rearrangePage(QWidget *page, int index)
|
|
|
|
{
|
|
|
|
this->items.move(this->indexOf(page), index);
|
|
|
|
|
|
|
|
this->performLayout();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Notebook2::getAllowUserTabManagement() const
|
|
|
|
{
|
|
|
|
return this->allowUserTabManagement;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Notebook2::setAllowUserTabManagement(bool value)
|
|
|
|
{
|
|
|
|
this->allowUserTabManagement = value;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Notebook2::getShowAddButton() const
|
|
|
|
{
|
|
|
|
return this->showAddButton;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Notebook2::setShowAddButton(bool value)
|
|
|
|
{
|
|
|
|
this->showAddButton = value;
|
|
|
|
|
|
|
|
this->addButton.setHidden(!value);
|
|
|
|
}
|
|
|
|
|
|
|
|
void Notebook2::scaleChangedEvent(float scale)
|
|
|
|
{
|
|
|
|
// float h = 24 * 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 Notebook2::resizeEvent(QResizeEvent *)
|
|
|
|
{
|
|
|
|
this->performLayout();
|
|
|
|
}
|
|
|
|
|
|
|
|
void Notebook2::performLayout(bool animated)
|
|
|
|
{
|
|
|
|
singletons::SettingManager &settings = singletons::SettingManager::getInstance();
|
|
|
|
|
|
|
|
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 || settings.hidePreferencesButton || customFrame) {
|
|
|
|
// this->settingsButton.hide();
|
|
|
|
// } else {
|
|
|
|
// this->settingsButton.show();
|
|
|
|
// x += settingsButton.width();
|
|
|
|
// }
|
|
|
|
// if (!this->showButtons || settings.hideUserButton || customFrame) {
|
|
|
|
// this->userButton.hide();
|
|
|
|
// } else {
|
|
|
|
// this->userButton.move(x, 0);
|
|
|
|
// this->userButton.show();
|
|
|
|
// x += userButton.width();
|
|
|
|
// }
|
|
|
|
|
|
|
|
// if (customFrame || !this->showButtons ||
|
|
|
|
// (settings.hideUserButton && settings.hidePreferencesButton)) {
|
|
|
|
// x += (int)(scale * 2);
|
|
|
|
// }
|
|
|
|
|
|
|
|
int tabHeight = static_cast<int>(24 * scale);
|
|
|
|
bool first = true;
|
|
|
|
|
|
|
|
for (auto i = this->items.begin(); i != this->items.end(); i++) {
|
|
|
|
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)(1 * 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 Notebook2::paintEvent(QPaintEvent *event)
|
|
|
|
{
|
|
|
|
BaseWidget::paintEvent(event);
|
|
|
|
|
|
|
|
QPainter painter(this);
|
|
|
|
painter.fillRect(0, this->lineY, this->width(), (int)(1 * this->getScale()),
|
|
|
|
this->themeManager.tabs.bottomLine);
|
|
|
|
}
|
|
|
|
|
|
|
|
NotebookTab2 *Notebook2::getTabFromPage(QWidget *page)
|
|
|
|
{
|
|
|
|
for (auto &it : this->items) {
|
|
|
|
if (it.page == page) {
|
|
|
|
return it.tab;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Notebook2::OLD NOTEBOOK
|
2018-04-06 23:31:34 +02:00
|
|
|
Notebook::Notebook(Window *parent, bool _showButtons)
|
2017-06-26 16:41:20 +02:00
|
|
|
: BaseWidget(parent)
|
2018-02-05 15:11:50 +01:00
|
|
|
, parentWindow(parent)
|
2017-06-26 16:41:20 +02:00
|
|
|
, addButton(this)
|
|
|
|
, settingsButton(this)
|
|
|
|
, userButton(this)
|
2017-11-12 17:21:50 +01:00
|
|
|
, showButtons(_showButtons)
|
2018-01-10 01:59:55 +01:00
|
|
|
, closeConfirmDialog(this)
|
2016-12-29 17:31:07 +01:00
|
|
|
{
|
2017-08-13 15:33:18 +02:00
|
|
|
this->connect(&this->settingsButton, SIGNAL(clicked()), this, SLOT(settingsButtonClicked()));
|
|
|
|
this->connect(&this->userButton, SIGNAL(clicked()), this, SLOT(usersButtonClicked()));
|
|
|
|
this->connect(&this->addButton, SIGNAL(clicked()), this, SLOT(addPageButtonClicked()));
|
2017-04-12 17:46:44 +02:00
|
|
|
|
2017-08-13 15:33:18 +02:00
|
|
|
this->settingsButton.icon = NotebookButton::IconSettings;
|
2017-04-12 17:46:44 +02:00
|
|
|
|
2017-08-13 15:33:18 +02:00
|
|
|
this->userButton.move(24, 0);
|
|
|
|
this->userButton.icon = NotebookButton::IconUser;
|
2017-04-12 17:46:44 +02:00
|
|
|
|
2017-12-31 22:58:35 +01:00
|
|
|
auto &settingsManager = singletons::SettingManager::getInstance();
|
2017-12-17 03:37:46 +01:00
|
|
|
|
|
|
|
settingsManager.hidePreferencesButton.connectSimple([this](auto) { this->performLayout(); });
|
|
|
|
settingsManager.hideUserButton.connectSimple([this](auto) { this->performLayout(); });
|
2017-12-22 14:44:31 +01:00
|
|
|
|
2018-01-16 18:55:30 +01:00
|
|
|
closeConfirmDialog.setText("Are you sure you want to close this tab?");
|
2018-01-10 01:59:55 +01:00
|
|
|
closeConfirmDialog.setIcon(QMessageBox::Icon::Question);
|
2018-01-16 18:55:30 +01:00
|
|
|
closeConfirmDialog.setStandardButtons(QMessageBox::Yes | QMessageBox::Cancel);
|
|
|
|
closeConfirmDialog.setDefaultButton(QMessageBox::Yes);
|
2018-01-25 20:49:49 +01:00
|
|
|
|
2018-01-25 20:51:17 +01:00
|
|
|
this->scaleChangedEvent(this->getScale());
|
2018-04-07 12:27:08 +02:00
|
|
|
|
|
|
|
// Window-wide hotkeys
|
|
|
|
// CTRL+T: Create new split in selected notebook page
|
|
|
|
CreateWindowShortcut(this, "CTRL+T", [this]() {
|
|
|
|
if (this->selectedPage == nullptr) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
this->selectedPage->addChat(true);
|
|
|
|
});
|
2017-01-01 18:43:52 +01:00
|
|
|
}
|
|
|
|
|
2018-04-06 23:31:34 +02:00
|
|
|
SplitContainer *Notebook::addNewPage(bool select)
|
2017-12-22 14:44:31 +01:00
|
|
|
{
|
2018-04-06 23:31:34 +02:00
|
|
|
auto tab = new NotebookTab(this);
|
|
|
|
auto page = new SplitContainer(this, tab);
|
2016-12-30 12:20:26 +01:00
|
|
|
|
2017-01-22 12:46:35 +01:00
|
|
|
tab->show();
|
|
|
|
|
2017-08-13 15:33:18 +02:00
|
|
|
if (select || this->pages.count() == 0) {
|
2017-01-22 05:58:23 +01:00
|
|
|
this->select(page);
|
2016-12-30 18:00:25 +01:00
|
|
|
}
|
2016-12-29 18:45:08 +01:00
|
|
|
|
2017-08-13 15:33:18 +02:00
|
|
|
this->pages.append(page);
|
2016-12-29 18:45:08 +01:00
|
|
|
|
2017-08-13 15:33:18 +02:00
|
|
|
this->performLayout();
|
2017-01-22 05:58:23 +01:00
|
|
|
|
2016-12-29 18:45:08 +01:00
|
|
|
return page;
|
2016-12-29 17:31:07 +01:00
|
|
|
}
|
2016-12-30 12:20:26 +01:00
|
|
|
|
2017-11-12 17:21:50 +01:00
|
|
|
void Notebook::removePage(SplitContainer *page)
|
2017-01-22 05:58:23 +01:00
|
|
|
{
|
2018-01-16 18:55:30 +01:00
|
|
|
if (page->splitCount() > 0 && closeConfirmDialog.exec() != QMessageBox::Yes) {
|
2018-01-10 01:59:55 +01:00
|
|
|
return;
|
2018-01-16 18:55:30 +01:00
|
|
|
}
|
2018-01-10 01:59:55 +01:00
|
|
|
|
2017-08-13 15:33:18 +02:00
|
|
|
int index = this->pages.indexOf(page);
|
2017-01-22 05:58:23 +01:00
|
|
|
|
2017-08-13 15:33:18 +02:00
|
|
|
if (this->pages.size() == 1) {
|
2017-06-11 09:37:30 +02:00
|
|
|
select(nullptr);
|
2017-08-13 15:33:18 +02:00
|
|
|
} else if (index == this->pages.count() - 1) {
|
|
|
|
select(this->pages[index - 1]);
|
2017-01-22 05:58:23 +01:00
|
|
|
} else {
|
2017-08-13 15:33:18 +02:00
|
|
|
select(this->pages[index + 1]);
|
2017-01-22 05:58:23 +01:00
|
|
|
}
|
|
|
|
|
2017-08-17 19:15:03 +02:00
|
|
|
page->getTab()->deleteLater();
|
|
|
|
page->deleteLater();
|
2017-01-22 05:58:23 +01:00
|
|
|
|
2017-08-13 15:33:18 +02:00
|
|
|
this->pages.removeOne(page);
|
2017-01-22 12:46:35 +01:00
|
|
|
|
2018-04-07 12:53:10 +02:00
|
|
|
if (this->pages.empty()) {
|
2017-12-22 14:44:31 +01:00
|
|
|
this->addNewPage();
|
2017-01-22 12:46:35 +01:00
|
|
|
}
|
2017-01-22 05:58:23 +01:00
|
|
|
|
2017-08-13 15:33:18 +02:00
|
|
|
this->performLayout();
|
2017-01-22 05:58:23 +01:00
|
|
|
}
|
|
|
|
|
2018-01-06 20:58:56 +01:00
|
|
|
void Notebook::removeCurrentPage()
|
|
|
|
{
|
|
|
|
if (this->selectedPage == nullptr) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
this->removePage(this->selectedPage);
|
|
|
|
}
|
|
|
|
|
2018-04-10 15:59:53 +02:00
|
|
|
SplitContainer *Notebook::getOrAddSelectedPage()
|
|
|
|
{
|
|
|
|
if (selectedPage == nullptr) {
|
|
|
|
this->addNewPage(true);
|
|
|
|
}
|
|
|
|
|
|
|
|
return selectedPage;
|
|
|
|
}
|
|
|
|
|
|
|
|
SplitContainer *Notebook::getSelectedPage()
|
|
|
|
{
|
|
|
|
return selectedPage;
|
|
|
|
}
|
|
|
|
|
2017-11-12 17:21:50 +01:00
|
|
|
void Notebook::select(SplitContainer *page)
|
2016-12-30 18:00:25 +01:00
|
|
|
{
|
2017-08-13 15:33:18 +02:00
|
|
|
if (page == this->selectedPage) {
|
2017-01-11 18:52:09 +01:00
|
|
|
return;
|
2017-08-13 15:33:18 +02:00
|
|
|
}
|
2016-12-30 18:00:25 +01:00
|
|
|
|
2017-01-11 18:52:09 +01:00
|
|
|
if (page != nullptr) {
|
2017-01-01 02:30:42 +01:00
|
|
|
page->setHidden(false);
|
2017-04-12 17:46:44 +02:00
|
|
|
page->getTab()->setSelected(true);
|
|
|
|
page->getTab()->raise();
|
2016-12-30 18:00:25 +01:00
|
|
|
}
|
|
|
|
|
2017-08-13 15:33:18 +02:00
|
|
|
if (this->selectedPage != nullptr) {
|
|
|
|
this->selectedPage->setHidden(true);
|
|
|
|
this->selectedPage->getTab()->setSelected(false);
|
2018-01-23 23:28:06 +01:00
|
|
|
for (auto split : this->selectedPage->getSplits()) {
|
|
|
|
split->updateLastReadMessage();
|
|
|
|
}
|
2017-01-01 02:30:42 +01:00
|
|
|
}
|
|
|
|
|
2017-08-13 15:33:18 +02:00
|
|
|
this->selectedPage = page;
|
2016-12-30 18:00:25 +01:00
|
|
|
|
2017-08-13 15:33:18 +02:00
|
|
|
this->performLayout();
|
2016-12-30 18:00:25 +01:00
|
|
|
}
|
|
|
|
|
2018-01-11 20:16:25 +01:00
|
|
|
void Notebook::selectIndex(int index)
|
2018-01-06 20:27:26 +01:00
|
|
|
{
|
2018-01-11 20:16:25 +01:00
|
|
|
if (index < 0 || index >= this->pages.size()) {
|
2018-01-06 20:27:26 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
this->select(this->pages.at(index));
|
|
|
|
}
|
|
|
|
|
2017-12-14 00:25:06 +01:00
|
|
|
int Notebook::tabCount()
|
|
|
|
{
|
|
|
|
return this->pages.size();
|
|
|
|
}
|
|
|
|
|
2018-01-22 21:31:45 +01:00
|
|
|
SplitContainer *Notebook::tabAt(QPoint point, int &index, int maxWidth)
|
2017-01-22 12:46:35 +01:00
|
|
|
{
|
|
|
|
int i = 0;
|
|
|
|
|
2017-08-13 15:33:18 +02:00
|
|
|
for (auto *page : this->pages) {
|
2018-01-22 21:31:45 +01:00
|
|
|
QRect rect = page->getTab()->getDesiredRect();
|
2018-04-01 16:41:32 +02:00
|
|
|
rect.setHeight((int)(this->getScale() * 24));
|
2018-03-30 16:25:49 +02:00
|
|
|
|
2018-01-22 21:31:45 +01:00
|
|
|
rect.setWidth(std::min(maxWidth, rect.width()));
|
|
|
|
|
|
|
|
if (rect.contains(point)) {
|
2017-01-22 12:46:35 +01:00
|
|
|
index = i;
|
|
|
|
return page;
|
|
|
|
}
|
|
|
|
|
|
|
|
i++;
|
|
|
|
}
|
|
|
|
|
|
|
|
index = -1;
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
2018-04-06 23:31:34 +02:00
|
|
|
SplitContainer *Notebook::tabAt(int index)
|
|
|
|
{
|
|
|
|
return this->pages[index];
|
|
|
|
}
|
|
|
|
|
2017-11-12 17:21:50 +01:00
|
|
|
void Notebook::rearrangePage(SplitContainer *page, int index)
|
2017-01-22 12:46:35 +01:00
|
|
|
{
|
2017-08-13 15:33:18 +02:00
|
|
|
this->pages.move(this->pages.indexOf(page), index);
|
2017-01-22 12:46:35 +01:00
|
|
|
|
2017-08-13 15:33:18 +02:00
|
|
|
this->performLayout();
|
2017-01-22 12:46:35 +01:00
|
|
|
}
|
|
|
|
|
2017-08-13 15:24:41 +02:00
|
|
|
void Notebook::nextTab()
|
|
|
|
{
|
|
|
|
if (this->pages.size() <= 1) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
int index = (this->pages.indexOf(this->selectedPage) + 1) % this->pages.size();
|
|
|
|
|
|
|
|
this->select(this->pages[index]);
|
|
|
|
}
|
|
|
|
|
|
|
|
void Notebook::previousTab()
|
|
|
|
{
|
|
|
|
if (this->pages.size() <= 1) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
int index = (this->pages.indexOf(this->selectedPage) - 1);
|
|
|
|
|
|
|
|
if (index < 0) {
|
|
|
|
index += this->pages.size();
|
|
|
|
}
|
|
|
|
|
|
|
|
this->select(this->pages[index]);
|
|
|
|
}
|
|
|
|
|
2017-04-12 17:46:44 +02:00
|
|
|
void Notebook::performLayout(bool animated)
|
2016-12-30 12:20:26 +01:00
|
|
|
{
|
2018-01-05 23:55:41 +01:00
|
|
|
singletons::SettingManager &settings = singletons::SettingManager::getInstance();
|
|
|
|
|
2017-02-02 02:46:33 +01:00
|
|
|
int x = 0, y = 0;
|
2018-01-25 20:49:49 +01:00
|
|
|
float scale = this->getScale();
|
2018-01-15 01:35:35 +01:00
|
|
|
bool customFrame = this->parentWindow->hasCustomWindowFrame();
|
2017-02-02 02:46:33 +01:00
|
|
|
|
2018-01-15 01:35:35 +01:00
|
|
|
if (!this->showButtons || settings.hidePreferencesButton || customFrame) {
|
2017-08-13 15:33:18 +02:00
|
|
|
this->settingsButton.hide();
|
2017-02-02 02:46:33 +01:00
|
|
|
} else {
|
2017-08-13 15:33:18 +02:00
|
|
|
this->settingsButton.show();
|
2017-09-22 00:50:43 +02:00
|
|
|
x += settingsButton.width();
|
2017-02-02 02:46:33 +01:00
|
|
|
}
|
2018-01-15 01:35:35 +01:00
|
|
|
if (!this->showButtons || settings.hideUserButton || customFrame) {
|
2017-08-13 15:33:18 +02:00
|
|
|
this->userButton.hide();
|
2017-02-02 02:46:33 +01:00
|
|
|
} else {
|
2017-08-13 15:33:18 +02:00
|
|
|
this->userButton.move(x, 0);
|
|
|
|
this->userButton.show();
|
2017-09-22 00:50:43 +02:00
|
|
|
x += userButton.width();
|
2017-02-02 02:46:33 +01:00
|
|
|
}
|
|
|
|
|
2018-01-15 01:35:35 +01:00
|
|
|
if (customFrame || !this->showButtons ||
|
|
|
|
(settings.hideUserButton && settings.hidePreferencesButton)) {
|
2018-01-05 23:55:41 +01:00
|
|
|
x += (int)(scale * 2);
|
|
|
|
}
|
|
|
|
|
2017-09-22 00:50:43 +02:00
|
|
|
int tabHeight = static_cast<int>(24 * scale);
|
2016-12-30 18:00:25 +01:00
|
|
|
bool first = true;
|
2016-12-30 12:20:26 +01:00
|
|
|
|
2017-08-13 15:33:18 +02:00
|
|
|
for (auto &i : this->pages) {
|
|
|
|
if (!first &&
|
|
|
|
(i == this->pages.last() ? tabHeight : 0) + x + i->getTab()->width() > width()) {
|
2018-04-06 23:31:34 +02:00
|
|
|
y += i->getTab()->height();
|
2018-04-01 16:41:32 +02:00
|
|
|
// y += 20;
|
2017-04-12 17:46:44 +02:00
|
|
|
i->getTab()->moveAnimated(QPoint(0, y), animated);
|
|
|
|
x = i->getTab()->width();
|
2017-01-11 18:52:09 +01:00
|
|
|
} else {
|
2017-04-12 17:46:44 +02:00
|
|
|
i->getTab()->moveAnimated(QPoint(x, y), animated);
|
|
|
|
x += i->getTab()->width();
|
2016-12-30 12:20:26 +01:00
|
|
|
}
|
|
|
|
|
2018-04-01 16:41:32 +02:00
|
|
|
// x -= (int)(8 * scale);
|
|
|
|
x += 1;
|
2018-03-30 13:44:01 +02:00
|
|
|
|
2016-12-30 18:00:25 +01:00
|
|
|
first = false;
|
2016-12-30 12:20:26 +01:00
|
|
|
}
|
|
|
|
|
2018-04-01 16:41:32 +02:00
|
|
|
// x += (int)(8 * scale);
|
|
|
|
// x += 1;
|
2018-03-30 16:25:49 +02:00
|
|
|
|
2017-08-13 15:33:18 +02:00
|
|
|
this->addButton.move(x, y);
|
2016-12-30 18:00:25 +01:00
|
|
|
|
2018-04-01 16:41:32 +02:00
|
|
|
y -= 1;
|
|
|
|
|
2018-03-30 16:25:49 +02:00
|
|
|
for (auto &i : this->pages) {
|
|
|
|
i->getTab()->raise();
|
|
|
|
}
|
|
|
|
|
|
|
|
this->addButton.raise();
|
|
|
|
|
2017-08-13 15:33:18 +02:00
|
|
|
if (this->selectedPage != nullptr) {
|
|
|
|
this->selectedPage->move(0, y + tabHeight);
|
|
|
|
this->selectedPage->resize(width(), height() - y - tabHeight);
|
2018-01-22 21:31:45 +01:00
|
|
|
this->selectedPage->raise();
|
2016-12-30 18:00:25 +01:00
|
|
|
}
|
2016-12-30 12:20:26 +01:00
|
|
|
}
|
|
|
|
|
2017-04-12 17:46:44 +02:00
|
|
|
void Notebook::resizeEvent(QResizeEvent *)
|
2016-12-30 12:20:26 +01:00
|
|
|
{
|
2018-01-25 20:49:49 +01:00
|
|
|
this->performLayout(false);
|
|
|
|
}
|
2017-09-22 00:50:43 +02:00
|
|
|
|
2018-01-25 20:49:49 +01:00
|
|
|
void Notebook::scaleChangedEvent(float)
|
|
|
|
{
|
|
|
|
float h = 24 * this->getScale();
|
|
|
|
|
|
|
|
this->settingsButton.setFixedSize(h, h);
|
|
|
|
this->userButton.setFixedSize(h, h);
|
|
|
|
this->addButton.setFixedSize(h, h);
|
2017-09-22 00:50:43 +02:00
|
|
|
|
|
|
|
for (auto &i : this->pages) {
|
2018-01-25 20:49:49 +01:00
|
|
|
i->getTab()->updateSize();
|
2017-09-22 00:50:43 +02:00
|
|
|
}
|
2016-12-30 12:20:26 +01:00
|
|
|
}
|
2017-01-22 05:58:23 +01:00
|
|
|
|
2017-04-12 17:46:44 +02:00
|
|
|
void Notebook::settingsButtonClicked()
|
2017-01-22 05:58:23 +01:00
|
|
|
{
|
2018-01-24 15:08:22 +01:00
|
|
|
singletons::WindowManager::getInstance().showSettingsDialog();
|
2017-01-22 05:58:23 +01:00
|
|
|
}
|
|
|
|
|
2017-04-12 17:46:44 +02:00
|
|
|
void Notebook::usersButtonClicked()
|
2017-01-22 05:58:23 +01:00
|
|
|
{
|
2018-01-24 15:08:22 +01:00
|
|
|
singletons::WindowManager::getInstance().showAccountSelectPopup(
|
|
|
|
this->mapToGlobal(this->userButton.rect().bottomRight()));
|
2017-01-22 05:58:23 +01:00
|
|
|
}
|
|
|
|
|
2017-04-12 17:46:44 +02:00
|
|
|
void Notebook::addPageButtonClicked()
|
2017-01-22 05:58:23 +01:00
|
|
|
{
|
2018-04-06 23:31:34 +02:00
|
|
|
QTimer::singleShot(80, [this] { this->addNewPage(true); });
|
2017-01-18 21:30:23 +01:00
|
|
|
}
|
2017-01-28 22:35:23 +01:00
|
|
|
|
2017-04-14 17:52:22 +02:00
|
|
|
} // namespace widgets
|
|
|
|
} // namespace chatterino
|