1
0
mirror of https://github.com/githubuser0xFFFF/Qt-Advanced-Docking-System.git synced 2025-04-01 02:42:39 +08:00
Qt-Advanced-Docking-System/AdvancedDockingSystem/src/SectionTitleWidget.cpp

229 lines
6.3 KiB
C++
Raw Normal View History

#include "ads/SectionTitleWidget.h"
2015-12-09 19:21:38 +08:00
#include <QString>
#include <QApplication>
#include <QBoxLayout>
#include <QMouseEvent>
#include <QMimeData>
#include <QDrag>
#include <QCursor>
#include <QStyle>
2016-01-19 19:08:19 +08:00
#include <QSplitter>
2015-12-09 19:21:38 +08:00
#ifdef ADS_ANIMATIONS_ENABLED
#include <QPropertyAnimation>
#include <QParallelAnimationGroup>
#endif
#include "ads/Internal.h"
#include "ads/DropOverlay.h"
#include "ads/SectionContent.h"
#include "ads/SectionWidget.h"
#include "ads/FloatingWidget.h"
#include "ads/ContainerWidget.h"
2015-12-09 19:21:38 +08:00
ADS_NAMESPACE_BEGIN
SectionTitleWidget::SectionTitleWidget(SectionContent::RefPtr content, QWidget* parent) :
QFrame(parent),
m_Content(content),
m_TabMoving(false),
m_IsActiveTab(false)
2015-12-09 19:21:38 +08:00
{
2016-02-12 14:15:10 +08:00
QBoxLayout* l = new QBoxLayout(QBoxLayout::LeftToRight);
2016-02-15 22:18:52 +08:00
l->setContentsMargins(0, 0, 0, 0);
l->setSpacing(0);
2015-12-09 19:21:38 +08:00
l->addWidget(content->titleWidget());
setLayout(l);
}
SectionTitleWidget::~SectionTitleWidget()
{
layout()->removeWidget(m_Content->titleWidget());
}
2015-12-09 19:21:38 +08:00
bool SectionTitleWidget::isActiveTab() const
{
return m_IsActiveTab;
2015-12-09 19:21:38 +08:00
}
void SectionTitleWidget::setActiveTab(bool active)
{
if (active != m_IsActiveTab)
2015-12-09 19:21:38 +08:00
{
m_IsActiveTab = active;
2015-12-09 19:21:38 +08:00
style()->unpolish(this);
style()->polish(this);
update();
emit activeTabChanged();
}
}
void SectionTitleWidget::mousePressEvent(QMouseEvent* ev)
{
if (ev->button() == Qt::LeftButton)
{
ev->accept();
m_DragStartPosition = ev->pos();
2015-12-09 19:21:38 +08:00
return;
}
QFrame::mousePressEvent(ev);
}
void SectionTitleWidget::mouseReleaseEvent(QMouseEvent* ev)
{
SectionWidget* section = NULL;
ContainerWidget* cw = findParentContainerWidget(this);
2015-12-09 19:21:38 +08:00
// Drop contents of FloatingWidget into SectionWidget.
if (m_FloatingWidget)
2015-12-09 19:21:38 +08:00
{
2016-02-12 14:15:10 +08:00
SectionWidget* sw = cw->sectionAt(cw->mapFromGlobal(ev->globalPos()));
2015-12-09 19:21:38 +08:00
if (sw)
{
cw->_dropOverlay->setAllowedAreas(ADS_NS::AllAreas);
DropArea loc = cw->_dropOverlay->showDropOverlay(sw);
if (loc != InvalidDropArea)
2015-12-09 19:21:38 +08:00
{
InternalContentData data;
m_FloatingWidget->takeContent(data);
m_FloatingWidget->deleteLater();
m_FloatingWidget.clear();
cw->dropContent(data, sw, loc, true);
2015-12-09 19:21:38 +08:00
}
}
// Mouse is over a outer-edge drop area
else
2015-12-09 19:21:38 +08:00
{
DropArea dropArea = ADS_NS::InvalidDropArea;
if (cw->outerTopDropRect().contains(cw->mapFromGlobal(ev->globalPos())))
dropArea = ADS_NS::TopDropArea;
if (cw->outerRightDropRect().contains(cw->mapFromGlobal(ev->globalPos())))
dropArea = ADS_NS::RightDropArea;
if (cw->outerBottomDropRect().contains(cw->mapFromGlobal(ev->globalPos())))
dropArea = ADS_NS::BottomDropArea;
if (cw->outerLeftDropRect().contains(cw->mapFromGlobal(ev->globalPos())))
dropArea = ADS_NS::LeftDropArea;
if (dropArea != ADS_NS::InvalidDropArea)
{
InternalContentData data;
m_FloatingWidget->takeContent(data);
m_FloatingWidget->deleteLater();
m_FloatingWidget.clear();
cw->dropContent(data, NULL, dropArea, true);
}
2015-12-09 19:21:38 +08:00
}
}
// End of tab moving, change order now
else if (m_TabMoving
&& (section = findParentSectionWidget(this)) != NULL)
{
// Find tab under mouse
QPoint pos = ev->globalPos();
pos = section->mapFromGlobal(pos);
int fromIndex = section->indexOfContent(m_Content);
int toIndex = section->indexOfContentByTitlePos(pos, this);
qInfo() << "fromIndex: " << fromIndex << " toIndex: " << toIndex;
if (-1 == toIndex)
{
toIndex = section->indexOfContent(section->contents().last());
}
section->moveContent(fromIndex, toIndex);
}
if (!m_DragStartPosition.isNull())
emit clicked();
2015-12-09 19:21:38 +08:00
// Reset
m_DragStartPosition = QPoint();
m_TabMoving = false;
cw->_dropOverlay->hideDropOverlay();
2015-12-09 19:21:38 +08:00
QFrame::mouseReleaseEvent(ev);
}
void SectionTitleWidget::moveFloatingWidget(QMouseEvent* ev, ContainerWidget* cw)
2015-12-09 19:21:38 +08:00
{
const QPoint moveToPos = ev->globalPos() - (m_DragStartPosition + QPoint(ADS_WINDOW_FRAME_BORDER_WIDTH, ADS_WINDOW_FRAME_BORDER_WIDTH));
m_FloatingWidget->move(moveToPos);
cw->moveFloatingWidget(moveToPos);
}
2015-12-09 19:21:38 +08:00
2016-04-11 15:12:48 +08:00
void SectionTitleWidget::startFloating(QMouseEvent* ev, ContainerWidget* cw, SectionWidget* sectionwidget)
{
QPoint moveToPos = ev->globalPos() - (m_DragStartPosition + QPoint(ADS_WINDOW_FRAME_BORDER_WIDTH, ADS_WINDOW_FRAME_BORDER_WIDTH));
m_FloatingWidget = cw->startFloating(sectionwidget, m_Content->uid(), moveToPos);
}
2015-12-09 19:21:38 +08:00
void SectionTitleWidget::moveTab(QMouseEvent* ev)
{
ev->accept();
int left, top, right, bottom;
getContentsMargins(&left, &top, &right, &bottom);
QPoint moveToPos = mapToParent(ev->pos()) - m_DragStartPosition;
moveToPos.setY(0/* + top*/);
move(moveToPos);
}
void SectionTitleWidget::mouseMoveEvent(QMouseEvent* ev)
{
if (!(ev->buttons() & Qt::LeftButton))
{
QFrame::mouseMoveEvent(ev);
return;
}
ev->accept();
ContainerWidget* cw = findParentContainerWidget(this);
// Move already existing FloatingWidget
if (m_FloatingWidget)
{
moveFloatingWidget(ev, cw);
2015-12-09 19:21:38 +08:00
return;
}
SectionWidget* sectionwidget = findParentSectionWidget(this);
if (!sectionwidget)
{
QFrame::mouseMoveEvent(ev);
return;
}
2015-12-09 19:21:38 +08:00
// move tab
if (m_TabMoving)
{
moveTab(ev);
}
2016-04-11 15:12:48 +08:00
// leave if dragging is not active
if (m_DragStartPosition.isNull())
{
QFrame::mouseMoveEvent(ev);
return;
}
2016-04-11 15:12:48 +08:00
// Begin to drag/float the SectionContent.
if (!sectionwidget->titleAreaGeometry().contains(sectionwidget->mapFromGlobal(ev->globalPos())))
{
startFloating(ev, cw, sectionwidget);
2016-04-11 15:12:48 +08:00
return;
}
// Begin to drag title inside the title area to switch its position inside the SectionWidget.
else if ((ev->pos() - m_DragStartPosition).manhattanLength() >= QApplication::startDragDistance() // Wait a few pixels before start moving
&& sectionwidget->titleAreaGeometry().contains(sectionwidget->mapFromGlobal(ev->globalPos())))
{
m_TabMoving = true;
2016-04-11 15:12:48 +08:00
raise(); // Raise current title-widget above other tabs
return;
}
2015-12-09 19:21:38 +08:00
QFrame::mouseMoveEvent(ev);
}
ADS_NAMESPACE_END