mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
80 lines
1.6 KiB
C++
80 lines
1.6 KiB
C++
#pragma once
|
|
|
|
#include "widgets/basewidget.hpp"
|
|
#include "widgets/helper/notebookbutton.hpp"
|
|
#include "widgets/helper/notebooktab.hpp"
|
|
#include "widgets/splitcontainer.hpp"
|
|
|
|
#include <QList>
|
|
#include <QWidget>
|
|
#include <boost/property_tree/ptree.hpp>
|
|
|
|
namespace chatterino {
|
|
|
|
class ChannelManager;
|
|
|
|
namespace widgets {
|
|
|
|
class Window;
|
|
|
|
class Notebook : public BaseWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
enum HighlightType { none, highlighted, newMessage };
|
|
|
|
explicit Notebook(ChannelManager &_channelManager, Window *parent, bool showButtons);
|
|
|
|
SplitContainer *addPage(bool select = false);
|
|
|
|
void removePage(SplitContainer *page);
|
|
void select(SplitContainer *page);
|
|
|
|
SplitContainer *getSelectedPage() const
|
|
{
|
|
return selectedPage;
|
|
}
|
|
|
|
void performLayout(bool animate = true);
|
|
|
|
int tabCount();
|
|
SplitContainer *tabAt(QPoint point, int &index);
|
|
void rearrangePage(SplitContainer *page, int index);
|
|
|
|
void nextTab();
|
|
void previousTab();
|
|
|
|
protected:
|
|
void resizeEvent(QResizeEvent *);
|
|
|
|
void settingsButtonMouseReleased(QMouseEvent *event);
|
|
|
|
public slots:
|
|
void settingsButtonClicked();
|
|
void usersButtonClicked();
|
|
void addPageButtonClicked();
|
|
|
|
public:
|
|
ChannelManager &channelManager;
|
|
|
|
private:
|
|
QList<SplitContainer *> pages;
|
|
|
|
NotebookButton addButton;
|
|
NotebookButton settingsButton;
|
|
NotebookButton userButton;
|
|
|
|
SplitContainer *selectedPage = nullptr;
|
|
|
|
bool showButtons;
|
|
|
|
public:
|
|
void load(const boost::property_tree::ptree &tree);
|
|
void save(boost::property_tree::ptree &tree);
|
|
void loadDefaults();
|
|
};
|
|
|
|
} // namespace widgets
|
|
} // namespace chatterino
|