/* This file is part of KDDockWidgets. SPDX-FileCopyrightText: 2023 Klarälvdalens Datakonsult AB, a KDAB Group company Author: Sérgio Martins SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only Contact KDAB at for commercial licensing options. */ #include "DropIndicatorOverlay.h" #include "core/Group.h" #include #pragma once #pragma once // Pimpl class so we can keep kdbindings private namespace KDDockWidgets { namespace Core { class DropIndicatorOverlay::Private { public: KDBindings::Signal hoveredGroupChanged; KDBindings::Signal<> hoveredGroupRectChanged; KDBindings::Signal<> currentDropLocationChanged; KDBindings::ScopedConnection groupConnection; KDBindings::ScopedConnection dropIndicatorsInhibitedConnection; }; } }