55 self.__stackedWidget = QStackedWidget(self) |
55 self.__stackedWidget = QStackedWidget(self) |
56 self.__stackedWidget.setContentsMargins(0, 0, 0, 0) |
56 self.__stackedWidget.setContentsMargins(0, 0, 0, 0) |
57 |
57 |
58 self.layout = QBoxLayout(QBoxLayout.Direction.TopToBottom) |
58 self.layout = QBoxLayout(QBoxLayout.Direction.TopToBottom) |
59 self.layout.setContentsMargins(0, 0, 0, 0) |
59 self.layout.setContentsMargins(0, 0, 0, 0) |
60 self.layout.setSpacing(0) |
60 self.layout.setSpacing(3) |
61 self.layout.addWidget(self.__iconBar) |
61 self.layout.addWidget(self.__iconBar) |
62 self.layout.addWidget(self.__stackedWidget) |
62 self.layout.addWidget(self.__stackedWidget) |
63 self.setLayout(self.layout) |
63 self.setLayout(self.layout) |
64 |
64 |
65 self.__minimized = False |
65 self.__minimized = False |