Skip to content

Commit 4600af7

Browse files
Moved Alternative Dock System implementation to the end of README.md
1 parent 21d8a3d commit 4600af7

File tree

1 file changed

+35
-36
lines changed

1 file changed

+35
-36
lines changed

README.md

Lines changed: 35 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ know it from Visual Studio.
7373
- [Tab-menu for easy handling of many tabbed dock widgets](#tab-menu-for-easy-handling-of-many-tabbed-dock-widgets)
7474
- [Many different ways to detach dock widgets](#many-different-ways-to-detach-dock-widgets)
7575
- [Supports deletion of dynamically created dock widgets](#supports-deletion-of-dynamically-created-dock-widgets)
76-
- [Python PyQt5 Bindings](#python-pyqt5-bindings)
76+
- [Python Bindings](#python-bindings)
7777
- [PySide6](#pyside6)
7878
- [PyQt5](#pyqt5)
7979
- [Tested Compatible Environments](#tested-compatible-environments)
@@ -84,10 +84,6 @@ know it from Visual Studio.
8484
- [Build](#build)
8585
- [Getting started / Example](#getting-started--example)
8686
- [License information](#license-information)
87-
- [Alternative Docking System Implementations](#alternative-docking-system-implementations)
88-
- [KDDockWidgets](#kddockwidgets)
89-
- [QtitanDocking](#qtitandocking)
90-
- [DockingPanes](#dockingpanes)
9187
- [Donation](#donation)
9288
- [Showcase](#showcase)
9389
- [Qt Creator IDE](#qt-creator-ide)
@@ -101,6 +97,10 @@ know it from Visual Studio.
10197
- [Notepad Next](#notepad-next)
10298
- [MetGem](#metgem)
10399
- [PRE Workbench](#pre-workbench)
100+
- [Alternative Docking System Implementations](#alternative-docking-system-implementations)
101+
- [KDDockWidgets](#kddockwidgets)
102+
- [QtitanDocking](#qtitandocking)
103+
- [DockingPanes](#dockingpanes)
104104

105105
### Docking everywhere - no central widget
106106

@@ -182,7 +182,7 @@ You can detach dock widgets and also dock areas in the following ways:
182182

183183
Normally clicking the close button of a dock widget will just hide the widget and the user can show it again using the toggleView() action of the dock widget. This is meant for user interfaces with a static amount of widgets. But the advanced docking system also supports dynamic dock widgets that will get deleted on close. If you set the dock widget flag `DockWidgetDeleteOnClose` for a certain dock widget, then it will be deleted as soon as you close this dock widget. This enables the implementation of user interfaces with dynamically created editors, like in word processing applications or source code development tools.
184184

185-
## Python PyQt5 Bindings
185+
## Python Bindings
186186

187187
![Python Logo](doc/python_logo.png)
188188

@@ -354,36 +354,6 @@ MainWindow::~MainWindow()
354354
[![License: LGPL v2.1](https://img.shields.io/badge/License-LGPL%20v2.1-blue.svg)](gnu-lgpl-v2.1.md)
355355
This project uses the [LGPLv2.1 license](gnu-lgpl-v2.1.md)
356356
357-
358-
## Alternative Docking System Implementations
359-
360-
If this Qt Advanced Docking System does not fit to your needs you may consider some of the alternative docking system solutions for Qt.
361-
362-
### KDDockWidgets
363-
364-
This is an advanced docking framework for Qt from [KDAB](https://www.kdab.com/). The interesting thing is, that they separated GUI code from logic, so they can easily provide a QtQuick backend in the future.
365-
366-
- [Blog post about KDDockWidgets](https://www.kdab.com/kddockwidgets/)
367-
- [GitHub project](https://github.com/KDAB/KDDockWidgets)
368-
369-
**License:** dual-licensed, available under both commercial and GPL license.
370-
371-
### QtitanDocking
372-
373-
This is a commercial component from [Developer Machines](https://www.devmachines.com/) for Qt Framework that allows to create a Microsoft like dockable user interface. They also offer a lot of other interesting and useful components for Qt. The library is available
374-
375-
- [Product page](https://www.devmachines.com/qtitandocking-overview.html)
376-
377-
**License:** Commercial license
378-
379-
### DockingPanes
380-
381-
DockingPanes is a library for Qt Widgets that implements docking windows that have the look and feel of Visual Studio. It provides a simple API which allows an application to make use of docking windows with a few calls.
382-
383-
- [GitHub project](https://github.com/KestrelRadarSensors/dockingpanes)
384-
385-
**License:** GPL
386-
387357
## Donation
388358
389359
If this project help you reduce time to develop or if you just like it, you can give me a cup of coffee :coffee::wink:.
@@ -510,3 +480,32 @@ PRE Workbench is a Python software and uses the ADS PyQt integration.
510480
[read more...](https://luelista.github.io/pre_workbench/)
511481
512482
[![PRE Workbench](doc/showcase_pre_workbench.png)](https://youtu.be/U3op5UreV1Q)
483+
484+
## Alternative Docking System Implementations
485+
486+
If this Qt Advanced Docking System does not fit to your needs you may consider some of the alternative docking system solutions for Qt.
487+
488+
### KDDockWidgets
489+
490+
This is an advanced docking framework for Qt from [KDAB](https://www.kdab.com/). The interesting thing is, that they separated GUI code from logic, so they can easily provide a QtQuick backend in the future.
491+
492+
- [Blog post about KDDockWidgets](https://www.kdab.com/kddockwidgets/)
493+
- [GitHub project](https://github.com/KDAB/KDDockWidgets)
494+
495+
**License:** dual-licensed, available under both commercial and GPL license.
496+
497+
### QtitanDocking
498+
499+
This is a commercial component from [Developer Machines](https://www.devmachines.com/) for Qt Framework that allows to create a Microsoft like dockable user interface. They also offer a lot of other interesting and useful components for Qt. The library is available
500+
501+
- [Product page](https://www.devmachines.com/qtitandocking-overview.html)
502+
503+
**License:** Commercial license
504+
505+
### DockingPanes
506+
507+
DockingPanes is a library for Qt Widgets that implements docking windows that have the look and feel of Visual Studio. It provides a simple API which allows an application to make use of docking windows with a few calls.
508+
509+
- [GitHub project](https://github.com/KestrelRadarSensors/dockingpanes)
510+
511+
**License:** GPL

0 commit comments

Comments
 (0)