Ejemplo n.º 1
0
void pMainWindow::addDockManagerWidget( Qt::ToolBarArea area, QDockWidget* dockWidget, Qt::Orientation orientation )
{
    dockToolBar( area )->addDockWidget( dockWidget );
    
    if ( orientation == Qt::Horizontal ) {
        dockWidget->setFeatures( dockWidget->features() ^ QDockWidget::DockWidgetVerticalTitleBar );
    }
    else {
        dockWidget->setFeatures( dockWidget->features() | QDockWidget::DockWidgetVerticalTitleBar );
    }
}
void MNavigationBar::undockToolBar()
{
    dockToolBar(NULL);
}
Ejemplo n.º 3
0
void pMainWindow::setDockManagerAreaExclusive( Qt::ToolBarArea area, bool exclusive )
{
    dockToolBar( area )->setExclusive( exclusive );
}