-
Notifications
You must be signed in to change notification settings - Fork 0
/
table_document.py
206 lines (148 loc) · 5.92 KB
/
table_document.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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
# This Python file uses the following encoding: utf-8
#
# Copyright 2022 naracanto <https://naracanto.github.io>.
#
# This file is part of PyTabelo <https://github.com/beletalabs/pytabelo>.
#
# PyTabelo is an open source table editor written in Python using
# the Python bindings for the Qt framework.
#
# PyTabelo is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published
# by the Free Software Foundation, either version 3 of the License,
# or (at your option) any later version.
#
# PyTabelo is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with PyTabelo. If not, see <https://www.gnu.org/licenses/>.
#
from PySide2.QtCore import Property, Signal, Qt, QSettings
from PySide2.QtWidgets import QTabWidget, QVBoxLayout, QWidget
class TableDocument(QWidget):
def __init__(self, parent=None):
""" """
super().__init__(parent=parent)
self._tabBarVisible = True
self._tabBox = QTabWidget()
self._tabBox.setDocumentMode(True)
self._tabBox.setMovable(True)
# self._tabBox.setTabsClosable(True)
self._tabBox.tabCloseRequested.connect(self._slotCloseTab)
self._loadSettings()
# Main layout
mainLayout = QVBoxLayout()
mainLayout.addWidget(self._tabBox)
self.setLayout(mainLayout)
def _loadSettings(self):
""" """
settings = QSettings()
# Sheet Tab Bar Visible
visible = settings.value("Document/SheetTabBarVisible", True, type=bool)
self._tabBarVisible = visible
self._setTabBarVisible(visible)
# Sheet Tab Bar Position
value = settings.value("Document/SheetTabBarPosition", QTabWidget.South, type=int)
values = (int(QTabWidget.North), int(QTabWidget.South))
position = QTabWidget.TabPosition(value) if value in values else QTabWidget.South
self._tabBox.setTabPosition(position)
# Sheet Tab Bar Auto Hide
enabled = settings.value("Document/SheetTabBarAutoHide", True, type=bool)
self._tabBox.setTabBarAutoHide(enabled)
def saveSettings(self):
""" """
settings = QSettings()
# Sheet Tab Bar Visible
visible = self._tabBarVisible
settings.setValue("Document/SheetTabBarVisible", visible)
#
# Property: tabBarVisible
#
def isTabBarVisible(self):
""" """
return self._tabBarVisible
def setTabBarVisible(self, visible):
""" """
if visible != self._tabBarVisible:
self._tabBarVisible = visible
self._setTabBarVisible(self._tabBarVisible)
self.tabBarVisibleChanged.emit(self._tabBarVisible)
def resetTabBarVisible(self):
""" """
self._tabBarVisible = True
self._setTabBarVisible(self._tabBarVisible)
self.tabBarVisibleChanged.emit(self._tabBarVisible)
def initTabBarVisible(self):
""" """
self._setTabBarVisible(self._tabBarVisible)
self.tabBarVisibleChanged.emit(self._tabBarVisible)
tabBarVisibleChanged = Signal(bool)
tabBarVisible = Property(bool, isTabBarVisible, setTabBarVisible, notify=tabBarVisibleChanged)
def _setTabBarVisible(self, visible):
""" """
if not (self._tabBox.count() <= 1 and self._tabBox.tabBarAutoHide()):
self._tabBox.tabBar().setVisible(visible)
#
# Property: tabBarPosition
#
def getTabBarPosition(self):
""" """
return self._tabBox.tabPosition()
def setTabBarPosition(self, position):
""" """
if position != self.getTabBarPosition():
self._tabBox.setTabPosition(position)
self.tabBarPositionChanged.emit(self.getTabBarPosition())
def resetTabBarPosition(self):
""" """
self._tabBox.setTabPosition(QTabWidget.South)
self.tabsPositionChanged.emit(self.getTabBarPosition())
def initTabBarPosition(self):
""" """
self.tabBarPositionChanged.emit(self.getTabBarPosition())
tabBarPositionChanged = Signal(QTabWidget.TabPosition)
tabBarPosition = Property(QTabWidget.TabPosition, getTabBarPosition, setTabBarPosition, notify=tabBarPositionChanged)
#
# Property: tabBarAutoHide
#
def isTabBarAutoHide(self):
""" """
return self._tabBox.tabBarAutoHide()
def setTabBarAutoHide(self, enabled):
""" """
if enabled != self.isTabBarAutoHide():
self._tabBox.setTabBarAutoHide(enabled)
self.tabBarAutoHideChanged.emit(self.isTabBarAutoHide())
def resetTabBarAutoHide(self):
""" """
self._tabBox.setTabBarAutoHide(True)
self.tabBarAutoHideChanged.emit(self.isTabBarAutoHide())
def initTabBarAutoHide(self):
""" """
self.tabBarAutoHideChanged.emit(self.isTabBarAutoHide())
tabBarAutoHideChanged = Signal(bool)
tabBarAutoHide = Property(bool, isTabBarAutoHide, setTabBarAutoHide, notify=tabBarAutoHideChanged)
#
# Slots
#
def slotAddTab(self, count):
""" """
if not self._tabBox.count():
for i in range(1, count 1):
widget = QWidget()
widget.setAttribute(Qt.WA_DeleteOnClose)
self._tabBox.addTab(widget, self.tr("Sheet {0}").format(i))
if self._tabBox.count() > 1:
self._tabBox.setTabsClosable(True)
def _slotCloseTab(self, index):
""" """
if self._tabBox.count() > 1:
widget = self._tabBox.widget(index)
if widget is not None:
widget.close()
self._tabBox.removeTab(index)
if self._tabBox.count() <= 1:
self._tabBox.setTabsClosable(False)