#include <C:/adskgit/3dsmax/3dsmax/3dswin/src/maxsdk/include/Qt/QmaxDockWidget.h>
|
Qt::Orientation | orientation |
| The orientation of the dock widget.
|
◆ QmaxDockWidget() [1/3]
QmaxDockWidget |
( |
const QString & | objectName, |
|
|
const QString & | title, |
|
|
QWidget * | parent = nullptr, |
|
|
Qt::WindowFlags | flags = {} ) |
|
explicit |
◆ QmaxDockWidget() [2/3]
◆ QmaxDockWidget() [3/3]
QmaxDockWidget |
( |
QWidget * | parent = nullptr, |
|
|
Qt::WindowFlags | flags = {} ) |
|
explicit |
◆ ~QmaxDockWidget()
◆ loadCUIContent()
bool loadCUIContent |
( |
const QString & | fileName, |
|
|
int | startup ) |
◆ saveCUIContent()
void saveCUIContent |
( |
const QString & | fileName | ) |
|
◆ setMaxDockType()
Sets the 3ds Max dock type on the dock widget.
- Parameters
-
[in] | dockType | The dock type of the actual docking content. |
- See also
- maxDockType()
68{ QmaxMainWindow::setMaxDockType( this, dockType ); }
◆ maxDockType()
Returns the 3ds Max dock type for the widget.
- See also
- setMaxDockType()
72{ return QmaxMainWindow::maxDockType( this ); }
◆ setMaxDockFlags()
void setMaxDockFlags |
( |
QmaxMainWindow::QmaxDockFlags | dockFlags | ) |
|
|
inline |
Sets the 3ds Max specific dock flags on the dock widget.
- Parameters
-
[in] | dockFlags | The 3ds Max specific dock flags. |
- See also
- maxDockFlags(), addMaxDockFlags()
77{ QmaxMainWindow::setMaxDockFlags( this, dockFlags ); }
◆ addMaxDockFlags()
void addMaxDockFlags |
( |
QmaxMainWindow::QmaxDockFlags | dockFlags | ) |
|
|
inline |
Adds the 3ds Max specific dock flags on the dock widget.
- Parameters
-
[in] | dockFlags | The 3ds Max specific dock flags. |
- See also
- maxDockFlags(), setMaxDockFlags()
83{ QmaxMainWindow::addMaxDockFlags( this, dockFlags ); }
◆ maxDockFlags()
QmaxMainWindow::QmaxDockFlags maxDockFlags |
( |
| ) |
const |
|
inline |
◆ orientation()
Qt::Orientation orientation |
( |
| ) |
const |
◆ setOrientation()
void setOrientation |
( |
Qt::Orientation | orientation | ) |
|
◆ dockWidgetArea()
Qt::DockWidgetArea dockWidgetArea |
( |
| ) |
|
Returns the docking area of the dock widget in the parent main window layout.
If dock widget has not been added to a main window, the return value will be Qt::NoDockWidgetArea.
◆ orientationChanged
void orientationChanged |
( |
Qt::Orientation | orientation | ) |
|
|
signal |
Emitted when the dock widget orientation has changed.
- Parameters
-
orientation | The new dock widget orientation. |
- See also
- orientation(), setOrientation().
◆ event()
bool event |
( |
QEvent * | evt | ) |
|
|
overrideprotected |
◆ paintEvent()
void paintEvent |
( |
QPaintEvent * | evt | ) |
|
|
overrideprotected |
◆ nativeEvent()
bool nativeEvent |
( |
const QByteArray & | eventType, |
|
|
void * | message, |
|
|
qintptr * | result ) |
|
overrideprotected |
◆ orientation
Qt::Orientation orientation |
|
readwrite |
The orientation of the dock widget.
The orientation property for the dock widget works equivalent to the orientation of the QToolBar. When the QmaxDockWidget is in a QMainWindow docking layout then the orientation will be managed by the system. For the left and right dock area the orientation will be Qt::Vertical. Which means top-down, the title bar is on top of the dock widget. For the top and bottom dock area the orientation will be Qt::Horizontal.
- See also
- orientation(), setOrientation()