Allow the classic/segmented views be created by FrameworkWidgetFactory

Instead of the controllers. We only allow the user to customize
the views.
This commit is contained in:
Sergio Martins
2022-05-18 23:10:27 +01:00
parent ab881c9b5a
commit aefbbd5738
11 changed files with 59 additions and 85 deletions

View File

@@ -149,13 +149,3 @@ View *Platform_qtquick::createView(View *parent) const
{
return new Views::View_qtquick(nullptr, Type::None, Views::asQQuickItem(parent));
}
View *Platform_qtquick::createClassicDropIndicatorOverlayView(Controllers::ClassicIndicators *, View *) const
{
return nullptr;
}
View *Platform_qtquick::createSegmentedDropIndicatorOverlayView(Controllers::SegmentedIndicators *, View *) const
{
return nullptr;
}