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

Better compatible with qt4.

* Q_PROPERTY MEMBER wasn't available, use READ and WRITE instead
* Disables namespace with qt4
* Updates default stylesheet to work with qt4 (no namespaces)

Unifies include/forward-declaration style in header files.
README status updates
This commit is contained in:
mfreiholz 2016-02-15 12:27:23 +01:00
parent 2d1a3b8665
commit 2513ab1f2b
10 changed files with 22 additions and 36 deletions

View File

@ -10,6 +10,8 @@ CONFIG += staticlib
INCLUDEPATH += $$PWD/src INCLUDEPATH += $$PWD/src
INCLUDEPATH += $$PWD/include INCLUDEPATH += $$PWD/include
greaterThan(QT_MAJOR_VERSION, 4): DEFINES += ADS_NAMESPACE_ENABLED
windows { windows {
# MinGW # MinGW
*-g++* { *-g++* {

View File

@ -7,12 +7,9 @@
#include <QSharedPointer> #include <QSharedPointer>
class QSplitter; class QSplitter;
/* // Use namespace
* ADS - Advanced Docking System for Qt // Disabled with Qt4!
* Developed by Manuel Freiholz #ifdef ADS_NAMESPACE_ENABLED
*/
#if 1
#define ADS_NAMESPACE_BEGIN namespace ads { #define ADS_NAMESPACE_BEGIN namespace ads {
#define ADS_NAMESPACE_END } #define ADS_NAMESPACE_END }
#define ADS_NS ads #define ADS_NS ads

View File

@ -3,14 +3,12 @@
#include <QWidget> #include <QWidget>
#include <QFrame> #include <QFrame>
class QBoxLayout;
#include "ads/API.h" #include "ads/API.h"
#include "ads/SectionContent.h" #include "ads/SectionContent.h"
class QBoxLayout;
ADS_NAMESPACE_BEGIN ADS_NAMESPACE_BEGIN
class ContainerWidget; class ContainerWidget;
class SectionTitleWidget; class SectionTitleWidget;
class SectionContentWidget; class SectionContentWidget;

View File

@ -7,7 +7,6 @@
#include "ads/SectionContent.h" #include "ads/SectionContent.h"
ADS_NAMESPACE_BEGIN ADS_NAMESPACE_BEGIN
class ContainerWidget; class ContainerWidget;
class SectionWidget; class SectionWidget;

View File

@ -15,7 +15,7 @@ class FloatingWidget;
class SectionTitleWidget : public QFrame class SectionTitleWidget : public QFrame
{ {
Q_OBJECT Q_OBJECT
Q_PROPERTY(bool activeTab MEMBER _activeTab NOTIFY activeTabChanged) Q_PROPERTY(bool activeTab READ isActiveTab WRITE setActiveTab NOTIFY activeTabChanged)
friend class ContainerWidget; friend class ContainerWidget;
friend class SectionWidget; friend class SectionWidget;

View File

@ -5,15 +5,13 @@
#include <QList> #include <QList>
#include <QHash> #include <QHash>
#include <QFrame> #include <QFrame>
class QBoxLayout;
class QStackedLayout;
#include "ads/API.h" #include "ads/API.h"
#include "ads/SectionContent.h" #include "ads/SectionContent.h"
class QBoxLayout;
class QStackedLayout;
ADS_NAMESPACE_BEGIN ADS_NAMESPACE_BEGIN
class ContainerWidget; class ContainerWidget;
class SectionTitleWidget; class SectionTitleWidget;
class SectionContentWidget; class SectionContentWidget;
@ -33,7 +31,6 @@ public:
virtual ~SectionWidget(); virtual ~SectionWidget();
int uid() const; int uid() const;
ContainerWidget* containerWidget() const;
QRect titleAreaGeometry() const; QRect titleAreaGeometry() const;
QRect contentAreaGeometry() const; QRect contentAreaGeometry() const;

View File

@ -431,6 +431,7 @@ SectionWidget* ContainerWidget::dropContentOuterHelper(QLayout* l, const Interna
#else #else
int index = l->indexOf(oldsp); int index = l->indexOf(oldsp);
QLayoutItem* li = l->takeAt(index); QLayoutItem* li = l->takeAt(index);
l->addWidget(sp);
sp->addWidget(oldsp); sp->addWidget(oldsp);
sp->addWidget(sw); sp->addWidget(sw);
delete li; delete li;
@ -447,6 +448,7 @@ SectionWidget* ContainerWidget::dropContentOuterHelper(QLayout* l, const Interna
sp->addWidget(sw); sp->addWidget(sw);
int index = l->indexOf(oldsp); int index = l->indexOf(oldsp);
QLayoutItem* li = l->takeAt(index); QLayoutItem* li = l->takeAt(index);
l->addWidget(sp);
sp->addWidget(oldsp); sp->addWidget(oldsp);
delete li; delete li;
#endif #endif

View File

@ -79,11 +79,6 @@ int SectionWidget::uid() const
return _uid; return _uid;
} }
ContainerWidget* SectionWidget::containerWidget() const
{
return _container;
}
QRect SectionWidget::titleAreaGeometry() const QRect SectionWidget::titleAreaGeometry() const
{ {
return _tabsLayout->geometry(); return _tabsLayout->geometry();
@ -167,8 +162,6 @@ bool SectionWidget::takeContent(int uid, InternalContentData& data)
{ {
_tabsLayout->removeWidget(title); _tabsLayout->removeWidget(title);
title->disconnect(this); title->disconnect(this);
// if (del)
// title->deleteLater();
} }
// Content wrapper widget (CONTENT) // Content wrapper widget (CONTENT)
@ -177,8 +170,6 @@ bool SectionWidget::takeContent(int uid, InternalContentData& data)
{ {
_contentsLayout->removeWidget(content); _contentsLayout->removeWidget(content);
content->disconnect(this); content->disconnect(this);
// if (del)
// content->deleteLater();
} }
// Select the previous tab as activeTab. // Select the previous tab as activeTab.

View File

@ -41,11 +41,11 @@ int main(int argc, char *argv[])
// Default style. // Default style.
a.setStyleSheet("" a.setStyleSheet(""
" QSplitter::handle { background: palette(dark); } " " QSplitter::handle { background: palette(dark); } "
" ads--ContainerWidget { background: palette(dark); } " " ads--ContainerWidget, ContainerWidget { background: palette(dark); } "
" ads--SectionWidget { background: palette(window); } " " ads--SectionWidget, SectionWidget { background: palette(window); } "
" ads--SectionTitleWidget { background: palette(window); } " " ads--SectionTitleWidget, SectionTitleWidget { background: palette(window); } "
" ads--SectionTitleWidget[activeTab=\"true\"] { background: palette(light); } " " ads--SectionTitleWidget[activeTab=\"true\"], SectionTitleWidget[activeTab=\"true\"] { background: palette(light); } "
" ads--SectionContentWidget { border: 1px solid palette(light); } " " ads--SectionContentWidget, SectionContentWidget { border: 1px solid palette(light); } "
" " " "
); );

View File

@ -1,12 +1,12 @@
# Advanced Docking System # Advanced Docking System
Manages content widgets a lot like Visual Studio or similar programs. Manages content widgets more like Visual Studio or similar programs.
I also try to get everything done with basic Qt functionality. 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. Basic usage of QWidgets an QLayouts and using basic styles as much as possible.
## Requirements (Tested!) ## Tested with - Requirements
**Windows** **Windows**
- \>= Qt 5.5 - \>= Qt 5.5, VC12 or MinGW
- VC12 or MinGW (-std=c++11) - \>= Qt 4.5.3 VC9 - *not as good...*
**Linux** **Linux**
- Not yet tested - Not yet tested
@ -21,10 +21,10 @@ Open the `build.pro` with QtCreator and start the build, that's it.
## TODOs ## TODOs
Sorted by priority Sorted by priority
- Improve FloatingWidget (Remove maximize button, only support close-button which hides the widget) - **[DONE]** Improve FloatingWidget (Remove maximize button, only support close-button which hides the widget)
- **[DONE]** Serialize and Deserialize state/size/positions of dockings - **[DONE]** Serialize and Deserialize state/size/positions of dockings
- Serialize FloatingWidget states
- **[90%]** Make compatible with Qt 4.5 (\*ROFL!\*) - **[90%]** Make compatible with Qt 4.5 (\*ROFL!\*)
- Save and restore FloatingWidget states
- Drop indicator images should be fully visible over the DropOverlay rectangle - 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 - Pin contents: Pins a content and its title widget to the edge and opens on click/hover as long as it has focus