2017-06-07 10:09:24 +02:00
|
|
|
#pragma once
|
2016-12-29 17:31:07 +01:00
|
|
|
|
2017-08-13 16:10:53 +02:00
|
|
|
#include "widgets/basewidget.hpp"
|
|
|
|
|
2017-08-13 16:52:16 +02:00
|
|
|
#include <QMenu>
|
2017-01-22 12:46:35 +01:00
|
|
|
#include <QPropertyAnimation>
|
2017-01-28 22:35:23 +01:00
|
|
|
#include <boost/property_tree/ptree.hpp>
|
2017-12-17 03:37:46 +01:00
|
|
|
#include <pajlada/signals/connection.hpp>
|
2016-12-29 17:31:07 +01:00
|
|
|
|
2017-01-18 21:30:23 +01:00
|
|
|
namespace chatterino {
|
2017-06-26 16:41:20 +02:00
|
|
|
|
|
|
|
class ColorScheme;
|
|
|
|
|
2017-01-18 21:30:23 +01:00
|
|
|
namespace widgets {
|
|
|
|
|
2016-12-29 18:02:13 +01:00
|
|
|
class Notebook;
|
2017-11-12 17:21:50 +01:00
|
|
|
class SplitContainer;
|
2016-12-29 18:02:13 +01:00
|
|
|
|
2017-08-13 16:10:53 +02:00
|
|
|
class NotebookTab : 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
|
|
|
|
|
|
|
public:
|
2017-04-12 17:46:44 +02:00
|
|
|
enum HighlightStyle { HighlightNone, HighlightHighlighted, HighlightNewMessage };
|
2017-01-15 16:38:30 +01:00
|
|
|
|
2017-04-12 17:46:44 +02:00
|
|
|
explicit NotebookTab(Notebook *_notebook);
|
2016-12-30 12:20:26 +01:00
|
|
|
|
2016-12-30 18:00:25 +01:00
|
|
|
void calcSize();
|
|
|
|
|
2017-11-12 17:21:50 +01:00
|
|
|
SplitContainer *page;
|
2016-12-30 18:00:25 +01:00
|
|
|
|
2017-04-12 17:46:44 +02:00
|
|
|
const QString &getTitle() const;
|
2017-08-13 16:07:00 +02:00
|
|
|
void setTitle(const QString &newTitle);
|
|
|
|
bool isSelected() const;
|
2017-04-12 17:46:44 +02:00
|
|
|
void setSelected(bool value);
|
2017-01-01 02:30:42 +01:00
|
|
|
|
2017-04-12 17:46:44 +02:00
|
|
|
HighlightStyle getHighlightStyle() const;
|
|
|
|
void setHighlightStyle(HighlightStyle style);
|
2017-01-01 02:30:42 +01:00
|
|
|
|
2017-01-26 05:26:21 +01:00
|
|
|
void moveAnimated(QPoint pos, bool animated = true);
|
|
|
|
|
2017-04-12 17:46:44 +02:00
|
|
|
QRect getDesiredRect() const;
|
|
|
|
void hideTabXChanged(bool);
|
2017-02-02 02:46:33 +01:00
|
|
|
|
2016-12-30 12:20:26 +01:00
|
|
|
protected:
|
2017-01-22 05:58:23 +01:00
|
|
|
void paintEvent(QPaintEvent *) override;
|
2016-12-30 12:20:26 +01:00
|
|
|
|
2017-01-22 05:58:23 +01:00
|
|
|
void mousePressEvent(QMouseEvent *event) override;
|
|
|
|
void mouseReleaseEvent(QMouseEvent *event) override;
|
|
|
|
void enterEvent(QEvent *) override;
|
|
|
|
void leaveEvent(QEvent *) override;
|
2016-12-30 12:20:26 +01:00
|
|
|
|
2017-01-22 05:58:23 +01:00
|
|
|
void dragEnterEvent(QDragEnterEvent *event) override;
|
|
|
|
|
|
|
|
void mouseMoveEvent(QMouseEvent *event) override;
|
2017-01-01 02:30:42 +01:00
|
|
|
|
2016-12-29 17:31:07 +01:00
|
|
|
private:
|
2017-12-17 03:37:46 +01:00
|
|
|
std::vector<pajlada::Signals::ScopedConnection> managedConnections;
|
2017-02-02 02:46:33 +01:00
|
|
|
|
2017-08-13 16:07:00 +02:00
|
|
|
QPropertyAnimation positionChangedAnimation;
|
|
|
|
bool positionChangedAnimationRunning = false;
|
|
|
|
QPoint positionAnimationDesiredPoint;
|
2017-01-22 12:46:35 +01:00
|
|
|
|
2017-08-13 16:07:00 +02:00
|
|
|
Notebook *notebook;
|
2017-01-15 16:38:30 +01:00
|
|
|
|
2017-08-13 16:52:16 +02:00
|
|
|
QString title;
|
2016-12-30 12:20:26 +01:00
|
|
|
|
2017-08-13 16:52:16 +02:00
|
|
|
public:
|
|
|
|
bool useDefaultBehaviour = true;
|
|
|
|
|
|
|
|
private:
|
2017-08-13 16:07:00 +02:00
|
|
|
bool selected = false;
|
|
|
|
bool mouseOver = false;
|
|
|
|
bool mouseDown = false;
|
|
|
|
bool mouseOverX = false;
|
|
|
|
bool mouseDownX = false;
|
2017-01-22 05:58:23 +01:00
|
|
|
|
2017-08-13 16:07:00 +02:00
|
|
|
HighlightStyle highlightStyle = HighlightStyle::HighlightNone;
|
2017-01-22 05:58:23 +01:00
|
|
|
|
2017-08-13 16:52:16 +02:00
|
|
|
QMenu menu;
|
|
|
|
|
2017-04-12 17:46:44 +02:00
|
|
|
QRect getXRect()
|
2017-01-22 05:58:23 +01:00
|
|
|
{
|
2017-09-22 00:50:43 +02:00
|
|
|
float scale = this->getDpiMultiplier();
|
|
|
|
return QRect(this->width() - static_cast<int>(20 * scale), static_cast<int>(4 * scale),
|
|
|
|
static_cast<int>(16 * scale), static_cast<int>(16 * scale));
|
2017-01-22 05:58:23 +01:00
|
|
|
}
|
|
|
|
|
2017-01-28 22:35:23 +01:00
|
|
|
public:
|
|
|
|
void load(const boost::property_tree::ptree &tree);
|
|
|
|
boost::property_tree::ptree 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
|