mirror-chatterino2/notebookpage.cpp

220 lines
5.4 KiB
C++
Raw Normal View History

2017-01-11 18:52:09 +01:00
#include "notebookpage.h"
2017-01-01 02:30:42 +01:00
#include "QHBoxLayout"
#include "QMimeData"
2017-01-11 18:52:09 +01:00
#include "QPainter"
#include "QVBoxLayout"
#include "QWidget"
2017-01-01 02:30:42 +01:00
#include "chatwidget.h"
2017-01-11 18:52:09 +01:00
#include "colorscheme.h"
#include "notebooktab.h"
2016-12-29 17:31:07 +01:00
2017-01-01 02:30:42 +01:00
bool NotebookPage::isDraggingSplit = false;
2017-01-11 18:52:09 +01:00
ChatWidget *NotebookPage::draggingSplit = NULL;
2017-01-01 02:30:42 +01:00
std::pair<int, int> NotebookPage::dropPosition = std::pair<int, int>(-1, -1);
NotebookPage::NotebookPage(QWidget *parent, NotebookTab *tab)
2017-01-11 18:52:09 +01:00
: QWidget(parent)
, parentbox(this)
, preview(this)
2016-12-29 17:31:07 +01:00
{
2016-12-30 12:20:26 +01:00
this->tab = tab;
2016-12-30 18:00:25 +01:00
tab->page = this;
2017-01-01 02:30:42 +01:00
setHidden(true);
setAcceptDrops(true);
parentbox.addSpacing(2);
parentbox.addLayout(&hbox);
parentbox.setMargin(0);
hbox.setSpacing(1);
hbox.setMargin(0);
}
2017-01-11 18:52:09 +01:00
std::pair<int, int>
NotebookPage::removeFromLayout(ChatWidget *widget)
2017-01-01 02:30:42 +01:00
{
2017-01-11 18:52:09 +01:00
for (int i = 0; i < hbox.count(); ++i) {
auto vbox = static_cast<QVBoxLayout *>(hbox.itemAt(i));
2017-01-01 02:30:42 +01:00
2017-01-11 18:52:09 +01:00
for (int j = 0; j < vbox->count(); ++j) {
if (vbox->itemAt(j)->widget() != widget)
continue;
2017-01-01 02:30:42 +01:00
widget->setParent(NULL);
bool isLastItem = vbox->count() == 0;
2017-01-11 18:52:09 +01:00
if (isLastItem) {
2017-01-01 02:30:42 +01:00
hbox.removeItem(vbox);
delete vbox;
}
2017-01-11 18:52:09 +01:00
return std::pair<int, int>(i, isLastItem ? -1 : j);
;
2017-01-01 02:30:42 +01:00
}
}
return std::pair<int, int>(-1, -1);
}
2017-01-11 18:52:09 +01:00
void
NotebookPage::addToLayout(
ChatWidget *widget,
std::pair<int, int> position = std::pair<int, int>(-1, -1))
2017-01-01 02:30:42 +01:00
{
// add vbox at the end
2017-01-11 18:52:09 +01:00
if (position.first < 0 || position.first >= hbox.count()) {
2017-01-01 02:30:42 +01:00
auto vbox = new QVBoxLayout();
vbox->addWidget(widget);
hbox.addLayout(vbox);
return;
}
// insert vbox
2017-01-11 18:52:09 +01:00
if (position.second == -1) {
2017-01-01 02:30:42 +01:00
auto vbox = new QVBoxLayout();
vbox->addWidget(widget);
hbox.insertLayout(position.first, vbox);
return;
}
// add to existing vbox
2017-01-11 18:52:09 +01:00
auto vbox = static_cast<QVBoxLayout *>(hbox.itemAt(position.first));
2017-01-01 02:30:42 +01:00
2017-01-11 18:52:09 +01:00
vbox->insertWidget(std::max(0, std::min(vbox->count(), position.second)),
widget);
2017-01-01 02:30:42 +01:00
}
2017-01-11 18:52:09 +01:00
void
NotebookPage::enterEvent(QEvent *)
{
2017-01-11 18:52:09 +01:00
if (hbox.count() == 0) {
setCursor(QCursor(Qt::PointingHandCursor));
2017-01-11 18:52:09 +01:00
} else {
setCursor(QCursor(Qt::ArrowCursor));
}
}
2017-01-11 18:52:09 +01:00
void
NotebookPage::leaveEvent(QEvent *)
{
}
2017-01-11 18:52:09 +01:00
void
NotebookPage::mouseReleaseEvent(QMouseEvent *event)
{
2017-01-11 18:52:09 +01:00
if (hbox.count() == 0 && event->button() == Qt::LeftButton) {
addToLayout(new ChatWidget(), std::pair<int, int>(-1, -1));
setCursor(QCursor(Qt::ArrowCursor));
}
}
2017-01-11 18:52:09 +01:00
void
NotebookPage::dragEnterEvent(QDragEnterEvent *event)
2017-01-01 02:30:42 +01:00
{
2017-01-11 18:52:09 +01:00
if (!event->mimeData()->hasFormat("chatterino/split"))
return;
2017-01-01 02:30:42 +01:00
2017-01-11 18:52:09 +01:00
if (isDraggingSplit) {
2017-01-01 02:30:42 +01:00
dropRegions.clear();
2017-01-11 18:52:09 +01:00
if (hbox.count() == 0) {
dropRegions.push_back(
DropRegion(rect(), std::pair<int, int>(-1, -1)));
} else {
for (int i = 0; i < hbox.count() + 1; ++i) {
dropRegions.push_back(
DropRegion(QRect(((i * 4 - 1) * width() / hbox.count()) / 4,
0, width() / hbox.count() / 2, height()),
std::pair<int, int>(i, -1)));
}
2017-01-01 02:30:42 +01:00
2017-01-11 18:52:09 +01:00
for (int i = 0; i < hbox.count(); ++i) {
auto vbox = static_cast<QVBoxLayout *>(hbox.itemAt(i));
2017-01-11 18:52:09 +01:00
for (int j = 0; j < vbox->count() + 1; ++j) {
dropRegions.push_back(DropRegion(
QRect(i * width() / hbox.count(),
((j * 2 - 1) * height() / vbox->count()) / 2,
width() / hbox.count(), height() / vbox->count()),
std::pair<int, int>(i, j)));
}
2017-01-01 02:30:42 +01:00
}
}
setPreviewRect(event->pos());
event->acceptProposedAction();
}
}
2017-01-11 18:52:09 +01:00
void
NotebookPage::dragMoveEvent(QDragMoveEvent *event)
2017-01-01 02:30:42 +01:00
{
setPreviewRect(event->pos());
}
2017-01-11 18:52:09 +01:00
void
NotebookPage::setPreviewRect(QPoint mousePos)
2017-01-01 02:30:42 +01:00
{
2017-01-11 18:52:09 +01:00
for (DropRegion region : dropRegions) {
if (region.rect.contains(mousePos)) {
2017-01-01 02:30:42 +01:00
preview.move(region.rect.x(), region.rect.y());
preview.resize(region.rect.width(), region.rect.height());
preview.show();
preview.raise();
dropPosition = region.position;
return;
2017-01-11 18:52:09 +01:00
} else {
2017-01-01 02:30:42 +01:00
preview.hide();
}
}
}
2017-01-11 18:52:09 +01:00
void
NotebookPage::dragLeaveEvent(QDragLeaveEvent *event)
2017-01-01 02:30:42 +01:00
{
preview.hide();
2017-01-01 02:30:42 +01:00
}
2017-01-11 18:52:09 +01:00
void
NotebookPage::dropEvent(QDropEvent *event)
2017-01-01 02:30:42 +01:00
{
2017-01-11 18:52:09 +01:00
if (isDraggingSplit) {
2017-01-01 02:30:42 +01:00
event->acceptProposedAction();
NotebookPage::draggingSplit->setParent(this);
addToLayout(NotebookPage::draggingSplit, dropPosition);
}
preview.hide();
2016-12-30 18:00:25 +01:00
}
2017-01-11 18:52:09 +01:00
void
NotebookPage::paintEvent(QPaintEvent *)
2016-12-30 18:00:25 +01:00
{
QPainter painter(this);
2017-01-11 18:52:09 +01:00
if (hbox.count() == 0) {
2017-01-06 23:28:48 +01:00
painter.fillRect(rect(), ColorScheme::instance().ChatBackground);
2017-01-01 02:30:42 +01:00
2017-01-11 18:52:09 +01:00
painter.fillRect(0, 0, width(), 2,
ColorScheme::instance().TabSelectedBackground);
2017-01-01 02:30:42 +01:00
2017-01-06 23:28:48 +01:00
painter.setPen(ColorScheme::instance().Text);
painter.drawText(rect(), "Add Chat", QTextOption(Qt::AlignCenter));
2017-01-11 18:52:09 +01:00
} else {
2017-01-06 23:28:48 +01:00
painter.fillRect(rect(), ColorScheme::instance().TabSelectedBackground);
2016-12-30 18:00:25 +01:00
2017-01-11 18:52:09 +01:00
painter.fillRect(0, 0, width(), 2,
ColorScheme::instance().TabSelectedBackground);
}
2016-12-29 17:31:07 +01:00
}