143 @param noOpenAtStartup flag indicating that the open at startup option |
149 @param noOpenAtStartup flag indicating that the open at startup option |
144 should not be executed (boolean) |
150 should not be executed (boolean) |
145 @param restartArguments list of command line parameters to be used for a |
151 @param restartArguments list of command line parameters to be used for a |
146 restart (list of strings) |
152 restart (list of strings) |
147 """ |
153 """ |
148 super().__init__() |
154 super(UserInterface, self).__init__() |
149 self.setAttribute(Qt.WA_DeleteOnClose) |
155 self.setAttribute(Qt.WA_DeleteOnClose) |
150 |
156 |
151 self.__restartArgs = restartArguments[:] |
157 self.__restartArgs = restartArguments[:] |
152 |
158 |
153 self.setStyle(Preferences.getUI("Style"), Preferences.getUI("StyleSheet")) |
159 self.setStyle(Preferences.getUI("Style"), Preferences.getUI("StyleSheet")) |