Move DropArea into Controllers namespace

In preparation for View/Controller split.
This commit is contained in:
Sergio Martins
2022-04-23 12:14:30 +01:00
parent daa6afd14c
commit 860a1a1bb0
20 changed files with 55 additions and 44 deletions

View File

@@ -16,7 +16,10 @@
namespace KDDockWidgets {
namespace Controllers {
class DropArea;
}
/// @brief The base class for view wrappers
/// A view wrapper is a view that doesn't own the native GUI element(QWidget, QQuickItem etc.)
@@ -66,7 +69,7 @@ public:
void setMouseTracking(bool) override;
/// TODOv2: Remove
virtual DropArea *asDropArea() const
virtual Controllers::DropArea *asDropArea() const
{
return {};
};