Qt-Advanced-Docking-System icon indicating copy to clipboard operation
Qt-Advanced-Docking-System copied to clipboard

Advanced Docking System for Qt

Results 28 Qt-Advanced-Docking-System issues
Sort by recently updated
recently updated
newest added

I am setting the following features: ``` ads::CDockManager::setConfigFlags(ads::CDockManager::DefaultOpaqueConfig); ads::CDockManager::setConfigFlag(ads::CDockManager::DockAreaHasCloseButton, false); ads::CDockManager::setConfigFlag(ads::CDockManager::DockAreaHasUndockButton, false); ads::CDockManager::setConfigFlag(ads::CDockManager::DockAreaHasTabsMenuButton, false); ``` Yet observing behaviour when sometimes the close, undock, and tabs buttons are shown. When displaying...

I like the idea of the auto hide docks and having docks being minimized on any side of the application. What are your thoughts on the ability that would allow...

feature request

After docking window A to floating window B, floating window B does not appear,the following is the global settings : CDockManager::setConfigFlag(CDockManager::FocusHighlighting, true); CDockManager::setAutoHideConfigFlags({ CDockManager::DefaultAutoHideConfig }); CDockManager::setConfigFlag(CDockManager::OpaqueSplitterResize, true); CDockManager::setConfigFlag(CDockManager::XmlCompressionEnabled, false); CDockManager::setConfigFlag(CDockManager::AllTabsHaveCloseButton,...

Hello! I am the author of WingHexExplorer2. I use your qt ads as my docking system. I have a question about the policy as the title says: ![bugreport](https://github.com/user-attachments/assets/cb64c97c-2c79-4507-9863-f6df75426e46) Above as...

feature request

Hallo, I found that TabsMenu button is shown after perspective change even though there is space in Tab title bar and vanishes when the splitter is moved. Shown in the...

In the main window of the application, we have a dock with some data (in the screenshot it's the text "text"). We want to have the possibility to drag &...

feature request

Is it possible to create a dockable widget from dragging an arbitrary no-dockable widget? Some other framework supports this and it is quite convenient. See the following example made with...

This bug occurs when one application contains more than one CDockManager. Bug fix as the title says, the demo image as follows: > note the TAB COLOR CHANGE (the focused...

under review

Hi. Im trying to apply icon size for CDockWidget view in toolbar with the following code: ``` ads::CDockWidget* DockWidget = new ads::CDockWidget(plugin->name()); DockWidget->setWidget(plugin); DockWidget->setIcon(plugin->icon()); DockWidget->setToolBarIconSize(QSize(60, 60), ads::CDockWidget::StateHidden); const auto autoHideContainer...

After hiding all current dock widgets in a dock area by Ctrl + clicking the "Pin Active Tab" button, adding a dock widget to the same dock area causes a...