-
Notifications
You must be signed in to change notification settings - Fork 129
/
advanced-dock.py
122 lines (101 loc) · 4.37 KB
/
advanced-dock.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
#!/usr/bin/env python
#
# The MIT License (MIT)
#
# Copyright (c) <2021-Present> <Alex Huszagh>
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the 'Software'), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
# THE SOFTWARE.
'''
advanced-dock
=============
Simple PyQt application using the advanced-docking-system.
'''
# pylint: disable=no-name-in-module,import-error
import sys
import shared
parser = shared.create_parser()
parser.add_argument(
'--use-internal', help='''use the dock manager internal stylesheet.''', action='store_true'
)
# https://github.com/githubuser0xFFFF/Qt-Advanced-Docking-System/blob/master/doc/user-guide.md#configuration-flags
parser.add_argument(
'--focus-highlighting',
help='''use the focus highlighting (and other configuration flags).''',
action='store_true',
)
# setConfigFlag
args, unknown = shared.parse_args(parser)
QtCore, QtGui, QtWidgets = shared.import_qt(args)
compat = shared.get_compat_definitions(args)
if args.qt_framework == 'pyqt5':
from PyQtAds import QtAds # pyright: ignore[reportMissingImports]
elif args.qt_framework == 'pyside6':
import PySide6QtAds as QtAds # pyright: ignore[reportMissingImports]
else:
raise ValueError('Only the Qt frameworks "pyqt5" and "pyside6" are supported.')
def main():
'Application entry point'
app, window = shared.setup_app(args, unknown, compat)
# setup the dock manager
window.setObjectName('MainWindow')
window.resize(1068, 824)
widget = QtWidgets.QWidget(window)
window.setCentralWidget(widget)
if args.focus_highlighting:
QtAds.CDockManager.setConfigFlag(QtAds.CDockManager.FocusHighlighting, True)
dock_manager = QtAds.CDockManager(window)
DockArea = QtAds.DockWidgetArea
# add widgets to the dock manager
label_widget = QtAds.CDockWidget('Dock')
label = QtWidgets.QLabel('Some label')
label_widget.setWidget(label)
dock_area = dock_manager.setCentralWidget(label_widget)
dock_area.setAllowedAreas(DockArea.OuterDockAreas)
list_widget = QtAds.CDockWidget('List')
lst = QtWidgets.QListWidget()
for index in range(10):
lst.addItem(QtWidgets.QListWidgetItem(f'Item {index + 1}'))
list_widget.setWidget(lst)
list_widget.setMinimumSizeHintMode(QtAds.CDockWidget.MinimumSizeHintFromDockWidget)
dock_manager.addDockWidget(DockArea.LeftDockWidgetArea, list_widget, dock_area)
table_widget = QtAds.CDockWidget('Table')
table = QtWidgets.QTableWidget()
# make sure we have both scroll areas active.
table.setColumnCount(40)
table.setRowCount(40)
table_widget.setWidget(table)
table_widget.setMinimumSizeHintMode(QtAds.CDockWidget.MinimumSizeHintFromDockWidget)
dock_manager.addDockWidget(DockArea.RightDockWidgetArea, table_widget, dock_area)
tab_widget = QtAds.CDockWidget('Tab Widget')
tab = QtWidgets.QTabWidget()
tab.setTabPosition(compat.North)
tab.addTab(QtWidgets.QWidget(), 'Tab 1')
tab.addTab(QtWidgets.QWidget(), 'Tab 2')
tab.addTab(QtWidgets.QWidget(), 'Tab 3')
tab_widget.setWidget(tab)
tab_widget.setMinimumSizeHintMode(QtAds.CDockWidget.MinimumSizeHintFromDockWidget)
dock_manager.addDockWidget(DockArea.BottomDockWidgetArea, tab_widget, dock_area)
if not args.use_internal:
dock_manager.setStyleSheet('')
# run
window.setWindowState(compat.WindowMaximized)
shared.set_stylesheet(args, app, compat)
return shared.exec_app(args, app, window)
if __name__ == '__main__':
sys.exit(main())