1
0
mirror of https://github.com/githubuser0xFFFF/Qt-Advanced-Docking-System.git synced 2025-04-01 02:42:39 +08:00

Updates README file with requirements, build-instructions and more.

This commit is contained in:
mfreiholz 2016-02-02 14:35:51 +01:00
parent 19b5f57610
commit 5a5e4c7c78

View File

@ -1,23 +1,39 @@
# Advanced Docking System # Advanced Docking System
Manages content widgets a lot like Visual Studio or similar programs.
I also try to get everything done with basic Qt functionality.
Basic usage of QWidgets an QLayouts and using basic styles as much as possible.
## Requirements ## Requirements (Tested!)
- C++11 Compiler (e.g.: \>=VC12) **Windows**
- \>= Qt 5.5 - \>= Qt 5.5
- VC12 or MinGW (-std=c++11)
**Linux**
- Not yet tested
## Build
Open the `build.pro` with QtCreator and start the build, that's it.
## Notes ## Notes
- SectionContent may safe a "size-type" property, which defines how the size of the widget should be handled. - *SectionContent* class may safe a "size-type" property, which defines how the size of the widget should be handled.
- PerCent: Resize in proportion to other widgets. - PerCent: Resize in proportion to other widgets.
- Fixed: Width or height are fixed (based on orientation). - Fixed: Width or height are fixed (based on orientation).
## TODOs ## TODOs
- [] Serialize state/size/positions of dockings Sorted by priority
- [] Deserialize state/size/positions of dockings - Serialize state/size/positions of dockings
- [] Drop indicator images should be fully visible over the DropOverlay rectangle - Deserialize state/size/positions of dockings
- Make compatible with Qt 4.5 (\*ROFL!\*)
- Drop indicator images should be fully visible over the DropOverlay rectangle
- Pin contents: Pins a content and its title widget to the edge and opens on click/hover as long as it has focus
## Bugs ## Bugs
- Working with outer-edge-drops sometimes leaves empty splitters - Working with outer-edge-drops sometimes leaves empty splitters
- [DONE] Clean up of unused e.g. count()<=1 QSplitters doesn't work well - **[DONE]** Clean up of unused e.g. count()<=1 QSplitters doesn't work well
## License notes ## Credits
- Copied drop images from - Drop indicator images from:
http://www.codeproject.com/Articles/140209/Building-a-Docking-Window-Management-Solution-in-W http://www.codeproject.com/Articles/140209/Building-a-Docking-Window-Management-Solution-in-W
## License
Not sure yet... It's in development status anyway.