2016-12-29 17:31:07 +01:00
|
|
|
#ifndef NOTEBOOK_H
|
|
|
|
#define NOTEBOOK_H
|
|
|
|
|
2017-01-18 21:30:23 +01:00
|
|
|
#include "widgets/notebookbutton.h"
|
|
|
|
#include "widgets/notebookpage.h"
|
|
|
|
#include "widgets/notebooktab.h"
|
2016-12-29 17:31:07 +01:00
|
|
|
|
2017-01-18 04:52:47 +01:00
|
|
|
#include <QList>
|
|
|
|
#include <QWidget>
|
|
|
|
|
2017-01-18 21:30:23 +01:00
|
|
|
namespace chatterino {
|
|
|
|
namespace widgets {
|
|
|
|
|
2016-12-29 17:31:07 +01:00
|
|
|
class Notebook : public QWidget
|
|
|
|
{
|
2017-01-11 18:52:09 +01:00
|
|
|
Q_OBJECT
|
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-01-22 05:58:23 +01:00
|
|
|
Notebook(QWidget *parent);
|
2016-12-30 12:20:26 +01:00
|
|
|
|
2017-01-22 05:58:23 +01:00
|
|
|
NotebookPage *addPage(bool select = false);
|
2016-12-30 12:20:26 +01:00
|
|
|
|
2017-01-22 05:58:23 +01:00
|
|
|
void removePage(NotebookPage *page);
|
2017-01-11 18:52:09 +01:00
|
|
|
void select(NotebookPage *page);
|
2017-01-16 03:15:07 +01:00
|
|
|
|
|
|
|
NotebookPage *
|
2017-01-18 04:33:30 +01:00
|
|
|
getSelectedPage()
|
2017-01-16 03:15:07 +01:00
|
|
|
{
|
2017-01-18 04:33:30 +01: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-01-22 12:46:35 +01:00
|
|
|
NotebookPage *tabAt(QPoint point, int &index);
|
|
|
|
void rearrangePage(NotebookPage *page, int index);
|
|
|
|
|
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
|
|
|
|
2016-12-29 17:31:07 +01:00
|
|
|
private:
|
2017-01-18 04:33:30 +01:00
|
|
|
QList<NotebookPage *> pages;
|
2016-12-30 12:20:26 +01:00
|
|
|
|
2017-01-18 04:33:30 +01:00
|
|
|
NotebookButton addButton;
|
|
|
|
NotebookButton settingsButton;
|
|
|
|
NotebookButton userButton;
|
2016-12-30 12:20:26 +01:00
|
|
|
|
2017-01-22 12:46:35 +01:00
|
|
|
NotebookPage *selectedPage;
|
2016-12-29 17:31:07 +01:00
|
|
|
};
|
2017-01-18 21:30:23 +01:00
|
|
|
}
|
|
|
|
}
|
2016-12-29 17:31:07 +01:00
|
|
|
|
2017-01-11 18:52:09 +01:00
|
|
|
#endif // NOTEBOOK_H
|