mirror-chatterino2/src/widgets/notebook.cpp

275 lines
6 KiB
C++
Raw Normal View History

2017-06-11 09:31:45 +02:00
#include "widgets/notebook.hpp"
#include "colorscheme.hpp"
#include "widgets/mainwindow.hpp"
2017-06-11 09:31:45 +02:00
#include "widgets/notebookbutton.hpp"
#include "widgets/notebookpage.hpp"
#include "widgets/notebooktab.hpp"
#include "widgets/settingsdialog.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>
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 {
namespace widgets {
2017-01-18 21:30:23 +01:00
Notebook::Notebook(ChannelManager &_channelManager, MainWindow *parent)
: BaseWidget(parent)
, channelManager(_channelManager)
, completionManager(parent->completionManager)
, addButton(this)
, settingsButton(this)
, userButton(this)
, selectedPage(nullptr)
2016-12-29 17:31:07 +01:00
{
connect(&settingsButton, SIGNAL(clicked()), this, SLOT(settingsButtonClicked()));
connect(&userButton, SIGNAL(clicked()), this, SLOT(usersButtonClicked()));
connect(&addButton, SIGNAL(clicked()), this, SLOT(addPageButtonClicked()));
2017-04-12 17:46:44 +02:00
settingsButton.resize(24, 24);
settingsButton.icon = NotebookButton::IconSettings;
2017-04-12 17:46:44 +02:00
userButton.resize(24, 24);
userButton.move(24, 0);
userButton.icon = NotebookButton::IconUser;
2017-04-12 17:46:44 +02:00
addButton.resize(24, 24);
2017-04-12 17:46:44 +02:00
SettingsManager::getInstance().hidePreferencesButton.valueChanged.connect(
[this](const bool &) { performLayout(); });
SettingsManager::getInstance().hideUserButton.valueChanged.connect(
[this](const bool &) { performLayout(); });
2017-01-01 18:43:52 +01:00
}
2017-04-12 17:46:44 +02:00
NotebookPage *Notebook::addPage(bool select)
2016-12-29 17:31:07 +01:00
{
2016-12-30 12:20:26 +01:00
auto tab = new NotebookTab(this);
auto page = new NotebookPage(this->channelManager, this, tab);
2016-12-30 12:20:26 +01:00
2017-01-22 12:46:35 +01:00
tab->show();
if (select || pages.count() == 0) {
this->select(page);
2016-12-30 18:00:25 +01:00
}
2016-12-29 18:45:08 +01:00
pages.append(page);
2016-12-29 18:45:08 +01:00
2017-04-12 17:46:44 +02:00
performLayout();
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-04-12 17:46:44 +02:00
void Notebook::removePage(NotebookPage *page)
{
int index = pages.indexOf(page);
if (pages.size() == 1) {
select(nullptr);
} else if (index == pages.count() - 1) {
select(pages[index - 1]);
} else {
select(pages[index + 1]);
}
2017-04-12 17:46:44 +02:00
delete page->getTab();
delete page;
pages.removeOne(page);
2017-01-22 12:46:35 +01:00
if (pages.size() == 0) {
2017-01-22 12:46:35 +01:00
addPage();
}
performLayout();
}
2017-04-12 17:46:44 +02:00
void Notebook::select(NotebookPage *page)
2016-12-30 18:00:25 +01:00
{
if (page == selectedPage)
2017-01-11 18:52:09 +01:00
return;
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
}
if (selectedPage != nullptr) {
selectedPage->setHidden(true);
selectedPage->getTab()->setSelected(false);
2017-01-01 02:30:42 +01:00
}
selectedPage = page;
2016-12-30 18:00:25 +01:00
performLayout();
}
2017-04-12 17:46:44 +02:00
NotebookPage *Notebook::tabAt(QPoint point, int &index)
2017-01-22 12:46:35 +01:00
{
int i = 0;
for (auto *page : pages) {
2017-04-12 17:46:44 +02:00
if (page->getTab()->getDesiredRect().contains(point)) {
2017-01-22 12:46:35 +01:00
index = i;
return page;
}
i++;
}
index = -1;
return nullptr;
}
2017-04-12 17:46:44 +02:00
void Notebook::rearrangePage(NotebookPage *page, int index)
2017-01-22 12:46:35 +01:00
{
pages.move(pages.indexOf(page), index);
2017-01-22 12:46:35 +01:00
performLayout();
}
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
{
2017-02-02 02:46:33 +01:00
int x = 0, y = 0;
2017-04-12 17:46:44 +02:00
if (SettingsManager::getInstance().hidePreferencesButton.get()) {
settingsButton.hide();
2017-02-02 02:46:33 +01:00
} else {
settingsButton.show();
2017-02-02 02:46:33 +01:00
x += 24;
}
2017-04-12 17:46:44 +02:00
if (SettingsManager::getInstance().hideUserButton.get()) {
userButton.hide();
2017-02-02 02:46:33 +01:00
} else {
userButton.move(x, 0);
userButton.show();
2017-02-02 02:46:33 +01:00
x += 24;
}
2016-12-30 12:20:26 +01:00
int tabHeight = 16;
2016-12-30 18:00:25 +01:00
bool first = true;
2016-12-30 12:20:26 +01:00
for (auto &i : pages) {
2017-04-12 17:46:44 +02:00
tabHeight = i->getTab()->height();
2016-12-30 12:20:26 +01:00
if (!first && (i == pages.last() ? tabHeight : 0) + x + i->getTab()->width() > width()) {
2017-04-12 17:46:44 +02:00
y += i->getTab()->height();
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
}
2016-12-30 18:00:25 +01:00
first = false;
2016-12-30 12:20:26 +01:00
}
addButton.move(x, y);
2016-12-30 18:00:25 +01:00
if (selectedPage != nullptr) {
selectedPage->move(0, y + tabHeight);
selectedPage->resize(width(), height() - y - tabHeight);
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
{
2017-01-26 05:26:21 +01:00
performLayout(false);
2016-12-30 12:20:26 +01:00
}
2017-04-12 17:46:44 +02:00
void Notebook::settingsButtonClicked()
{
SettingsDialog::showDialog();
}
2017-04-12 17:46:44 +02:00
void Notebook::usersButtonClicked()
{
}
2017-04-12 17:46:44 +02:00
void Notebook::addPageButtonClicked()
{
addPage(true);
}
2017-04-12 17:46:44 +02:00
void Notebook::load(const boost::property_tree::ptree &tree)
{
// Read a list of tabs
try {
2017-04-12 17:46:44 +02:00
BOOST_FOREACH (const boost::property_tree::ptree::value_type &v, tree.get_child("tabs.")) {
bool select = v.second.get<bool>("selected", false);
2017-04-12 17:46:44 +02:00
auto page = addPage(select);
auto tab = page->getTab();
tab->load(v.second);
page->load(v.second);
}
} catch (boost::property_tree::ptree_error &) {
// can't read tabs
}
if (pages.size() == 0) {
// No pages saved, show default stuff
2017-04-12 17:46:44 +02:00
loadDefaults();
}
}
2017-04-12 17:46:44 +02:00
void Notebook::save(boost::property_tree::ptree &tree)
{
boost::property_tree::ptree tabs;
// Iterate through all tabs and add them to our tabs property thing
for (const auto &page : pages) {
2017-04-12 17:46:44 +02:00
boost::property_tree::ptree pTab = page->getTab()->save();
2017-01-29 11:38:00 +01:00
boost::property_tree::ptree pChats = page->save();
if (pChats.size() > 0) {
2017-01-29 12:26:22 +01:00
pTab.add_child("columns", pChats);
2017-01-29 11:38:00 +01:00
}
tabs.push_back(std::make_pair("", pTab));
}
tree.add_child("tabs", tabs);
2017-01-18 21:30:23 +01:00
}
2017-04-12 17:46:44 +02:00
void Notebook::loadDefaults()
{
2017-04-12 17:46:44 +02:00
addPage();
2017-01-18 21:30:23 +01:00
}
2017-04-14 17:52:22 +02:00
} // namespace widgets
} // namespace chatterino