mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
88 lines
1.8 KiB
C++
88 lines
1.8 KiB
C++
#ifndef NOTEBOOKTAB_H
|
|
#define NOTEBOOKTAB_H
|
|
|
|
#include <QPropertyAnimation>
|
|
#include <QWidget>
|
|
#include <boost/property_tree/ptree.hpp>
|
|
#include <boost/signals2.hpp>
|
|
#include <boost/signals2/connection.hpp>
|
|
|
|
namespace chatterino {
|
|
namespace widgets {
|
|
|
|
class Notebook;
|
|
class NotebookPage;
|
|
|
|
class NotebookTab : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
enum HighlightStyle { HighlightNone, HighlightHighlighted, HighlightNewMessage };
|
|
|
|
explicit NotebookTab(Notebook *_notebook);
|
|
~NotebookTab();
|
|
|
|
void calcSize();
|
|
|
|
NotebookPage *page;
|
|
|
|
const QString &getTitle() const;
|
|
void setTitle(const QString &title);
|
|
bool getSelected();
|
|
void setSelected(bool value);
|
|
|
|
HighlightStyle getHighlightStyle() const;
|
|
void setHighlightStyle(HighlightStyle style);
|
|
|
|
void moveAnimated(QPoint pos, bool animated = true);
|
|
|
|
QRect getDesiredRect() const;
|
|
void hideTabXChanged(bool);
|
|
|
|
protected:
|
|
void paintEvent(QPaintEvent *) override;
|
|
|
|
void mousePressEvent(QMouseEvent *event) override;
|
|
void mouseReleaseEvent(QMouseEvent *event) override;
|
|
void enterEvent(QEvent *) override;
|
|
void leaveEvent(QEvent *) override;
|
|
|
|
void dragEnterEvent(QDragEnterEvent *event) override;
|
|
|
|
void mouseMoveEvent(QMouseEvent *event) override;
|
|
|
|
private:
|
|
boost::signals2::connection _hideXConnection;
|
|
|
|
QPropertyAnimation _posAnimation;
|
|
bool _posAnimated;
|
|
QPoint _posAnimationDesired;
|
|
|
|
Notebook *_notebook;
|
|
|
|
QString _title;
|
|
|
|
bool _selected;
|
|
bool _mouseOver;
|
|
bool _mouseDown;
|
|
bool _mouseOverX;
|
|
bool _mouseDownX;
|
|
|
|
HighlightStyle _highlightStyle;
|
|
|
|
QRect getXRect()
|
|
{
|
|
return QRect(this->width() - 20, 4, 16, 16);
|
|
}
|
|
|
|
public:
|
|
void load(const boost::property_tree::ptree &tree);
|
|
boost::property_tree::ptree save();
|
|
};
|
|
|
|
} // namespace widgets
|
|
} // namespace chatterino
|
|
|
|
#endif // NOTEBOOKTAB_H
|