mirror-chatterino2/notebook.cpp

110 lines
2.1 KiB
C++
Raw Normal View History

2016-12-29 17:31:07 +01:00
#include "QWidget"
2016-12-30 12:20:26 +01:00
#include "QList"
2016-12-30 18:00:25 +01:00
#include "QLayout"
2016-12-29 17:31:07 +01:00
#include "notebook.h"
2016-12-30 12:20:26 +01:00
#include "notebooktab.h"
2016-12-29 17:31:07 +01:00
#include "notebookpage.h"
2016-12-30 12:20:26 +01:00
#include "notebookbutton.h"
2016-12-30 18:00:25 +01:00
#include "QFormLayout"
2017-01-01 02:30:42 +01:00
#include "colorscheme.h"
2017-01-01 18:43:52 +01:00
#include "dialog.h"
2017-01-02 03:02:32 +01:00
#include "settingsdialog.h"
2016-12-29 17:31:07 +01:00
Notebook::Notebook(QWidget *parent)
2016-12-30 12:20:26 +01:00
: QWidget(parent),
addButton(this),
settingsButton(this),
userButton(this)
2016-12-29 17:31:07 +01:00
{
2017-01-01 18:43:52 +01:00
connect(&settingsButton, SIGNAL(clicked()), this, SLOT(settingsButtonClicked()));
2016-12-30 12:20:26 +01:00
settingsButton.resize(24, 24);
settingsButton.icon = NotebookButton::IconSettings;
userButton.resize(24, 24);
userButton.move(24, 0);
userButton.icon = NotebookButton::IconUser;
addButton.resize(24, 24);
2016-12-29 17:31:07 +01:00
}
2017-01-01 18:43:52 +01:00
void Notebook::settingsButtonClicked()
{
2017-01-02 03:02:32 +01:00
SettingsDialog* a = new SettingsDialog();
2017-01-01 18:43:52 +01:00
a->show();
}
2016-12-30 12:20:26 +01:00
NotebookPage* Notebook::addPage()
2016-12-29 17:31:07 +01:00
{
2016-12-30 12:20:26 +01:00
auto tab = new NotebookTab(this);
2017-01-01 02:30:42 +01:00
auto page = new NotebookPage(this, tab);
2016-12-30 12:20:26 +01:00
2016-12-30 18:00:25 +01:00
if (pages.count() == 0)
{
select(page);
}
2016-12-29 18:45:08 +01:00
2016-12-30 18:00:25 +01:00
this->pages.append(page);
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
2016-12-30 18:00:25 +01:00
void Notebook::select(NotebookPage* page)
{
2017-01-01 02:30:42 +01:00
if (page == selected) return;
2016-12-30 18:00:25 +01:00
if (page != nullptr)
{
2017-01-01 02:30:42 +01:00
page->setHidden(false);
2016-12-30 18:00:25 +01:00
page->tab->setSelected(true);
}
2017-01-01 02:30:42 +01:00
if (selected != nullptr)
{
selected->setHidden(true);
selected->tab->setSelected(false);
}
2016-12-30 18:00:25 +01:00
selected = page;
performLayout();
}
void Notebook::performLayout()
2016-12-30 12:20:26 +01:00
{
int x = 48, y = 0;
int tabHeight = 16;
2016-12-30 18:00:25 +01:00
bool first = true;
2016-12-30 12:20:26 +01:00
2016-12-30 18:00:25 +01:00
for (auto &i : pages)
2016-12-30 12:20:26 +01:00
{
tabHeight = i->tab->height();
2016-12-30 18:00:25 +01:00
if (!first && (i == pages.last() ? tabHeight : 0) + x + i->tab->width() > width())
2016-12-30 12:20:26 +01:00
{
y +=i->tab->height();
i->tab->move(0, y);
x = i->tab->width();
}
else
{
i->tab->move(x, y);
x += i->tab->width();
}
2016-12-30 18:00:25 +01:00
first = false;
2016-12-30 12:20:26 +01:00
}
this->addButton.move(x, y);
2016-12-30 18:00:25 +01:00
if (selected != nullptr)
{
selected->move(0, y + tabHeight);
selected->resize(width(), height() - y - tabHeight);
}
2016-12-30 12:20:26 +01:00
}
void Notebook::resizeEvent(QResizeEvent *)
{
2016-12-30 18:00:25 +01:00
performLayout();
2016-12-30 12:20:26 +01:00
}