29 is a separate window (boolean) |
29 is a separate window (boolean) |
30 @param separateBrowser flag indicating that the file browser |
30 @param separateBrowser flag indicating that the file browser |
31 is a separate window (boolean) |
31 is a separate window (boolean) |
32 @param parent parent widget of this dialog (QWidget) |
32 @param parent parent widget of this dialog (QWidget) |
33 """ |
33 """ |
34 QDialog.__init__(self, parent) |
34 super().__init__(parent) |
35 |
35 |
36 self.__layout = layout |
36 self.__layout = layout |
37 if self.__layout == "Toolboxes": |
37 if self.__layout == "Toolboxes": |
38 self.ui = Ui_ViewProfileToolboxesDialog() |
38 self.ui = Ui_ViewProfileToolboxesDialog() |
39 elif self.__layout == "Sidebars": |
39 elif self.__layout == "Sidebars": |