253 self.styleSheetEdit.setText(Utilities.toNativeSeparators(file)) |
253 self.styleSheetEdit.setText(Utilities.toNativeSeparators(file)) |
254 |
254 |
255 @pyqtSlot() |
255 @pyqtSlot() |
256 def on_resetLayoutButton_clicked(self): |
256 def on_resetLayoutButton_clicked(self): |
257 """ |
257 """ |
258 Private method to reset layout to factory defaults |
258 Private method to reset layout to factory defaults. |
259 """ |
259 """ |
260 Preferences.resetLayout() |
260 Preferences.resetLayout() |
261 |
261 |
262 |
262 |
263 def create(dlg): |
263 def create(dlg): |
264 """ |
264 """ |
265 Module function to create the configuration page. |
265 Module function to create the configuration page. |
266 |
266 |
267 @param dlg reference to the configuration dialog |
267 @param dlg reference to the configuration dialog |
|
268 @return reference to the instantiated page (ConfigurationPageBase) |
268 """ |
269 """ |
269 page = InterfacePage() |
270 page = InterfacePage() |
270 return page |
271 return page |