mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
369 lines
11 KiB
C++
369 lines
11 KiB
C++
#include "widgets/helper/notebooktab.hpp"
|
|
#include "common.hpp"
|
|
#include "debug/log.hpp"
|
|
#include "singletons/settingsmanager.hpp"
|
|
#include "singletons/thememanager.hpp"
|
|
#include "util/helpers.hpp"
|
|
#include "widgets/notebook.hpp"
|
|
#include "widgets/settingsdialog.hpp"
|
|
#include "widgets/textinputdialog.hpp"
|
|
|
|
#include <QApplication>
|
|
#include <QDebug>
|
|
#include <QLinearGradient>
|
|
#include <QPainter>
|
|
#include <boost/bind.hpp>
|
|
|
|
namespace chatterino {
|
|
namespace widgets {
|
|
|
|
NotebookTab::NotebookTab(Notebook *_notebook)
|
|
: BaseWidget(_notebook)
|
|
, positionChangedAnimation(this, "pos")
|
|
, notebook(_notebook)
|
|
, menu(this)
|
|
{
|
|
this->setAcceptDrops(true);
|
|
|
|
this->positionChangedAnimation.setEasingCurve(QEasingCurve(QEasingCurve::InCubic));
|
|
|
|
singletons::SettingManager::getInstance().hideTabX.connect(
|
|
boost::bind(&NotebookTab::hideTabXChanged, this, _1), this->managedConnections);
|
|
|
|
this->setMouseTracking(true);
|
|
|
|
this->menu.addAction("Rename", [this]() {
|
|
TextInputDialog d(this);
|
|
|
|
d.setWindowTitle("Change tab title (Leave empty for default behaviour)");
|
|
if (this->useDefaultTitle) {
|
|
d.setText("");
|
|
} else {
|
|
d.setText(this->getTitle());
|
|
d.highlightText();
|
|
}
|
|
|
|
if (d.exec() == QDialog::Accepted) {
|
|
QString newTitle = d.getText();
|
|
if (newTitle.isEmpty()) {
|
|
this->useDefaultTitle = true;
|
|
this->page->refreshTitle();
|
|
} else {
|
|
this->useDefaultTitle = false;
|
|
this->setTitle(newTitle);
|
|
}
|
|
}
|
|
});
|
|
|
|
QAction *enableHighlightsOnNewMessageAction =
|
|
new QAction("Enable highlights on new message", &this->menu);
|
|
enableHighlightsOnNewMessageAction->setCheckable(true);
|
|
|
|
this->menu.addAction("Close", [=]() { this->notebook->removePage(this->page); });
|
|
|
|
this->menu.addAction(enableHighlightsOnNewMessageAction);
|
|
|
|
QObject::connect(enableHighlightsOnNewMessageAction, &QAction::toggled, [](bool newValue) {
|
|
debug::Log("New value is {}", newValue); //
|
|
});
|
|
}
|
|
|
|
void NotebookTab::themeRefreshEvent()
|
|
{
|
|
this->update();
|
|
}
|
|
|
|
void NotebookTab::updateSize()
|
|
{
|
|
float scale = getScale();
|
|
|
|
int width;
|
|
|
|
if (singletons::SettingManager::getInstance().hideTabX) {
|
|
width = (int)((fontMetrics().width(this->title) + 16 /*+ 16*/) * scale);
|
|
} else {
|
|
width = (int)((fontMetrics().width(this->title) + 8 + 24 /*+ 16*/) * scale);
|
|
}
|
|
|
|
this->resize(std::min((int)(150 * scale), width), (int)(24 * scale));
|
|
|
|
if (this->parent() != nullptr) {
|
|
(static_cast<Notebook *>(this->parent()))->performLayout(true);
|
|
}
|
|
}
|
|
|
|
const QString &NotebookTab::getTitle() const
|
|
{
|
|
return this->title;
|
|
}
|
|
|
|
void NotebookTab::setTitle(const QString &newTitle)
|
|
{
|
|
if (this->title != newTitle) {
|
|
this->title = newTitle;
|
|
this->updateSize();
|
|
this->update();
|
|
}
|
|
}
|
|
|
|
bool NotebookTab::isSelected() const
|
|
{
|
|
return this->selected;
|
|
}
|
|
|
|
void NotebookTab::setSelected(bool value)
|
|
{
|
|
this->selected = value;
|
|
|
|
this->highlightState = HighlightState::None;
|
|
|
|
this->update();
|
|
}
|
|
|
|
void NotebookTab::setHighlightState(HighlightState newHighlightStyle)
|
|
{
|
|
if (this->isSelected()) {
|
|
return;
|
|
}
|
|
|
|
if (this->highlightState != HighlightState::Highlighted) {
|
|
this->highlightState = newHighlightStyle;
|
|
|
|
this->update();
|
|
}
|
|
}
|
|
|
|
QRect NotebookTab::getDesiredRect() const
|
|
{
|
|
return QRect(positionAnimationDesiredPoint, size());
|
|
}
|
|
|
|
void NotebookTab::hideTabXChanged(bool)
|
|
{
|
|
this->updateSize();
|
|
this->update();
|
|
}
|
|
|
|
void NotebookTab::moveAnimated(QPoint pos, bool animated)
|
|
{
|
|
this->positionAnimationDesiredPoint = pos;
|
|
|
|
QWidget *w = this->window();
|
|
|
|
if ((w != nullptr && !w->isVisible()) || !animated || !positionChangedAnimationRunning) {
|
|
this->move(pos);
|
|
|
|
this->positionChangedAnimationRunning = true;
|
|
return;
|
|
}
|
|
|
|
if (this->positionChangedAnimation.endValue() == pos) {
|
|
return;
|
|
}
|
|
|
|
this->positionChangedAnimation.stop();
|
|
this->positionChangedAnimation.setDuration(75);
|
|
this->positionChangedAnimation.setStartValue(this->pos());
|
|
this->positionChangedAnimation.setEndValue(pos);
|
|
this->positionChangedAnimation.start();
|
|
}
|
|
|
|
void NotebookTab::paintEvent(QPaintEvent *)
|
|
{
|
|
singletons::SettingManager &settingManager = singletons::SettingManager::getInstance();
|
|
QPainter painter(this);
|
|
float scale = this->getScale();
|
|
|
|
int height = (int)(scale * 24);
|
|
// int fullHeight = (int)(scale * 48);
|
|
|
|
// select the right tab colors
|
|
singletons::ThemeManager::TabColors colors;
|
|
singletons::ThemeManager::TabColors regular = this->themeManager.tabs.regular;
|
|
|
|
if (this->selected) {
|
|
colors = this->themeManager.tabs.selected;
|
|
} else if (this->highlightState == HighlightState::Highlighted) {
|
|
colors = this->themeManager.tabs.highlighted;
|
|
} else if (this->highlightState == HighlightState::NewMessage) {
|
|
colors = this->themeManager.tabs.newMessage;
|
|
} else {
|
|
colors = this->themeManager.tabs.regular;
|
|
}
|
|
|
|
bool windowFocused = this->window() == QApplication::activeWindow();
|
|
// || SettingsDialog::getHandle() == QApplication::activeWindow();
|
|
|
|
QBrush tabBackground = this->mouseOver ? colors.backgrounds.hover
|
|
: (windowFocused ? colors.backgrounds.regular
|
|
: colors.backgrounds.unfocused);
|
|
|
|
if (true) {
|
|
painter.fillRect(rect(), this->mouseOver ? regular.backgrounds.hover
|
|
: (windowFocused ? regular.backgrounds.regular
|
|
: regular.backgrounds.unfocused));
|
|
|
|
// fill the tab background
|
|
painter.fillRect(rect(), tabBackground);
|
|
|
|
// draw border
|
|
// painter.setPen(QPen("#ccc"));
|
|
// QPainterPath path(QPointF(0, height));
|
|
// path.lineTo(0, 0);
|
|
// path.lineTo(this->width() - 1, 0);
|
|
// path.lineTo(this->width() - 1, this->height() - 1);
|
|
// path.lineTo(0, this->height() - 1);
|
|
// painter.drawPath(path);
|
|
} else {
|
|
// QPainterPath path(QPointF(0, height));
|
|
// path.lineTo(8 * scale, 0);
|
|
// path.lineTo(this->width() - 8 * scale, 0);
|
|
// path.lineTo(this->width(), height);
|
|
// painter.fillPath(path, this->mouseOver ? regular.backgrounds.hover
|
|
// : (windowFocused ?
|
|
// regular.backgrounds.regular
|
|
// :
|
|
// regular.backgrounds.unfocused));
|
|
|
|
// // fill the tab background
|
|
// painter.fillPath(path, tabBackground);
|
|
// painter.setPen(QColor("#FFF"));
|
|
// painter.setRenderHint(QPainter::Antialiasing);
|
|
// painter.drawPath(path);
|
|
// // painter.setBrush(QColor("#000"));
|
|
|
|
// QLinearGradient gradient(0, height, 0, fullHeight);
|
|
// gradient.setColorAt(0, tabBackground.color());
|
|
// gradient.setColorAt(1, "#fff");
|
|
|
|
// QBrush brush(gradient);
|
|
// painter.fillRect(0, height, this->width(), fullHeight - height,
|
|
// brush);
|
|
}
|
|
|
|
// set the pen color
|
|
painter.setPen(colors.text);
|
|
|
|
// set area for text
|
|
int rectW = (settingManager.hideTabX ? 0 : static_cast<int>(16) * scale);
|
|
QRect rect(0, 0, this->width() - rectW, height);
|
|
|
|
// draw text
|
|
if (true) { // legacy
|
|
// painter.drawText(rect, this->getTitle(), QTextOption(Qt::AlignCenter));
|
|
int offset = (int)(scale * 8);
|
|
QRect textRect(offset, 0, this->width() - offset - offset, height);
|
|
|
|
QTextOption option(Qt::AlignLeft | Qt::AlignVCenter);
|
|
option.setWrapMode(QTextOption::NoWrap);
|
|
painter.drawText(textRect, this->getTitle(), option);
|
|
} else {
|
|
// QTextOption option(Qt::AlignLeft | Qt::AlignVCenter);
|
|
// option.setWrapMode(QTextOption::NoWrap);
|
|
// int offset = (int)(scale * 16);
|
|
// QRect textRect(offset, 0, this->width() - offset - offset, height);
|
|
// painter.drawText(textRect, this->getTitle(), option);
|
|
}
|
|
|
|
// draw close x
|
|
if (!settingManager.hideTabX && (mouseOver || selected)) {
|
|
QRect xRect = this->getXRect();
|
|
if (mouseOverX) {
|
|
painter.fillRect(xRect, QColor(0, 0, 0, 64));
|
|
|
|
if (mouseDownX) {
|
|
painter.fillRect(xRect, QColor(0, 0, 0, 64));
|
|
}
|
|
}
|
|
|
|
int a = static_cast<int>(scale * 4);
|
|
|
|
painter.drawLine(xRect.topLeft() + QPoint(a, a), xRect.bottomRight() + QPoint(-a, -a));
|
|
painter.drawLine(xRect.topRight() + QPoint(-a, a), xRect.bottomLeft() + QPoint(a, -a));
|
|
}
|
|
} // namespace widgets
|
|
|
|
void NotebookTab::mousePressEvent(QMouseEvent *event)
|
|
{
|
|
this->mouseDown = true;
|
|
this->mouseDownX = this->getXRect().contains(event->pos());
|
|
|
|
this->update();
|
|
|
|
this->notebook->select(page);
|
|
|
|
switch (event->button()) {
|
|
case Qt::RightButton: {
|
|
this->menu.popup(event->globalPos());
|
|
} break;
|
|
}
|
|
}
|
|
|
|
void NotebookTab::mouseReleaseEvent(QMouseEvent *event)
|
|
{
|
|
this->mouseDown = false;
|
|
|
|
if (event->button() == Qt::MiddleButton) {
|
|
if (this->rect().contains(event->pos())) {
|
|
this->notebook->removePage(this->page);
|
|
}
|
|
} else {
|
|
if (!singletons::SettingManager::getInstance().hideTabX && this->mouseDownX &&
|
|
this->getXRect().contains(event->pos())) {
|
|
this->mouseDownX = false;
|
|
|
|
this->notebook->removePage(this->page);
|
|
} else {
|
|
this->update();
|
|
}
|
|
}
|
|
}
|
|
|
|
void NotebookTab::enterEvent(QEvent *)
|
|
{
|
|
this->mouseOver = true;
|
|
|
|
this->update();
|
|
}
|
|
|
|
void NotebookTab::leaveEvent(QEvent *)
|
|
{
|
|
this->mouseOverX = false;
|
|
this->mouseOver = false;
|
|
|
|
this->update();
|
|
}
|
|
|
|
void NotebookTab::dragEnterEvent(QDragEnterEvent *)
|
|
{
|
|
this->notebook->select(this->page);
|
|
}
|
|
|
|
void NotebookTab::mouseMoveEvent(QMouseEvent *event)
|
|
{
|
|
if (!singletons::SettingManager::getInstance().hideTabX) {
|
|
bool overX = this->getXRect().contains(event->pos());
|
|
|
|
if (overX != this->mouseOverX) {
|
|
// Over X state has been changed (we either left or entered it;
|
|
this->mouseOverX = overX;
|
|
|
|
this->update();
|
|
}
|
|
}
|
|
|
|
QPoint relPoint = this->mapToParent(event->pos());
|
|
|
|
if (this->mouseDown && !this->getDesiredRect().contains(relPoint)) {
|
|
int index;
|
|
SplitContainer *clickedPage = notebook->tabAt(relPoint, index, this->width());
|
|
|
|
if (clickedPage != nullptr && clickedPage != this->page) {
|
|
this->notebook->rearrangePage(this->page, index);
|
|
}
|
|
}
|
|
}
|
|
|
|
} // namespace widgets
|
|
} // namespace chatterino
|