2022-09-05 17:29:42 +08:00
|
|
|
/*******************************************************************************
|
|
|
|
** Qt Advanced Docking System
|
|
|
|
** Copyright (C) 2017 Uwe Kindler
|
|
|
|
**
|
|
|
|
** This library is free software; you can redistribute it and/or
|
|
|
|
** modify it under the terms of the GNU Lesser General Public
|
|
|
|
** License as published by the Free Software Foundation; either
|
|
|
|
** version 2.1 of the License, or (at your option) any later version.
|
|
|
|
**
|
|
|
|
** This library is distributed in the hope that it will be useful,
|
|
|
|
** but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
** Lesser General Public License for more details.
|
|
|
|
**
|
|
|
|
** You should have received a copy of the GNU Lesser General Public
|
|
|
|
** License along with this library; If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
******************************************************************************/
|
|
|
|
|
2024-10-05 04:27:15 +08:00
|
|
|
|
2022-09-05 17:29:42 +08:00
|
|
|
//============================================================================
|
2022-11-01 20:41:36 +08:00
|
|
|
/// \file AutoHideDockContainer.cpp
|
2022-09-05 17:29:42 +08:00
|
|
|
/// \author Syarif Fakhri
|
|
|
|
/// \date 05.09.2022
|
2022-10-13 14:26:54 +08:00
|
|
|
/// \brief Implementation of CAutoHideDockContainer class
|
2022-09-05 17:29:42 +08:00
|
|
|
//============================================================================
|
|
|
|
|
|
|
|
//============================================================================
|
|
|
|
// INCLUDES
|
|
|
|
//============================================================================
|
2022-10-31 02:44:33 +08:00
|
|
|
#include "AutoHideDockContainer.h"
|
|
|
|
|
2024-10-05 04:27:15 +08:00
|
|
|
#include <QXmlStreamWriter>
|
2022-10-31 02:44:33 +08:00
|
|
|
#include <QBoxLayout>
|
|
|
|
#include <QPainter>
|
2024-10-05 04:17:42 +08:00
|
|
|
#include <QSplitter>
|
2024-10-05 04:27:15 +08:00
|
|
|
#include <QPointer>
|
|
|
|
#include <QApplication>
|
|
|
|
#include <QCursor>
|
2022-10-31 02:44:33 +08:00
|
|
|
|
2024-10-05 04:17:42 +08:00
|
|
|
#include "DockManager.h"
|
2024-10-05 04:27:15 +08:00
|
|
|
#include "DockAreaWidget.h"
|
2024-10-05 04:17:42 +08:00
|
|
|
#include "ResizeHandle.h"
|
2024-10-05 04:27:15 +08:00
|
|
|
#include "DockComponentsFactory.h"
|
|
|
|
#include "AutoHideSideBar.h"
|
|
|
|
#include "AutoHideTab.h"
|
|
|
|
|
|
|
|
|
|
|
|
#include <iostream>
|
2022-09-05 17:29:42 +08:00
|
|
|
|
|
|
|
namespace ads
|
|
|
|
{
|
2022-10-28 14:24:44 +08:00
|
|
|
static const int ResizeMargin = 30;
|
2022-10-23 22:42:14 +08:00
|
|
|
|
2022-10-24 22:21:26 +08:00
|
|
|
//============================================================================
|
2022-10-27 16:22:28 +08:00
|
|
|
bool static isHorizontalArea(SideBarLocation Area)
|
2022-10-24 22:21:26 +08:00
|
|
|
{
|
2024-10-05 04:27:15 +08:00
|
|
|
switch (Area)
|
|
|
|
{
|
|
|
|
case SideBarLocation::SideBarTop:
|
|
|
|
case SideBarLocation::SideBarBottom: return true;
|
|
|
|
case SideBarLocation::SideBarLeft:
|
|
|
|
case SideBarLocation::SideBarRight: return false;
|
|
|
|
default:
|
|
|
|
return true;
|
|
|
|
}
|
2022-10-24 22:21:26 +08:00
|
|
|
|
2024-10-05 04:27:15 +08:00
|
|
|
return true;
|
2022-10-24 22:21:26 +08:00
|
|
|
}
|
|
|
|
|
2024-10-05 04:27:15 +08:00
|
|
|
|
2022-10-24 22:21:26 +08:00
|
|
|
//============================================================================
|
2022-10-27 16:22:28 +08:00
|
|
|
Qt::Edge static edgeFromSideTabBarArea(SideBarLocation Area)
|
2022-10-24 22:21:26 +08:00
|
|
|
{
|
2024-10-05 04:27:15 +08:00
|
|
|
switch (Area)
|
|
|
|
{
|
|
|
|
case SideBarLocation::SideBarTop: return Qt::BottomEdge;
|
|
|
|
case SideBarLocation::SideBarBottom: return Qt::TopEdge;
|
|
|
|
case SideBarLocation::SideBarLeft: return Qt::RightEdge;
|
|
|
|
case SideBarLocation::SideBarRight: return Qt::LeftEdge;
|
|
|
|
default:
|
|
|
|
return Qt::LeftEdge;
|
|
|
|
}
|
2022-10-24 22:21:26 +08:00
|
|
|
|
2024-10-05 04:27:15 +08:00
|
|
|
return Qt::LeftEdge;
|
2022-10-24 22:21:26 +08:00
|
|
|
}
|
|
|
|
|
2024-10-05 04:27:15 +08:00
|
|
|
|
2022-10-24 22:21:26 +08:00
|
|
|
//============================================================================
|
2022-10-27 16:22:28 +08:00
|
|
|
int resizeHandleLayoutPosition(SideBarLocation Area)
|
2022-10-24 22:21:26 +08:00
|
|
|
{
|
2024-10-05 04:27:15 +08:00
|
|
|
switch (Area)
|
|
|
|
{
|
|
|
|
case SideBarLocation::SideBarBottom:
|
|
|
|
case SideBarLocation::SideBarRight: return 0;
|
2022-10-24 22:21:26 +08:00
|
|
|
|
2024-10-05 04:27:15 +08:00
|
|
|
case SideBarLocation::SideBarTop:
|
|
|
|
case SideBarLocation::SideBarLeft: return 1;
|
2022-11-03 22:28:01 +08:00
|
|
|
|
2024-10-05 04:27:15 +08:00
|
|
|
default:
|
|
|
|
return 0;
|
|
|
|
}
|
2022-10-24 22:21:26 +08:00
|
|
|
|
2024-10-05 04:27:15 +08:00
|
|
|
return 0;
|
2022-10-24 22:21:26 +08:00
|
|
|
}
|
|
|
|
|
2024-10-05 04:27:15 +08:00
|
|
|
|
2022-10-26 21:06:23 +08:00
|
|
|
/**
|
|
|
|
* Private data of CAutoHideDockContainer - pimpl
|
|
|
|
*/
|
2022-10-12 17:17:54 +08:00
|
|
|
struct AutoHideDockContainerPrivate
|
2022-09-05 17:29:42 +08:00
|
|
|
{
|
2022-10-12 17:17:54 +08:00
|
|
|
CAutoHideDockContainer* _this;
|
2024-10-05 04:27:15 +08:00
|
|
|
CDockAreaWidget* DockArea{nullptr};
|
|
|
|
CDockWidget* DockWidget{nullptr};
|
|
|
|
SideBarLocation SideTabBarArea = SideBarNone;
|
|
|
|
QBoxLayout* Layout = nullptr;
|
|
|
|
CResizeHandle* ResizeHandle = nullptr;
|
|
|
|
QSize Size; // creates invalid size
|
|
|
|
QPointer<CAutoHideTab> SideTab;
|
|
|
|
QSize SizeCache;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Private data constructor
|
|
|
|
*/
|
|
|
|
AutoHideDockContainerPrivate(CAutoHideDockContainer *_public);
|
|
|
|
|
2024-12-20 17:12:46 +08:00
|
|
|
/**
|
|
|
|
* Convenience function to ease access to dock manager components factory
|
|
|
|
*/
|
|
|
|
QSharedPointer<ads::CDockComponentsFactory> componentsFactory() const
|
|
|
|
{
|
|
|
|
if (!DockWidget || !DockWidget->dockManager())
|
|
|
|
{
|
|
|
|
return CDockComponentsFactory::factory();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return DockWidget->dockManager()->componentsFactory();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-10-05 04:27:15 +08:00
|
|
|
/**
|
|
|
|
* Convenience function to get a dock widget area
|
|
|
|
*/
|
|
|
|
DockWidgetArea getDockWidgetArea(SideBarLocation area)
|
|
|
|
{
|
2022-09-13 10:42:58 +08:00
|
|
|
switch (area)
|
|
|
|
{
|
2024-10-05 04:27:15 +08:00
|
|
|
case SideBarLocation::SideBarLeft: return LeftDockWidgetArea;
|
|
|
|
case SideBarLocation::SideBarRight: return RightDockWidgetArea;
|
|
|
|
case SideBarLocation::SideBarBottom: return BottomDockWidgetArea;
|
|
|
|
case SideBarLocation::SideBarTop: return TopDockWidgetArea;
|
|
|
|
default:
|
|
|
|
return LeftDockWidgetArea;
|
2022-09-13 10:42:58 +08:00
|
|
|
}
|
|
|
|
|
2024-10-05 04:27:15 +08:00
|
|
|
return LeftDockWidgetArea;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Update the resize limit of the resize handle
|
|
|
|
*/
|
|
|
|
void updateResizeHandleSizeLimitMax()
|
|
|
|
{
|
|
|
|
auto Rect = _this->dockContainer()->contentRect();
|
|
|
|
const auto maxResizeHandleSize = ResizeHandle->orientation() == Qt::Horizontal
|
|
|
|
? Rect.width() : Rect.height();
|
|
|
|
ResizeHandle->setMaxResizeSize(maxResizeHandleSize - ResizeMargin);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Convenience function to check, if this is an horizontal area
|
|
|
|
*/
|
|
|
|
bool isHorizontal() const
|
|
|
|
{
|
|
|
|
return isHorizontalArea(SideTabBarArea);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Forward this event to the dock container
|
|
|
|
*/
|
|
|
|
void forwardEventToDockContainer(QEvent* event)
|
|
|
|
{
|
|
|
|
auto DockContainer = _this->dockContainer();
|
|
|
|
if (DockContainer)
|
|
|
|
{
|
|
|
|
DockContainer->handleAutoHideWidgetEvent(event, _this);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}; // struct AutoHideDockContainerPrivate
|
2022-09-05 17:29:42 +08:00
|
|
|
|
2024-10-05 04:17:42 +08:00
|
|
|
|
|
|
|
//============================================================================
|
|
|
|
AutoHideDockContainerPrivate::AutoHideDockContainerPrivate(
|
2024-10-05 04:27:15 +08:00
|
|
|
CAutoHideDockContainer *_public) :
|
|
|
|
_this(_public)
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2022-10-24 22:21:26 +08:00
|
|
|
|
|
|
|
//============================================================================
|
2022-11-04 15:51:17 +08:00
|
|
|
CDockContainerWidget* CAutoHideDockContainer::dockContainer() const
|
2022-09-05 17:29:42 +08:00
|
|
|
{
|
2024-10-05 04:27:15 +08:00
|
|
|
return internal::findParent<CDockContainerWidget*>(this);
|
2022-09-05 17:29:42 +08:00
|
|
|
}
|
|
|
|
|
2024-10-05 04:27:15 +08:00
|
|
|
|
2022-09-05 17:29:42 +08:00
|
|
|
//============================================================================
|
2024-10-05 04:27:15 +08:00
|
|
|
CAutoHideDockContainer::CAutoHideDockContainer(CDockWidget* DockWidget, SideBarLocation area, CDockContainerWidget* parent) :
|
|
|
|
Super(parent),
|
|
|
|
d(new AutoHideDockContainerPrivate(this))
|
2022-09-05 17:29:42 +08:00
|
|
|
{
|
2024-10-05 04:27:15 +08:00
|
|
|
hide(); // auto hide dock container is initially always hidden
|
|
|
|
d->SideTabBarArea = area;
|
2024-12-20 17:12:46 +08:00
|
|
|
d->SideTab = d->componentsFactory()->createDockWidgetSideTab(nullptr);
|
2024-10-05 04:27:15 +08:00
|
|
|
connect(d->SideTab, &CAutoHideTab::pressed, this, &CAutoHideDockContainer::toggleCollapseState);
|
|
|
|
d->DockArea = new CDockAreaWidget(DockWidget->dockManager(), parent);
|
|
|
|
d->DockArea->setObjectName("autoHideDockArea");
|
|
|
|
d->DockArea->setAutoHideDockContainer(this);
|
2022-09-05 17:29:42 +08:00
|
|
|
|
2024-10-05 04:27:15 +08:00
|
|
|
setObjectName("autoHideDockContainer");
|
2022-10-24 22:21:26 +08:00
|
|
|
|
2024-10-05 04:27:15 +08:00
|
|
|
d->Layout = new QBoxLayout(isHorizontalArea(area) ? QBoxLayout::TopToBottom : QBoxLayout::LeftToRight);
|
|
|
|
d->Layout->setContentsMargins(0, 0, 0, 0);
|
|
|
|
d->Layout->setSpacing(0);
|
|
|
|
setLayout(d->Layout);
|
|
|
|
d->ResizeHandle = new CResizeHandle(edgeFromSideTabBarArea(area), this);
|
|
|
|
d->ResizeHandle->setMinResizeSize(64);
|
|
|
|
bool OpaqueResize = CDockManager::testConfigFlag(CDockManager::OpaqueSplitterResize);
|
|
|
|
d->ResizeHandle->setOpaqueResize(OpaqueResize);
|
|
|
|
d->Size = d->DockArea->size();
|
|
|
|
d->SizeCache = DockWidget->size();
|
2022-09-05 17:29:42 +08:00
|
|
|
|
2024-10-05 04:27:15 +08:00
|
|
|
addDockWidget(DockWidget);
|
|
|
|
parent->registerAutoHideWidget(this);
|
|
|
|
// The dock area should not be added to the layout before it contains the
|
|
|
|
// dock widget. If you add it to the layout before it contains the dock widget
|
|
|
|
// then you will likely see this warning for OpenGL widgets or QAxWidgets:
|
|
|
|
// setGeometry: Unable to set geometry XxY+Width+Height on QWidgetWindow/'WidgetClassWindow
|
|
|
|
d->Layout->addWidget(d->DockArea);
|
|
|
|
d->Layout->insertWidget(resizeHandleLayoutPosition(area), d->ResizeHandle);
|
2022-10-23 22:42:14 +08:00
|
|
|
}
|
|
|
|
|
2024-10-05 04:27:15 +08:00
|
|
|
|
2022-09-05 17:29:42 +08:00
|
|
|
//============================================================================
|
2022-10-12 17:17:54 +08:00
|
|
|
void CAutoHideDockContainer::updateSize()
|
2022-09-05 17:29:42 +08:00
|
|
|
{
|
2024-10-05 04:27:15 +08:00
|
|
|
auto dockContainerParent = dockContainer();
|
|
|
|
if (!dockContainerParent)
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
auto rect = dockContainerParent->contentRect();
|
|
|
|
switch (sideBarLocation())
|
|
|
|
{
|
|
|
|
case SideBarLocation::SideBarTop:
|
|
|
|
resize(rect.width(), qMin(rect.height() - ResizeMargin, d->Size.height()));
|
|
|
|
move(rect.topLeft());
|
|
|
|
break;
|
|
|
|
|
|
|
|
case SideBarLocation::SideBarLeft:
|
|
|
|
resize(qMin(d->Size.width(), rect.width() - ResizeMargin), rect.height());
|
|
|
|
move(rect.topLeft());
|
|
|
|
break;
|
|
|
|
|
|
|
|
case SideBarLocation::SideBarRight:
|
|
|
|
{
|
|
|
|
resize(qMin(d->Size.width(), rect.width() - ResizeMargin), rect.height());
|
|
|
|
QPoint p = rect.topRight();
|
|
|
|
p.rx() -= (width() - 1);
|
|
|
|
move(p);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case SideBarLocation::SideBarBottom:
|
|
|
|
{
|
|
|
|
resize(rect.width(), qMin(rect.height() - ResizeMargin, d->Size.height()));
|
|
|
|
QPoint p = rect.bottomLeft();
|
|
|
|
p.ry() -= (height() - 1);
|
|
|
|
move(p);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (orientation() == Qt::Horizontal)
|
|
|
|
{
|
|
|
|
d->SizeCache.setHeight(this->height());
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
d->SizeCache.setWidth(this->width());
|
|
|
|
}
|
2022-09-05 17:29:42 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
//============================================================================
|
2022-10-12 17:17:54 +08:00
|
|
|
CAutoHideDockContainer::~CAutoHideDockContainer()
|
2022-09-05 17:29:42 +08:00
|
|
|
{
|
2024-10-05 04:27:15 +08:00
|
|
|
ADS_PRINT("~CAutoHideDockContainer");
|
2022-09-05 17:29:42 +08:00
|
|
|
|
2024-10-05 04:27:15 +08:00
|
|
|
// Remove event filter in case there are any queued messages
|
|
|
|
qApp->removeEventFilter(this);
|
|
|
|
if (dockContainer())
|
|
|
|
{
|
|
|
|
dockContainer()->removeAutoHideWidget(this);
|
|
|
|
}
|
2022-09-05 17:29:42 +08:00
|
|
|
|
2024-10-05 04:27:15 +08:00
|
|
|
if (d->SideTab)
|
|
|
|
{
|
|
|
|
delete d->SideTab;
|
|
|
|
}
|
2022-11-01 20:34:08 +08:00
|
|
|
|
2024-10-05 04:27:15 +08:00
|
|
|
delete d;
|
2022-09-05 17:29:42 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
//============================================================================
|
2023-07-07 19:35:55 +08:00
|
|
|
CAutoHideSideBar* CAutoHideDockContainer::autoHideSideBar() const
|
2022-09-05 17:29:42 +08:00
|
|
|
{
|
2024-10-05 04:27:15 +08:00
|
|
|
if (d->SideTab)
|
|
|
|
{
|
|
|
|
return d->SideTab->sideBar();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
auto DockContainer = dockContainer();
|
|
|
|
return DockContainer ? DockContainer->autoHideSideBar(d->SideTabBarArea) : nullptr;
|
|
|
|
}
|
2022-09-05 17:29:42 +08:00
|
|
|
}
|
|
|
|
|
2024-10-05 04:27:15 +08:00
|
|
|
|
2022-10-28 19:19:38 +08:00
|
|
|
//============================================================================
|
2022-11-01 20:34:08 +08:00
|
|
|
CAutoHideTab* CAutoHideDockContainer::autoHideTab() const
|
2022-10-28 19:19:38 +08:00
|
|
|
{
|
2024-10-05 04:27:15 +08:00
|
|
|
return d->SideTab;
|
2022-10-28 19:19:38 +08:00
|
|
|
}
|
|
|
|
|
2024-10-05 04:27:15 +08:00
|
|
|
|
2022-09-05 17:29:42 +08:00
|
|
|
//============================================================================
|
2022-10-12 17:17:54 +08:00
|
|
|
CDockWidget* CAutoHideDockContainer::dockWidget() const
|
2022-09-05 17:29:42 +08:00
|
|
|
{
|
2024-10-05 04:27:15 +08:00
|
|
|
return d->DockWidget;
|
2022-09-05 17:29:42 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
//============================================================================
|
2022-10-12 17:17:54 +08:00
|
|
|
void CAutoHideDockContainer::addDockWidget(CDockWidget* DockWidget)
|
2022-09-05 17:29:42 +08:00
|
|
|
{
|
2024-10-05 04:27:15 +08:00
|
|
|
if (d->DockWidget)
|
|
|
|
{
|
|
|
|
// Remove the old dock widget at this area
|
2022-09-05 17:29:42 +08:00
|
|
|
d->DockArea->removeDockWidget(d->DockWidget);
|
2024-10-05 04:27:15 +08:00
|
|
|
}
|
2022-09-05 17:29:42 +08:00
|
|
|
|
2024-10-05 04:27:15 +08:00
|
|
|
d->DockWidget = DockWidget;
|
|
|
|
d->SideTab->setDockWidget(DockWidget);
|
2022-09-05 17:29:42 +08:00
|
|
|
CDockAreaWidget* OldDockArea = DockWidget->dockAreaWidget();
|
2022-11-09 18:15:42 +08:00
|
|
|
auto IsRestoringState = DockWidget->dockManager()->isRestoringState();
|
|
|
|
if (OldDockArea && !IsRestoringState)
|
2022-09-05 17:29:42 +08:00
|
|
|
{
|
2024-10-05 04:27:15 +08:00
|
|
|
// The initial size should be a little bit bigger than the original dock
|
|
|
|
// area size to prevent that the resize handle of this auto hid dock area
|
|
|
|
// is near of the splitter of the old dock area.
|
|
|
|
d->Size = OldDockArea->size() + QSize(16, 16);
|
2022-11-09 18:15:42 +08:00
|
|
|
OldDockArea->removeDockWidget(DockWidget);
|
|
|
|
}
|
2024-10-05 04:27:15 +08:00
|
|
|
d->DockArea->addDockWidget(DockWidget);
|
|
|
|
updateSize();
|
|
|
|
// The dock area is not visible and will not update the size when updateSize()
|
|
|
|
// is called for this auto hide container. Therefore we explicitly resize
|
|
|
|
// it here. As soon as it will become visible, it will get the right size
|
2023-07-07 17:21:54 +08:00
|
|
|
d->DockArea->resize(size());
|
2022-09-13 11:20:46 +08:00
|
|
|
}
|
|
|
|
|
2024-10-05 04:27:15 +08:00
|
|
|
|
2022-09-05 17:29:42 +08:00
|
|
|
//============================================================================
|
2022-11-01 20:34:08 +08:00
|
|
|
SideBarLocation CAutoHideDockContainer::sideBarLocation() const
|
2022-09-05 17:29:42 +08:00
|
|
|
{
|
2024-10-05 04:27:15 +08:00
|
|
|
return d->SideTabBarArea;
|
2022-09-05 17:29:42 +08:00
|
|
|
}
|
|
|
|
|
2024-10-05 04:27:15 +08:00
|
|
|
|
2022-11-15 22:08:52 +08:00
|
|
|
//============================================================================
|
|
|
|
void CAutoHideDockContainer::setSideBarLocation(SideBarLocation SideBarLocation)
|
|
|
|
{
|
2024-10-05 04:27:15 +08:00
|
|
|
if (d->SideTabBarArea == SideBarLocation)
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
2022-11-15 22:08:52 +08:00
|
|
|
|
2024-10-05 04:27:15 +08:00
|
|
|
d->SideTabBarArea = SideBarLocation;
|
|
|
|
d->Layout->removeWidget(d->ResizeHandle);
|
|
|
|
d->Layout->setDirection(isHorizontalArea(SideBarLocation) ? QBoxLayout::TopToBottom : QBoxLayout::LeftToRight);
|
|
|
|
d->Layout->insertWidget(resizeHandleLayoutPosition(SideBarLocation), d->ResizeHandle);
|
|
|
|
d->ResizeHandle->setHandlePosition(edgeFromSideTabBarArea(SideBarLocation));
|
2022-11-15 22:08:52 +08:00
|
|
|
internal::repolishStyle(this, internal::RepolishDirectChildren);
|
|
|
|
}
|
|
|
|
|
2024-10-05 04:27:15 +08:00
|
|
|
|
2022-09-05 17:29:42 +08:00
|
|
|
//============================================================================
|
2022-10-12 17:17:54 +08:00
|
|
|
CDockAreaWidget* CAutoHideDockContainer::dockAreaWidget() const
|
2022-09-05 17:29:42 +08:00
|
|
|
{
|
2024-10-05 04:27:15 +08:00
|
|
|
return d->DockArea;
|
2022-09-05 17:29:42 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
//============================================================================
|
2022-10-12 17:17:54 +08:00
|
|
|
void CAutoHideDockContainer::moveContentsToParent()
|
2022-09-05 17:29:42 +08:00
|
|
|
{
|
2024-10-05 04:27:15 +08:00
|
|
|
cleanupAndDelete();
|
|
|
|
// If we unpin the auto hide dock widget, then we insert it into the same
|
|
|
|
// location like it had as a auto hide widget. This brings the least surprise
|
|
|
|
// to the user and he does not have to search where the widget was inserted.
|
|
|
|
d->DockWidget->setDockArea(nullptr);
|
|
|
|
auto DockContainer = dockContainer();
|
|
|
|
DockContainer->addDockWidget(d->getDockWidgetArea(d->SideTabBarArea), d->DockWidget);
|
2022-09-05 17:29:42 +08:00
|
|
|
}
|
|
|
|
|
2024-10-05 04:27:15 +08:00
|
|
|
|
2022-09-05 17:29:42 +08:00
|
|
|
//============================================================================
|
2022-10-12 17:17:54 +08:00
|
|
|
void CAutoHideDockContainer::cleanupAndDelete()
|
2022-09-05 17:29:42 +08:00
|
|
|
{
|
2024-10-05 04:27:15 +08:00
|
|
|
const auto dockWidget = d->DockWidget;
|
|
|
|
if (dockWidget)
|
|
|
|
{
|
|
|
|
|
|
|
|
auto SideTab = d->SideTab;
|
2022-11-01 19:06:59 +08:00
|
|
|
SideTab->removeFromSideBar();
|
2022-11-01 20:34:08 +08:00
|
|
|
SideTab->setParent(nullptr);
|
2022-10-28 19:19:38 +08:00
|
|
|
SideTab->hide();
|
2024-10-05 04:27:15 +08:00
|
|
|
}
|
2022-09-14 12:34:13 +08:00
|
|
|
|
2024-10-05 04:27:15 +08:00
|
|
|
hide();
|
|
|
|
deleteLater();
|
2022-09-05 17:29:42 +08:00
|
|
|
}
|
|
|
|
|
2024-10-05 04:27:15 +08:00
|
|
|
|
2022-09-08 16:30:07 +08:00
|
|
|
//============================================================================
|
2022-10-12 17:17:54 +08:00
|
|
|
void CAutoHideDockContainer::saveState(QXmlStreamWriter& s)
|
2022-09-05 17:29:42 +08:00
|
|
|
{
|
2024-10-05 04:27:15 +08:00
|
|
|
s.writeStartElement("Widget");
|
|
|
|
s.writeAttribute("Name", d->DockWidget->objectName());
|
|
|
|
s.writeAttribute("Closed", QString::number(d->DockWidget->isClosed() ? 1 : 0));
|
|
|
|
s.writeAttribute("Size", QString::number(d->isHorizontal() ? d->Size.height() : d->Size.width()));
|
|
|
|
s.writeEndElement();
|
2022-09-05 17:29:42 +08:00
|
|
|
}
|
|
|
|
|
2024-10-05 04:27:15 +08:00
|
|
|
|
2022-10-12 17:32:55 +08:00
|
|
|
//============================================================================
|
2022-10-12 17:17:54 +08:00
|
|
|
void CAutoHideDockContainer::toggleView(bool Enable)
|
2022-09-09 12:18:41 +08:00
|
|
|
{
|
2024-10-05 04:27:15 +08:00
|
|
|
if (Enable)
|
|
|
|
{
|
2022-10-28 19:19:38 +08:00
|
|
|
if (d->SideTab)
|
2022-09-09 12:18:41 +08:00
|
|
|
{
|
2022-10-28 19:19:38 +08:00
|
|
|
d->SideTab->show();
|
2022-09-09 12:18:41 +08:00
|
|
|
}
|
2024-10-05 04:27:15 +08:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2022-10-28 19:19:38 +08:00
|
|
|
if (d->SideTab)
|
2022-09-09 12:18:41 +08:00
|
|
|
{
|
2022-10-28 19:19:38 +08:00
|
|
|
d->SideTab->hide();
|
2022-09-09 12:18:41 +08:00
|
|
|
}
|
|
|
|
hide();
|
2022-10-12 17:17:54 +08:00
|
|
|
qApp->removeEventFilter(this);
|
2024-10-05 04:27:15 +08:00
|
|
|
}
|
2022-09-09 12:18:41 +08:00
|
|
|
}
|
|
|
|
|
2024-10-05 04:27:15 +08:00
|
|
|
|
2022-10-12 17:32:55 +08:00
|
|
|
//============================================================================
|
2022-10-12 17:17:54 +08:00
|
|
|
void CAutoHideDockContainer::collapseView(bool Enable)
|
2022-09-09 12:18:41 +08:00
|
|
|
{
|
2024-10-05 04:27:15 +08:00
|
|
|
if (Enable)
|
|
|
|
{
|
|
|
|
hide();
|
|
|
|
qApp->removeEventFilter(this);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
updateSize();
|
|
|
|
d->updateResizeHandleSizeLimitMax();
|
|
|
|
raise();
|
|
|
|
show();
|
|
|
|
d->DockWidget->dockManager()->setDockWidgetFocused(d->DockWidget);
|
|
|
|
qApp->installEventFilter(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
ADS_PRINT("CAutoHideDockContainer::collapseView " << Enable);
|
2022-10-28 19:19:38 +08:00
|
|
|
d->SideTab->updateStyle();
|
2022-10-12 17:17:54 +08:00
|
|
|
}
|
|
|
|
|
2024-10-05 04:27:15 +08:00
|
|
|
|
2022-10-12 17:17:54 +08:00
|
|
|
//============================================================================
|
|
|
|
void CAutoHideDockContainer::toggleCollapseState()
|
|
|
|
{
|
2024-10-05 04:27:15 +08:00
|
|
|
collapseView(isVisible());
|
2022-09-09 12:18:41 +08:00
|
|
|
}
|
|
|
|
|
2024-10-05 04:27:15 +08:00
|
|
|
|
2022-10-28 22:28:23 +08:00
|
|
|
//============================================================================
|
2022-11-01 18:02:01 +08:00
|
|
|
void CAutoHideDockContainer::setSize(int Size)
|
2022-10-28 14:20:30 +08:00
|
|
|
{
|
2024-10-05 04:27:15 +08:00
|
|
|
if (d->isHorizontal())
|
|
|
|
{
|
|
|
|
d->Size.setHeight(Size);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
d->Size.setWidth(Size);
|
|
|
|
}
|
2022-11-01 18:02:01 +08:00
|
|
|
|
2024-10-05 04:27:15 +08:00
|
|
|
updateSize();
|
2022-10-28 14:20:30 +08:00
|
|
|
}
|
|
|
|
|
2024-10-05 04:27:15 +08:00
|
|
|
|
2022-11-23 04:36:43 +08:00
|
|
|
//============================================================================
|
|
|
|
/**
|
|
|
|
* Returns true if the object given in ancestor is an ancestor of the object
|
|
|
|
* given in descendant
|
|
|
|
*/
|
|
|
|
static bool objectIsAncestorOf(const QObject* descendant, const QObject* ancestor)
|
2022-11-22 16:01:16 +08:00
|
|
|
{
|
|
|
|
if (!ancestor)
|
2022-11-23 04:36:43 +08:00
|
|
|
{
|
2022-11-22 16:01:16 +08:00
|
|
|
return false;
|
2022-11-23 04:36:43 +08:00
|
|
|
}
|
|
|
|
while (descendant)
|
|
|
|
{
|
2022-11-22 16:01:16 +08:00
|
|
|
if (descendant == ancestor)
|
2022-11-23 04:36:43 +08:00
|
|
|
{
|
2022-11-22 16:01:16 +08:00
|
|
|
return true;
|
2022-11-23 04:36:43 +08:00
|
|
|
}
|
2022-11-22 16:01:16 +08:00
|
|
|
descendant = descendant->parent();
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2024-10-05 04:27:15 +08:00
|
|
|
|
2022-11-23 04:36:43 +08:00
|
|
|
//============================================================================
|
|
|
|
/**
|
|
|
|
* Returns true if the object given in ancestor is the object given in descendant
|
|
|
|
* or if it is an ancestor of the object given in descendant
|
|
|
|
*/
|
2024-10-05 04:27:15 +08:00
|
|
|
static bool isObjectOrAncestor(const QObject *descendant, const QObject *ancestor)
|
2022-11-23 04:36:43 +08:00
|
|
|
{
|
2024-10-05 04:27:15 +08:00
|
|
|
if (ancestor && (descendant == ancestor))
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return objectIsAncestorOf(descendant, ancestor);
|
|
|
|
}
|
2022-11-23 04:36:43 +08:00
|
|
|
}
|
|
|
|
|
2024-10-05 04:27:15 +08:00
|
|
|
|
2022-09-05 17:29:42 +08:00
|
|
|
//============================================================================
|
2022-10-12 17:17:54 +08:00
|
|
|
bool CAutoHideDockContainer::eventFilter(QObject* watched, QEvent* event)
|
2022-09-05 17:29:42 +08:00
|
|
|
{
|
2024-10-05 04:27:15 +08:00
|
|
|
// A switch case statement would be nicer here, but we cannot use
|
|
|
|
// internal::FloatingWidgetDragStartEvent in a switch case
|
2022-11-15 15:44:07 +08:00
|
|
|
if (event->type() == QEvent::Resize)
|
2024-10-05 04:27:15 +08:00
|
|
|
{
|
|
|
|
if (!d->ResizeHandle->isResizing())
|
|
|
|
{
|
|
|
|
updateSize();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (event->type() == QEvent::MouseButtonPress)
|
|
|
|
{
|
|
|
|
auto widget = qobject_cast<QWidget*>(watched);
|
|
|
|
// Ignore non widget events
|
|
|
|
if (!widget)
|
|
|
|
{
|
|
|
|
return Super::eventFilter(watched, event);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Now check, if the user clicked into the side tab and ignore this event,
|
|
|
|
// because the side tab click handler will call collapseView(). If we
|
|
|
|
// do not ignore this here, then we will collapse the container and the side tab
|
|
|
|
// click handler will uncollapse it
|
|
|
|
if (widget == d->SideTab.data())
|
|
|
|
{
|
|
|
|
return Super::eventFilter(watched, event);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Now we check, if the user clicked inside of this auto hide container.
|
|
|
|
// If the click is inside of this auto hide container, then we can
|
|
|
|
// ignore the event, because the auto hide overlay should not get collapsed if
|
|
|
|
// user works in it
|
|
|
|
if (isObjectOrAncestor(widget, this))
|
|
|
|
{
|
|
|
|
return Super::eventFilter(watched, event);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Ignore the mouse click if it is not inside of this container
|
|
|
|
if (!isObjectOrAncestor(widget, dockContainer()))
|
|
|
|
{
|
|
|
|
return Super::eventFilter(watched, event);
|
|
|
|
}
|
|
|
|
|
2025-01-15 15:37:43 +08:00
|
|
|
// user clicked outside of autohide container - collapse the auto hide widget
|
|
|
|
if (CDockManager::testAutoHideConfigFlag(
|
|
|
|
CDockManager::AutoHideCloseOnOutsideMouseClick))
|
|
|
|
{
|
|
|
|
collapseView(true);
|
|
|
|
}
|
2024-10-05 04:27:15 +08:00
|
|
|
}
|
2022-11-22 18:11:49 +08:00
|
|
|
else if (event->type() == internal::FloatingWidgetDragStartEvent)
|
|
|
|
{
|
2024-10-05 04:27:15 +08:00
|
|
|
// If we are dragging our own floating widget, the we do not need to
|
|
|
|
// collapse the view
|
|
|
|
auto FloatingWidget = dockContainer()->floatingWidget();
|
|
|
|
if (FloatingWidget != watched)
|
|
|
|
{
|
|
|
|
collapseView(true);
|
|
|
|
}
|
2022-11-22 18:11:49 +08:00
|
|
|
}
|
|
|
|
else if (event->type() == internal::DockedWidgetDragStartEvent)
|
2022-11-15 15:44:07 +08:00
|
|
|
{
|
2024-10-05 04:27:15 +08:00
|
|
|
collapseView(true);
|
2022-11-15 15:44:07 +08:00
|
|
|
}
|
2022-10-12 16:58:47 +08:00
|
|
|
|
2024-10-05 04:27:15 +08:00
|
|
|
return Super::eventFilter(watched, event);
|
2022-09-05 17:29:42 +08:00
|
|
|
}
|
|
|
|
|
2024-10-05 04:27:15 +08:00
|
|
|
|
2022-09-05 17:29:42 +08:00
|
|
|
//============================================================================
|
2022-10-12 17:17:54 +08:00
|
|
|
void CAutoHideDockContainer::resizeEvent(QResizeEvent* event)
|
2022-09-05 17:29:42 +08:00
|
|
|
{
|
2022-10-23 22:42:14 +08:00
|
|
|
Super::resizeEvent(event);
|
2024-10-05 04:27:15 +08:00
|
|
|
if (d->ResizeHandle->isResizing())
|
|
|
|
{
|
2022-10-28 14:20:30 +08:00
|
|
|
d->Size = this->size();
|
2024-10-05 04:27:15 +08:00
|
|
|
d->updateResizeHandleSizeLimitMax();
|
|
|
|
}
|
2022-10-23 22:42:14 +08:00
|
|
|
}
|
|
|
|
|
2024-10-05 04:27:15 +08:00
|
|
|
|
2022-11-04 15:51:17 +08:00
|
|
|
//============================================================================
|
2024-10-05 04:27:15 +08:00
|
|
|
void CAutoHideDockContainer::leaveEvent(QEvent *event)
|
2022-11-04 15:51:17 +08:00
|
|
|
{
|
2024-10-05 04:27:15 +08:00
|
|
|
// Resizing of the dock container via the resize handle in non opaque mode
|
|
|
|
// mays cause a leave event that is not really a leave event. Therefore
|
|
|
|
// we check here, if we are really outside of our rect.
|
|
|
|
auto pos = mapFromGlobal(QCursor::pos());
|
|
|
|
if (!rect().contains(pos))
|
|
|
|
{
|
|
|
|
d->forwardEventToDockContainer(event);
|
|
|
|
}
|
|
|
|
Super::leaveEvent(event);
|
2022-11-04 15:51:17 +08:00
|
|
|
}
|
|
|
|
|
2024-10-05 04:27:15 +08:00
|
|
|
|
2022-11-04 15:51:17 +08:00
|
|
|
//============================================================================
|
2022-11-04 17:45:09 +08:00
|
|
|
bool CAutoHideDockContainer::event(QEvent* event)
|
2022-11-04 15:51:17 +08:00
|
|
|
{
|
2024-10-05 04:27:15 +08:00
|
|
|
switch (event->type())
|
|
|
|
{
|
|
|
|
case QEvent::Enter:
|
|
|
|
case QEvent::Hide:
|
|
|
|
d->forwardEventToDockContainer(event);
|
|
|
|
break;
|
2022-11-04 15:51:17 +08:00
|
|
|
|
2024-10-05 04:27:15 +08:00
|
|
|
case QEvent::MouseButtonPress:
|
|
|
|
return true;
|
|
|
|
break;
|
2022-11-23 04:36:43 +08:00
|
|
|
|
2024-10-05 04:27:15 +08:00
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
2022-11-04 15:51:17 +08:00
|
|
|
|
2024-10-05 04:27:15 +08:00
|
|
|
return Super::event(event);
|
2022-11-04 15:51:17 +08:00
|
|
|
}
|
|
|
|
|
2024-10-05 04:17:42 +08:00
|
|
|
//============================================================================
|
|
|
|
void CAutoHideDockContainer::dragLeaveEvent(QDragLeaveEvent*)
|
|
|
|
{
|
2024-10-28 22:39:29 +08:00
|
|
|
if (CDockManager::testAutoHideConfigFlag(CDockManager::AutoHideOpenOnDragHover))
|
2024-10-05 04:17:42 +08:00
|
|
|
{
|
|
|
|
collapseView(true);
|
|
|
|
}
|
|
|
|
}
|
2023-07-07 19:35:55 +08:00
|
|
|
|
|
|
|
//============================================================================
|
|
|
|
Qt::Orientation CAutoHideDockContainer::orientation() const
|
|
|
|
{
|
2024-10-05 04:27:15 +08:00
|
|
|
return ads::internal::isHorizontalSideBarLocation(d->SideTabBarArea)
|
|
|
|
? Qt::Horizontal : Qt::Vertical;
|
2023-07-07 19:35:55 +08:00
|
|
|
}
|
|
|
|
|
2024-10-05 04:27:15 +08:00
|
|
|
|
2023-07-07 21:20:43 +08:00
|
|
|
//============================================================================
|
|
|
|
void CAutoHideDockContainer::resetToInitialDockWidgetSize()
|
|
|
|
{
|
2024-10-05 04:27:15 +08:00
|
|
|
if (orientation() == Qt::Horizontal)
|
|
|
|
{
|
|
|
|
setSize(d->SizeCache.height());
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
setSize(d->SizeCache.width());
|
|
|
|
}
|
2023-07-07 21:20:43 +08:00
|
|
|
}
|
|
|
|
|
2024-10-05 04:27:15 +08:00
|
|
|
|
2023-07-10 15:34:11 +08:00
|
|
|
//============================================================================
|
2024-10-05 04:27:15 +08:00
|
|
|
void CAutoHideDockContainer::moveToNewSideBarLocation(SideBarLocation NewSideBarLocation,
|
|
|
|
int TabIndex)
|
2023-07-10 15:34:11 +08:00
|
|
|
{
|
2024-10-05 04:27:15 +08:00
|
|
|
if (NewSideBarLocation == sideBarLocation() && TabIndex == this->tabIndex())
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
2023-07-10 15:34:11 +08:00
|
|
|
|
2024-10-05 04:27:15 +08:00
|
|
|
auto OldOrientation = orientation();
|
|
|
|
auto SideBar = dockContainer()->autoHideSideBar(NewSideBarLocation);
|
|
|
|
SideBar->addAutoHideWidget(this, TabIndex);
|
|
|
|
// If we move a horizontal auto hide container to a vertical position
|
|
|
|
// then we resize it to the original dock widget size, to avoid
|
|
|
|
// an extremely stretched dock widget after insertion
|
|
|
|
if (SideBar->orientation() != OldOrientation)
|
|
|
|
{
|
|
|
|
resetToInitialDockWidgetSize();
|
|
|
|
}
|
2023-07-10 15:34:11 +08:00
|
|
|
}
|
|
|
|
|
2024-10-05 04:27:15 +08:00
|
|
|
|
2023-07-12 20:01:39 +08:00
|
|
|
//============================================================================
|
|
|
|
int CAutoHideDockContainer::tabIndex() const
|
|
|
|
{
|
2024-10-05 04:27:15 +08:00
|
|
|
return d->SideTab->tabIndex();
|
2022-09-05 17:29:42 +08:00
|
|
|
}
|
|
|
|
|
2024-10-05 04:27:15 +08:00
|
|
|
}
|