KDDockWidgets API Documentation 1.7
|
Struct describing the preferred dock widget size and visibility when adding it to a layout. More...
#include <KDDockWidgets.h>
Public Member Functions | |
InitialOption ()=default | |
InitialOption (AddingOption opt) | |
InitialOption (InitialVisibilityOption v) | |
InitialOption (InitialVisibilityOption v, QSize size) | |
InitialOption (QSize size) | |
bool | hasPreferredLength (Qt::Orientation o) const |
int | preferredLength (Qt::Orientation o) const |
bool | preservesCurrentTab () const |
bool | startsHidden () const |
Public Attributes | |
QSize | preferredSize |
Allows to control the size a dock widget should get when docked. | |
InitialVisibilityOption | visibility = InitialVisibilityOption::StartVisible |
Allows a dock widget to be docked as hidden. | |
Struct describing the preferred dock widget size and visibility when adding it to a layout.
You can pass this to MainWindowBase::addDockWidget() to give an hint of your preferred size and visibility.
See below the documentation for InitialOption::visibility and InitialOption::preferredSize.
Definition at line 100 of file KDDockWidgets.h.
|
default |
|
inline |
Definition at line 106 of file KDDockWidgets.h.
|
inline |
Definition at line 111 of file KDDockWidgets.h.
|
inline |
Definition at line 116 of file KDDockWidgets.h.
|
inline |
Definition at line 123 of file KDDockWidgets.h.
|
inline |
Definition at line 145 of file KDDockWidgets.h.
|
inline |
Definition at line 139 of file KDDockWidgets.h.
References Qt::Horizontal.
|
inline |
Definition at line 134 of file KDDockWidgets.h.
References KDDockWidgets::PreserveCurrentTab.
|
inline |
Definition at line 129 of file KDDockWidgets.h.
References KDDockWidgets::StartHidden.
Referenced by operator<<().
QSize KDDockWidgets::InitialOption::preferredSize |
Allows to control the size a dock widget should get when docked.
If an invalid or empty size is passed then KDDW's default heuristics are applied.
Note that usually only the width or the height will be honoured: For example, when adding a dock widget to the left then only the preferred width will be taken into account, as the height will simply fill the whole layout.
Definition at line 167 of file KDDockWidgets.h.
InitialVisibilityOption KDDockWidgets::InitialOption::visibility = InitialVisibilityOption::StartVisible |
Allows a dock widget to be docked as hidden.
Next time you call DockWidget::show() it will be shown at that place. This avoids flickering, as no show()/hide() workarounds are needed.
Definition at line 156 of file KDDockWidgets.h.