2017-06-07 10:09:24 +02:00
|
|
|
#pragma once
|
2016-12-29 17:31:07 +01:00
|
|
|
|
2017-06-26 16:41:20 +02:00
|
|
|
#include "widgets/basewidget.hpp"
|
2017-11-12 17:21:50 +01:00
|
|
|
#include "widgets/helper/notebookbutton.hpp"
|
|
|
|
#include "widgets/helper/notebooktab.hpp"
|
|
|
|
#include "widgets/splitcontainer.hpp"
|
2016-12-29 17:31:07 +01:00
|
|
|
|
2017-01-18 04:52:47 +01:00
|
|
|
#include <QList>
|
|
|
|
#include <QWidget>
|
|
|
|
|
2017-04-14 17:52:22 +02:00
|
|
|
namespace chatterino {
|
|
|
|
namespace widgets {
|
2017-01-18 21:30:23 +01:00
|
|
|
|
2017-11-12 17:21:50 +01:00
|
|
|
class Window;
|
2017-07-23 14:16:13 +02:00
|
|
|
|
2017-06-26 16:41:20 +02:00
|
|
|
class Notebook : public BaseWidget
|
2016-12-29 17:31:07 +01:00
|
|
|
{
|
2017-01-11 18:52:09 +01:00
|
|
|
Q_OBJECT
|
2016-12-29 17:31:07 +01:00
|
|
|
|
2017-12-22 14:44:31 +01:00
|
|
|
std::string settingRoot;
|
|
|
|
|
2016-12-29 17:31:07 +01:00
|
|
|
public:
|
2017-01-22 05:58:23 +01:00
|
|
|
enum HighlightType { none, highlighted, newMessage };
|
2016-12-29 17:31:07 +01:00
|
|
|
|
2017-12-31 00:50:07 +01:00
|
|
|
explicit Notebook(Window *parent, bool _showButtons, const std::string &settingPrefix);
|
2016-12-30 12:20:26 +01:00
|
|
|
|
2017-12-22 14:44:31 +01:00
|
|
|
SplitContainer *addNewPage();
|
|
|
|
SplitContainer *addPage(const std::string &uuid, bool select = false);
|
2016-12-30 12:20:26 +01:00
|
|
|
|
2017-11-12 17:21:50 +01:00
|
|
|
void removePage(SplitContainer *page);
|
|
|
|
void select(SplitContainer *page);
|
2018-01-06 20:27:26 +01:00
|
|
|
void selectIndex(unsigned index);
|
2017-01-16 03:15:07 +01:00
|
|
|
|
2017-11-12 17:21:50 +01:00
|
|
|
SplitContainer *getSelectedPage() const
|
2017-01-16 03:15:07 +01:00
|
|
|
{
|
2017-06-26 16:41:20 +02:00
|
|
|
return selectedPage;
|
2017-01-16 03:15:07 +01:00
|
|
|
}
|
|
|
|
|
2017-01-26 05:26:21 +01:00
|
|
|
void performLayout(bool animate = true);
|
2016-12-30 18:00:25 +01:00
|
|
|
|
2017-12-14 00:25:06 +01:00
|
|
|
int tabCount();
|
2017-11-12 17:21:50 +01:00
|
|
|
SplitContainer *tabAt(QPoint point, int &index);
|
|
|
|
void rearrangePage(SplitContainer *page, int index);
|
2017-01-22 12:46:35 +01:00
|
|
|
|
2017-08-13 15:24:41 +02:00
|
|
|
void nextTab();
|
|
|
|
void previousTab();
|
|
|
|
|
2016-12-30 12:20:26 +01:00
|
|
|
protected:
|
|
|
|
void resizeEvent(QResizeEvent *);
|
2016-12-29 17:31:07 +01:00
|
|
|
|
2017-01-01 18:43:52 +01:00
|
|
|
void settingsButtonMouseReleased(QMouseEvent *event);
|
|
|
|
|
|
|
|
public slots:
|
|
|
|
void settingsButtonClicked();
|
2017-01-22 05:58:23 +01:00
|
|
|
void usersButtonClicked();
|
|
|
|
void addPageButtonClicked();
|
2017-01-01 18:43:52 +01:00
|
|
|
|
2017-07-23 14:16:13 +02:00
|
|
|
private:
|
2017-11-12 17:21:50 +01:00
|
|
|
QList<SplitContainer *> pages;
|
2016-12-30 12:20:26 +01:00
|
|
|
|
2017-06-26 16:41:20 +02:00
|
|
|
NotebookButton addButton;
|
|
|
|
NotebookButton settingsButton;
|
|
|
|
NotebookButton userButton;
|
2016-12-30 12:20:26 +01:00
|
|
|
|
2017-11-12 17:21:50 +01:00
|
|
|
SplitContainer *selectedPage = nullptr;
|
|
|
|
|
|
|
|
bool showButtons;
|
2017-01-28 22:35:23 +01:00
|
|
|
|
2017-12-28 18:15:27 +01:00
|
|
|
pajlada::Settings::Setting<std::vector<std::string>> tabs;
|
|
|
|
|
|
|
|
void loadTabs();
|
2017-12-22 14:44:31 +01:00
|
|
|
|
2017-01-28 22:35:23 +01:00
|
|
|
public:
|
2017-12-22 14:44:31 +01:00
|
|
|
void save();
|
2016-12-29 17:31:07 +01:00
|
|
|
};
|
2017-01-28 22:35:23 +01:00
|
|
|
|
2017-04-14 17:52:22 +02:00
|
|
|
} // namespace widgets
|
|
|
|
} // namespace chatterino
|