summaryrefslogtreecommitdiffstats
path: root/doc/src/snippets/code/src_gui_widgets_qdockwidget.cpp
blob: 2204e11f09a203e9c1a599ad2b8c9561fcc17eb9 (plain)
1
2
3
4
5
6
7
8
//! [0]
QDockWidget *dockWidget = qobject_cast<QDockWidget*>(parentWidget());
if (dockWidget->features() & QDockWidget::DockWidgetVerticalTitleBar) {
    // I need to be vertical
} else {
    // I need to be horizontal
}
//! [0]