32 Constructor |
32 Constructor |
33 |
33 |
34 @param orientation orientation of the sidebar widget (North, East, South, West) |
34 @param orientation orientation of the sidebar widget (North, East, South, West) |
35 @param parent parent widget (QWidget) |
35 @param parent parent widget (QWidget) |
36 """ |
36 """ |
37 QWidget.__init__(self, parent) |
37 super().__init__(parent) |
38 |
38 |
39 self.__tabBar = QTabBar() |
39 self.__tabBar = QTabBar() |
40 self.__tabBar.setDrawBase(True) |
40 self.__tabBar.setDrawBase(True) |
41 self.__tabBar.setShape(QTabBar.RoundedNorth) |
41 self.__tabBar.setShape(QTabBar.RoundedNorth) |
42 self.__stackedWidget = QStackedWidget(self) |
42 self.__stackedWidget = QStackedWidget(self) |