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

Implemented new dock overlay icons for sidebar areas

This commit is contained in:
Uwe Kindler 2023-06-27 20:43:44 +02:00
parent f71c8ffe5d
commit 047ea3c494

View File

@ -48,6 +48,7 @@
namespace ads namespace ads
{ {
static const int AutoHideAreaWidth = 32; static const int AutoHideAreaWidth = 32;
static const int AutoHideAreaMouseZone = 8;
/** /**
* Private data class of CDockOverlay * Private data class of CDockOverlay
@ -73,6 +74,11 @@ struct DockOverlayPrivate
* of the sidebar * of the sidebar
*/ */
int sideBarOverlaySize(SideBarLocation sideBarLocation); int sideBarOverlaySize(SideBarLocation sideBarLocation);
/**
* The area where the mouse is considered in the sidebar
*/
int sideBarMouseZone(SideBarLocation sideBarLocation);
}; };
/** /**
@ -406,6 +412,22 @@ int DockOverlayPrivate::sideBarOverlaySize(SideBarLocation sideBarLocation)
} }
//============================================================================
int DockOverlayPrivate::sideBarMouseZone(SideBarLocation sideBarLocation)
{
auto Container = qobject_cast<CDockContainerWidget*>(TargetWidget.data());
auto SideBar = Container->sideTabBar(sideBarLocation);
if (!SideBar || !SideBar->isVisibleTo(Container))
{
return AutoHideAreaMouseZone;
}
else
{
return (SideBar->orientation() == Qt::Horizontal) ? SideBar->height() : SideBar->width();
}
}
//============================================================================ //============================================================================
CDockOverlay::CDockOverlay(QWidget* parent, eMode Mode) : CDockOverlay::CDockOverlay(QWidget* parent, eMode Mode) :
QFrame(parent), QFrame(parent),
@ -469,28 +491,28 @@ DockWidgetArea CDockOverlay::dropAreaUnderCursor() const
auto DockArea = qobject_cast<CDockAreaWidget*>(d->TargetWidget.data()); auto DockArea = qobject_cast<CDockAreaWidget*>(d->TargetWidget.data());
if (!DockArea) if (!DockArea)
{ {
/*auto Rect = rect(); auto Rect = rect();
const QPoint pos = mapFromGlobal(QCursor::pos()); const QPoint pos = mapFromGlobal(QCursor::pos());
if (pos.x() < d->sideBarOverlaySize(SideBarLeft)) if (pos.x() < d->sideBarMouseZone(SideBarLeft))
{ {
return LeftAutoHideArea; return LeftAutoHideArea;
} }
else if (pos.x() > (Rect.width() - d->sideBarOverlaySize(SideBarRight))) else if (pos.x() > (Rect.width() - d->sideBarMouseZone(SideBarRight)))
{ {
return RightAutoHideArea; return RightAutoHideArea;
} }
else if (pos.y() < d->sideBarOverlaySize(SideBarTop)) else if (pos.y() < d->sideBarMouseZone(SideBarTop))
{ {
return TopAutoHideArea; return TopAutoHideArea;
} }
else if (pos.y() > (Rect.height() - d->sideBarOverlaySize(SideBarBottom))) else if (pos.y() > (Rect.height() - d->sideBarMouseZone(SideBarBottom)))
{ {
return BottomAutoHideArea; return BottomAutoHideArea;
} }
else else
{ {
return Result; return Result;
}*/ }
return Result; return Result;
} }