Skip to content

Commit db16c5f

Browse files
n-elieluelista
andauthoredMar 21, 2023
Update python bindings to 4.0.2 (#495)
* start adaption of PyQt5 bindings to Qt-ADS 4.0 * Update PyQt bindings * Fix Python bindings build on Linux --------- Co-authored-by: Mira Weller <mweller@seemoo.tu-darmstadt.de>
1 parent d28ca1e commit db16c5f

17 files changed

+283
-107
lines changed
 

‎pyproject.toml

+15-5
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
# Specify the build system.
22
[build-system]
3-
requires = ["sip >=6.0.2, <6.6", "PyQt-builder >=1.6, <2", "PyQt5>=5.15.4", "PyQt5-sip<13,>=12.8"]
3+
requires = ["sip >=6.0.2, <6.3", "PyQt-builder >=1.6, <2", "PyQt5==5.15.4", "PyQt5-sip<13,>=12.8"]
44
build-backend = "sipbuild.api"
55

66
# Specify the PEP 566 metadata for the project.
77
[tool.sip.metadata]
88
name = "PyQtAds"
9-
version = "3.8.2"
9+
version = "4.0.2"
1010
summary = "Python bindings for Qt Advanced Docking System"
1111
home-page = "https://github.com/githubuser0xFFFF/Qt-Advanced-Docking-System/"
1212
license = "LGPL v2.1"
@@ -21,8 +21,11 @@ tag-prefix = "QtAds"
2121
define-macros = ["ADS_SHARED_EXPORT"]
2222
sip-file = "ads.sip"
2323
include-dirs = ["src"]
24-
qmake-QT = ["widgets"]
24+
qmake-QT = ["widgets", "gui-private; platform_system == 'Linux'"]
2525
headers = [
26+
"src/AutoHideDockContainer.h",
27+
"src/AutoHideSideBar.h",
28+
"src/AutoHideTab.h",
2629
"src/DockAreaTabBar.h",
2730
"src/DockAreaTitleBar.h",
2831
"src/DockAreaTitleBar_p.h",
@@ -40,10 +43,15 @@ headers = [
4043
"src/FloatingDockContainer.h",
4144
"src/FloatingDragPreview.h",
4245
"src/IconProvider.h",
46+
"src/PushButton.h",
47+
"src/ResizeHandle.h",
4348
"src/ads_globals.h",
44-
# "src/linux/FloatingWidgetTitleBar.h",
49+
"src/linux/FloatingWidgetTitleBar.h; platform_system == 'Linux'",
4550
]
4651
sources = [
52+
"src/AutoHideTab.cpp",
53+
"src/AutoHideDockContainer.cpp",
54+
"src/AutoHideSideBar.cpp",
4755
"src/DockAreaTabBar.cpp",
4856
"src/DockAreaTitleBar.cpp",
4957
"src/DockAreaWidget.cpp",
@@ -60,6 +68,8 @@ sources = [
6068
"src/FloatingDockContainer.cpp",
6169
"src/FloatingDragPreview.cpp",
6270
"src/IconProvider.cpp",
71+
"src/PushButton.cpp",
72+
"src/ResizeHandle.cpp",
6373
"src/ads_globals.cpp",
64-
# "src/linux/FloatingWidgetTitleBar.cpp",
74+
"src/linux/FloatingWidgetTitleBar.h; platform_system == 'Linux'",
6575
]

‎sip/AutoHideDockContainer.sip

+46
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
%Import QtWidgets/QtWidgetsmod.sip
2+
3+
%If (Qt_5_0_0 -)
4+
5+
namespace ads
6+
{
7+
8+
class CAutoHideDockContainer : QFrame
9+
{
10+
11+
%TypeHeaderCode
12+
#include <AutoHideDockContainer.h>
13+
%End
14+
15+
protected:
16+
virtual bool eventFilter(QObject* watched, QEvent* event);
17+
virtual void resizeEvent(QResizeEvent* event);
18+
virtual void leaveEvent(QEvent *event);
19+
virtual bool event(QEvent* event);
20+
void updateSize();
21+
void saveState(QXmlStreamWriter& Stream);
22+
23+
public:
24+
CAutoHideDockContainer(ads::CDockWidget* DockWidget /Transfer/, ads::SideBarLocation area,
25+
ads::CDockContainerWidget* parent /TransferThis/);
26+
virtual ~CAutoHideDockContainer();
27+
ads::CAutoHideSideBar* sideBar() const;
28+
ads::CAutoHideTab* autoHideTab() const;
29+
ads::CDockWidget* dockWidget() const;
30+
void addDockWidget(ads::CDockWidget* DockWidget /Transfer/);
31+
ads::SideBarLocation sideBarLocation() const;
32+
void setSideBarLocation(ads::SideBarLocation SideBarLocation);
33+
ads::CDockAreaWidget* dockAreaWidget() const;
34+
ads::CDockContainerWidget* dockContainer() const;
35+
void moveContentsToParent();
36+
void cleanupAndDelete();
37+
void toggleView(bool Enable);
38+
void collapseView(bool Enable);
39+
void toggleCollapseState();
40+
void setSize(int Size);
41+
42+
};
43+
44+
};
45+
46+
%End

‎sip/AutoHideSideBar.sip

+41
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
%Import QtWidgets/QtWidgetsmod.sip
2+
3+
%If (Qt_5_0_0 -)
4+
5+
namespace ads
6+
{
7+
8+
9+
class CAutoHideSideBar : QScrollArea
10+
{
11+
12+
%TypeHeaderCode
13+
#include <AutoHideSideBar.h>
14+
%End
15+
16+
protected:
17+
virtual bool eventFilter(QObject *watched, QEvent *event);
18+
void saveState(QXmlStreamWriter& Stream) const;
19+
void insertTab(int Index, ads::CAutoHideTab* SideTab /Transfer/);
20+
21+
public:
22+
CAutoHideSideBar(ads::CDockContainerWidget* parent /TransferThis/, SideBarLocation area);
23+
virtual ~CAutoHideSideBar();
24+
void removeTab(ads::CAutoHideTab* SideTab) /TransferBack/;
25+
ads::CAutoHideDockContainer* insertDockWidget(int Index, ads::CDockWidget* DockWidget /Transfer/);
26+
void removeAutoHideWidget(ads::CAutoHideDockContainer* AutoHideWidget) /TransferBack/;
27+
void addAutoHideWidget(ads::CAutoHideDockContainer* AutoHideWidget);
28+
Qt::Orientation orientation() const;
29+
ads::CAutoHideTab* tabAt(int index) const;
30+
int tabCount() const;
31+
ads::SideBarLocation sideBarLocation() const;
32+
virtual QSize minimumSizeHint() const;
33+
virtual QSize sizeHint() const;
34+
int spacing() const;
35+
void setSpacing(int Spacing);
36+
CDockContainerWidget* dockContainer() const;
37+
};
38+
39+
};
40+
41+
%End

‎sip/AutoHideTab.sip

+36
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
%Import QtWidgets/QtWidgetsmod.sip
2+
3+
%If (Qt_5_0_0 -)
4+
5+
namespace ads
6+
{
7+
8+
class CAutoHideTab : CPushButton
9+
{
10+
11+
%TypeHeaderCode
12+
#include <AutoHideTab.h>
13+
%End
14+
15+
protected:
16+
void setSideBar(ads::CAutoHideSideBar *SideTabBar);
17+
void removeFromSideBar();
18+
virtual bool event(QEvent* event);
19+
20+
public:
21+
CAutoHideTab(QWidget* parent /TransferThis/ = 0);
22+
virtual ~CAutoHideTab();
23+
void updateStyle();
24+
ads::SideBarLocation sideBarLocation() const;
25+
void setOrientation(Qt::Orientation Orientation);
26+
Qt::Orientation orientation() const;
27+
bool isActiveTab() const;
28+
ads::CDockWidget* dockWidget() const;
29+
void setDockWidget(ads::CDockWidget* DockWidget);
30+
bool iconOnly() const;
31+
ads::CAutoHideSideBar* sideBar() const;
32+
};
33+
34+
};
35+
36+
%End

‎sip/DockAreaTitleBar.sip

+2
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,12 @@ public:
2727
virtual ~CDockAreaTitleBar();
2828
ads::CDockAreaTabBar* tabBar() const;
2929
QAbstractButton* button(ads::TitleBarButton which) const;
30+
ads::CElidingLabel* autoHideTitleLabel() const;
3031
void updateDockWidgetActionsButtons();
3132
virtual void setVisible(bool Visible);
3233
void insertWidget(int index, QWidget *widget /Transfer/ );
3334
int indexOf(QWidget *widget) const;
35+
QString titleBarButtonToolTip(ads::TitleBarButton Button) const;
3436

3537

3638
signals:

‎sip/DockAreaWidget.sip

+5
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ protected:
2323
void updateTitleBarVisibility();
2424
void internalSetCurrentDockWidget(ads::CDockWidget* DockWidget /Transfer/);
2525
void markTitleBarMenuOutdated();
26+
void updateTitleBarButtonVisibility(bool IsTopLevel) const;
2627

2728
protected slots:
2829
void toggleView(bool Open);
@@ -52,6 +53,8 @@ public:
5253
ads::CDockWidget* currentDockWidget() const;
5354
void setCurrentDockWidget(ads::CDockWidget* DockWidget);
5455
void saveState(QXmlStreamWriter& Stream) const;
56+
static bool restoreState(ads::CDockingStateReader& Stream, ads::CDockAreaWidget*& CreatedWidget,
57+
bool Testing, ads::CDockContainerWidget* ParentContainer);
5558
ads::CDockWidget::DockWidgetFeatures features(ads::eBitwiseOperator Mode = ads::BitwiseAnd) const;
5659
QAbstractButton* titleBarButton(ads::TitleBarButton which) const;
5760
virtual void setVisible(bool Visible);
@@ -65,6 +68,8 @@ public:
6568
void setDockAreaFlag(eDockAreaFlag Flag, bool On);
6669

6770
bool isCentralWidgetArea() const;
71+
bool containsCentralWidget() const;
72+
bool isTopLevelArea() const;
6873

6974
public slots:
7075
void setCurrentIndex(int index);

‎sip/DockComponentsFactory.sip

+1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ class CDockComponentsFactory
1313
public:
1414
virtual ~CDockComponentsFactory();
1515
virtual CDockWidgetTab* createDockWidgetTab(CDockWidget* DockWidget /Transfer/ ) const;
16+
virtual CAutoHideTab* createDockWidgetSideTab(CDockWidget* DockWidget /Transfer/) const;
1617
virtual CDockAreaTabBar* createDockAreaTabBar(CDockAreaWidget* DockArea /Transfer/ ) const;
1718
virtual CDockAreaTitleBar* createDockAreaTitleBar(CDockAreaWidget* DockArea /Transfer/ ) const;
1819
static const CDockComponentsFactory* factory();

‎sip/DockContainerWidget.sip

+15-94
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ class CDockContainerWidget : QFrame
2121
protected:
2222
virtual bool event(QEvent *e);
2323
QSplitter* rootSplitter() const;
24+
ads::CAutoHideDockContainer* createAndSetupAutoHideContainer(ads::SideBarLocation area, ads::CDockWidget* DockWidget /Transfer/);
2425
void createRootSplitter();
2526
void dropFloatingWidget(ads::CFloatingDockContainer* FloatingWidget, const QPoint& TargetPos);
2627
void dropWidget(QWidget* Widget, DockWidgetArea DropArea, CDockAreaWidget* TargetAreaWidget);
@@ -33,124 +34,44 @@ protected:
3334
ads::CDockAreaWidget* topLevelDockArea() const;
3435
QList<ads::CDockWidget*> dockWidgets() const;
3536
void updateSplitterHandles(QSplitter* splitter);
37+
void registerAutoHideWidget(ads::CAutoHideDockContainer* AutoHideWidget /Transfer/);
38+
void removeAutoHideWidget(ads::CAutoHideDockContainer* AutoHideWidget /TransferBack/);
39+
void handleAutoHideWidgetEvent(QEvent* e, QWidget* w);
3640

3741
public:
38-
/**
39-
* Default Constructor
40-
*/
4142
CDockContainerWidget(ads::CDockManager* DockManager /TransferThis/, QWidget* parent /TransferThis/ = 0);
42-
43-
/**
44-
* Virtual Destructor
45-
*/
4643
virtual ~CDockContainerWidget();
47-
48-
/**
49-
* Adds dockwidget into the given area.
50-
* If DockAreaWidget is not null, then the area parameter indicates the area
51-
* into the DockAreaWidget. If DockAreaWidget is null, the Dockwidget will
52-
* be dropped into the container.
53-
* \return Returns the dock area widget that contains the new DockWidget
54-
*/
5544
ads::CDockAreaWidget* addDockWidget(ads::DockWidgetArea area, ads::CDockWidget* Dockwidget /Transfer/,
56-
ads::CDockAreaWidget* DockAreaWidget /Transfer/ = 0);
57-
58-
/**
59-
* Removes dockwidget
60-
*/
45+
ads::CDockAreaWidget* DockAreaWidget /Transfer/ = 0,
46+
int Index = -1);
6147
void removeDockWidget(ads::CDockWidget* Dockwidget) /TransferBack/;
62-
63-
/**
64-
* Returns the current zOrderIndex
65-
*/
6648
virtual unsigned int zOrderIndex() const;
67-
68-
/**
69-
* This function returns true if this container widgets z order index is
70-
* higher than the index of the container widget given in Other parameter
71-
*/
7249
bool isInFrontOf(ads::CDockContainerWidget* Other) const;
73-
74-
/**
75-
* Returns the dock area at teh given global position or 0 if there is no
76-
* dock area at this position
77-
*/
7850
ads::CDockAreaWidget* dockAreaAt(const QPoint& GlobalPos) const;
79-
80-
/**
81-
* Returns the dock area at the given Index or 0 if the index is out of
82-
* range
83-
*/
8451
ads::CDockAreaWidget* dockArea(int Index) const;
85-
86-
/**
87-
* Returns the list of dock areas that are not closed
88-
* If all dock widgets in a dock area are closed, the dock area will be closed
89-
*/
9052
QList<ads::CDockAreaWidget*> openedDockAreas() const;
53+
QList<ads::CDockWidget*> openedDockWidgets() const;
9154
bool hasTopLevelDockWidget() const;
92-
93-
/**
94-
* Returns the number of dock areas in this container
95-
*/
9655
int dockAreaCount() const;
97-
98-
/**
99-
* Returns the number of visible dock areas
100-
*/
10156
int visibleDockAreaCount() const;
102-
103-
/**
104-
* This function returns true, if this container is in a floating widget
105-
*/
10657
bool isFloating() const;
107-
108-
/**
109-
* Dumps the layout for debugging purposes
110-
*/
11158
void dumpLayout();
112-
113-
/**
114-
* This functions returns the dock widget features of all dock widget in
115-
* this container.
116-
* A bitwise and is used to combine the flags of all dock widgets. That
117-
* means, if only dock widget does not support a certain flag, the whole
118-
* dock are does not support the flag.
119-
*/
12059
ads::CDockWidget::DockWidgetFeatures features() const;
121-
122-
/**
123-
* If this dock container is in a floating widget, this function returns
124-
* the floating widget.
125-
* Else, it returns a nullptr.
126-
*/
12760
ads::CFloatingDockContainer* floatingWidget() const;
128-
129-
/**
130-
* Call this function to close all dock areas except the KeepOpenArea
131-
*/
13261
void closeOtherAreas(ads::CDockAreaWidget* KeepOpenArea);
62+
ads::CAutoHideSideBar* sideTabBar(SideBarLocation area) const;
63+
QList<ads::CAutoHideDockContainer*> autoHideWidgets() const;
64+
QRect contentRect() const;
65+
QRect contentRectGlobal() const;
66+
ads::CDockManager* dockManager() const;
13367

13468
signals:
135-
/**
136-
* This signal is emitted if one or multiple dock areas has been added to
137-
* the internal list of dock areas.
138-
* If multiple dock areas are inserted, this signal is emitted only once
139-
*/
14069
void dockAreasAdded();
141-
142-
/**
143-
* This signal is emitted if one or multiple dock areas has been removed
144-
*/
70+
void autoHideWidgetCreated(ads::CAutoHideDockContainer* AutoHideWidget);
14571
void dockAreasRemoved();
146-
147-
/**
148-
* This signal is emitted if a dock area is opened or closed via
149-
* toggleView() function
150-
*/
15172
void dockAreaViewToggled(ads::CDockAreaWidget* DockArea, bool Open);
152-
}; // class DockContainerWidget
15373
};
154-
// namespace ads
74+
75+
};
15576

15677
%End

‎sip/DockFocusController.sip

+1
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ public:
2222
void notifyFloatingWidgetDrop(ads::CFloatingDockContainer* FloatingWidget);
2323
ads::CDockWidget* focusedDockWidget() const;
2424
void setDockWidgetTabFocused(ads::CDockWidgetTab* Tab);
25+
void clearDockWidgetFocus(ads::CDockWidget* dockWidget);
2526

2627
public slots:
2728
void setDockWidgetFocused(ads::CDockWidget* focusedNow);

0 commit comments

Comments
 (0)
Please sign in to comment.