Use View instead of ViewWrapper in the api

The latter will be an implementation detail soon
This commit is contained in:
Sergio Martins
2022-06-24 00:10:50 +01:00
parent 2ac996218f
commit 10c918b93c
38 changed files with 95 additions and 95 deletions

View File

@@ -43,11 +43,11 @@ public:
void setSize(int width, int height) override;
bool is(Type) const override;
std::shared_ptr<Window> window() const override;
std::shared_ptr<ViewWrapper> rootView() const override;
std::shared_ptr<ViewWrapper> parentView() const override;
std::shared_ptr<View> rootView() const override;
std::shared_ptr<View> parentView() const override;
void setParent(View *) override;
bool close() override;
std::shared_ptr<ViewWrapper> childViewAt(QPoint localPos) const override;
std::shared_ptr<View> childViewAt(QPoint localPos) const override;
QVector<std::shared_ptr<View>> childViews() const override;
void grabMouse() override;
void releaseMouse() override;