KDDockWidgets API Documentation 2.0
Loading...
Searching...
No Matches
Public Member Functions | List of all members
KDDockWidgets::QtWidgets::ViewFactory Class Reference

The default ViewFactory for QtWidgets frontend. More...

#include <ViewFactory.h>

Inheritance diagram for KDDockWidgets::QtWidgets::ViewFactory:
Inheritance graph
[legend]
Collaboration diagram for KDDockWidgets::QtWidgets::ViewFactory:
Collaboration graph
[legend]

Public Member Functions

 ViewFactory ()=default
 
 ~ViewFactory () override
 Destructor. Don't delete ViewFactory directly, it's owned by the framework.
 
void clearIconCache ()
 
KDDockWidgets::Core::ActioncreateAction (Core::DockWidget *, const char *debugName) const override
 Creates a QAction if QtWidgets, or an equivalent fallback if QtQuick/Flutter Not needed to be overridden by users.
 
Core::ClassicIndicatorWindowViewInterfacecreateClassicIndicatorWindow (Core::ClassicDropIndicatorOverlay *, Core::View *parent) const override
 Creates the window that will show the actual drop indicators. They need a higher z-order, so this is actually a separate window, not parented to the main window.
 
Core::ViewcreateDockWidget (const QString &uniqueName, DockWidgetOptions={}, LayoutSaverOptions={}, Qt::WindowFlags={}) const override
 Creates a dock widget. This is only used by MainWindow's persistent widget feature. In all other cases users will instantiate DockWidget directly.
 
Core::ViewcreateDropArea (Core::DropArea *, Core::View *parent) const override
 Called by the framework to create a DropArea view.
 
Core::ViewcreateFloatingWindow (Core::FloatingWindow *, Core::MainWindow *parent=nullptr, Qt::WindowFlags windowFlags={}) const override
 Called by the framework to create a FloatingWindow view Override to provide your own FloatingWindow sub-class.
 
Core::ViewcreateGroup (Core::Group *, Core::View *parent) const override
 Called by the framework to create a Frame view Override to provide your own Frame sub-class. A group is the widget that holds the titlebar and tab-widget which holds the DockWidgets.
 
Core::ViewcreateMDILayout (Core::MDILayout *, Core::View *parent) const override
 Called by the framework to create a MDI Layout view.
 
Core::ViewcreateRubberBand (Core::View *parent) const override
 Called by the framework to create a RubberBand view to show as drop zone.
 
Core::ViewcreateSegmentedDropIndicatorOverlayView (Core::SegmentedDropIndicatorOverlay *controller, Core::View *parent) const override
 Creates the view that will parent the segmented drop indicators.
 
Core::ViewcreateSeparator (Core::Separator *, Core::View *parent=nullptr) const override
 Called by the framework to create a Separator view Override to provide your own Separator sub-class. The Separator allows the user to resize nested dock widgets.
 
Core::ViewcreateSideBar (Core::SideBar *, Core::View *parent) const override
 Called by the framework to create a SideBar view.
 
Core::ViewcreateStack (Core::Stack *, Core::View *parent) const override
 Called by the framework to create a Stack view Override to provide your own Stack sub-class.
 
Core::ViewcreateTabBar (Core::TabBar *tabBar, Core::View *parent) const override
 Called by the framework to create a TabBar view Override to provide your own TabBar sub-class.
 
Core::ViewcreateTitleBar (Core::TitleBar *, Core::View *parent) const override
 Called by the framework to create a TitleBar view Override to provide your own TitleBar sub-class. Just forward the controller and parent arguments to the TitleBar view ctor.
 
QAbstractButtoncreateTitleBarButton (QWidget *parent, TitleBarButtonType) const
 
QIcon iconForButtonType (TitleBarButtonType type, qreal dpr) const override
 
- Public Member Functions inherited from KDDockWidgets::Core::ViewFactory
 ViewFactory ()=default
 
virtual QString classicIndicatorsPath () const
 The path to a folder containing the classic_indicator png files.
 
virtual Icon iconForButtonType (TitleBarButtonType type, double dpr) const =0
 Returns the icon to be used with the specified type.
 

Additional Inherited Members

- Static Public Attributes inherited from KDDockWidgets::Core::ViewFactory
static DropIndicatorType s_dropIndicatorType = DropIndicatorType::Classic
 @ The drop indicator type
 

Detailed Description

The default ViewFactory for QtWidgets frontend.

Definition at line 53 of file qtwidgets/ViewFactory.h.

Constructor & Destructor Documentation

◆ ViewFactory()

KDDockWidgets::QtWidgets::ViewFactory::ViewFactory ( )
default

◆ ~ViewFactory()

ViewFactory::~ViewFactory ( )
overridevirtual

Destructor. Don't delete ViewFactory directly, it's owned by the framework.

Reimplemented from KDDockWidgets::Core::ViewFactory.

Definition at line 52 of file qtwidgets/ViewFactory.cpp.

Member Function Documentation

◆ clearIconCache()

void ViewFactory::clearIconCache ( )

Definition at line 204 of file qtwidgets/ViewFactory.cpp.

References QMap::clear().

◆ createAction()

KDDockWidgets::Core::Action * ViewFactory::createAction ( Core::DockWidget ,
const char *  debugName 
) const
overridevirtual

Creates a QAction if QtWidgets, or an equivalent fallback if QtQuick/Flutter Not needed to be overridden by users.

Implements KDDockWidgets::Core::ViewFactory.

Definition at line 209 of file qtwidgets/ViewFactory.cpp.

◆ createClassicIndicatorWindow()

Core::ClassicIndicatorWindowViewInterface * ViewFactory::createClassicIndicatorWindow ( Core::ClassicDropIndicatorOverlay ,
Core::View parent 
) const
overridevirtual

Creates the window that will show the actual drop indicators. They need a higher z-order, so this is actually a separate window, not parented to the main window.

Implements KDDockWidgets::Core::ViewFactory.

Definition at line 197 of file qtwidgets/ViewFactory.cpp.

◆ createDockWidget()

Core::View * ViewFactory::createDockWidget ( const QString uniqueName,
DockWidgetOptions  options = {},
LayoutSaverOptions  layoutSaverOptions = {},
Qt::WindowFlags  windowFlags = {} 
) const
overridevirtual

Creates a dock widget. This is only used by MainWindow's persistent widget feature. In all other cases users will instantiate DockWidget directly.

Implements KDDockWidgets::Core::ViewFactory.

Definition at line 56 of file qtwidgets/ViewFactory.cpp.

◆ createDropArea()

Core::View * ViewFactory::createDropArea ( Core::DropArea ,
Core::View parent 
) const
overridevirtual

Called by the framework to create a DropArea view.

Implements KDDockWidgets::Core::ViewFactory.

Definition at line 180 of file qtwidgets/ViewFactory.cpp.

◆ createFloatingWindow()

Core::View * ViewFactory::createFloatingWindow ( Core::FloatingWindow controller,
Core::MainWindow parent = nullptr,
Qt::WindowFlags  windowFlags = {} 
) const
overridevirtual

Called by the framework to create a FloatingWindow view Override to provide your own FloatingWindow sub-class.

Parameters
parentJust forward to FloatingWindow's constructor.

Implements KDDockWidgets::Core::ViewFactory.

Definition at line 90 of file qtwidgets/ViewFactory.cpp.

References KDDockWidgets::Core::Controller::view().

◆ createGroup()

Core::View * ViewFactory::createGroup ( Core::Group ,
Core::View parent 
) const
overridevirtual

Called by the framework to create a Frame view Override to provide your own Frame sub-class. A group is the widget that holds the titlebar and tab-widget which holds the DockWidgets.

Parameters
parentjust forward to Frame's constructor

Implements KDDockWidgets::Core::ViewFactory.

Definition at line 64 of file qtwidgets/ViewFactory.cpp.

◆ createMDILayout()

Core::View * ViewFactory::createMDILayout ( Core::MDILayout ,
Core::View parent 
) const
overridevirtual

Called by the framework to create a MDI Layout view.

Implements KDDockWidgets::Core::ViewFactory.

Definition at line 185 of file qtwidgets/ViewFactory.cpp.

◆ createRubberBand()

Core::View * ViewFactory::createRubberBand ( Core::View parent) const
overridevirtual

Called by the framework to create a RubberBand view to show as drop zone.

Implements KDDockWidgets::Core::ViewFactory.

Definition at line 99 of file qtwidgets/ViewFactory.cpp.

◆ createSegmentedDropIndicatorOverlayView()

Core::View * ViewFactory::createSegmentedDropIndicatorOverlayView ( Core::SegmentedDropIndicatorOverlay controller,
Core::View parent 
) const
overridevirtual

Creates the view that will parent the segmented drop indicators.

Implements KDDockWidgets::Core::ViewFactory.

Definition at line 190 of file qtwidgets/ViewFactory.cpp.

◆ createSeparator()

Core::View * ViewFactory::createSeparator ( Core::Separator ,
Core::View parent = nullptr 
) const
overridevirtual

Called by the framework to create a Separator view Override to provide your own Separator sub-class. The Separator allows the user to resize nested dock widgets.

Parameters
parentJust forward to Separator's constructor.

Implements KDDockWidgets::Core::ViewFactory.

Definition at line 85 of file qtwidgets/ViewFactory.cpp.

◆ createSideBar()

Core::View * ViewFactory::createSideBar ( Core::SideBar ,
Core::View parent 
) const
overridevirtual

Called by the framework to create a SideBar view.

Parameters
locThe side-bar location without the main window. Just forward into your SideBar sub-class ctor.
parentThe MainWindow. Just forward into your SideBar sub-class ctor.

Implements KDDockWidgets::Core::ViewFactory.

Definition at line 104 of file qtwidgets/ViewFactory.cpp.

◆ createStack()

Core::View * ViewFactory::createStack ( Core::Stack stack,
Core::View parent 
) const
overridevirtual

Called by the framework to create a Stack view Override to provide your own Stack sub-class.

Parameters
parentJust forward to Stack's constructor.

Implements KDDockWidgets::Core::ViewFactory.

Definition at line 80 of file qtwidgets/ViewFactory.cpp.

◆ createTabBar()

Core::View * ViewFactory::createTabBar ( Core::TabBar tabBar,
Core::View parent 
) const
overridevirtual

Called by the framework to create a TabBar view Override to provide your own TabBar sub-class.

Parameters
parentJust forward to TabBar's's constructor.

Implements KDDockWidgets::Core::ViewFactory.

Definition at line 75 of file qtwidgets/ViewFactory.cpp.

◆ createTitleBar()

Core::View * ViewFactory::createTitleBar ( Core::TitleBar controller,
Core::View parent 
) const
overridevirtual

Called by the framework to create a TitleBar view Override to provide your own TitleBar sub-class. Just forward the controller and parent arguments to the TitleBar view ctor.

Implements KDDockWidgets::Core::ViewFactory.

Definition at line 70 of file qtwidgets/ViewFactory.cpp.

◆ createTitleBarButton()

QAbstractButton * ViewFactory::createTitleBarButton ( QWidget parent,
TitleBarButtonType  type 
) const

◆ iconForButtonType()

QIcon ViewFactory::iconForButtonType ( TitleBarButtonType  type,
qreal  dpr 
) const
override

The documentation for this class was generated from the following files:

© Klarälvdalens Datakonsult AB (KDAB)
"The Qt, C++ and OpenGL Experts"
https://www.kdab.com/
KDDockWidgets
Advanced Dock Widget Framework for Qt
https://www.kdab.com/development-resources/qt-tools/kddockwidgets/
Generated by doxygen 1.9.8