1482 if sb: |
1482 if sb: |
1483 sb.setValue(0) |
1483 sb.setValue(0) |
1484 |
1484 |
1485 self.__currentConfigurationPageName = pageName |
1485 self.__currentConfigurationPageName = pageName |
1486 |
1486 |
1487 def __createInterfaceLightPageWithSidebars(self, configDlg): # noqa: U100 |
1487 def __createInterfaceLightPageWithSidebars(self, _configDlg): |
1488 """ |
1488 """ |
1489 Private method to create the interface configuration page in light mode. |
1489 Private method to create the interface configuration page in light mode. |
1490 |
1490 |
1491 @param configDlg reference to the configuration dialog |
1491 @param _configDlg reference to the configuration dialog (unused) |
1492 @type ConfigurationWidget |
1492 @type ConfigurationWidget |
1493 @return reference to the configuration page |
1493 @return reference to the configuration page |
1494 @rtype InterfaceLightPage |
1494 @rtype InterfaceLightPage |
1495 """ |
1495 """ |
1496 from .ConfigurationPages import InterfaceLightPage |
1496 from .ConfigurationPages import InterfaceLightPage |
1497 |
1497 |
1498 page = InterfaceLightPage.create(self, withSidebars=True) |
1498 page = InterfaceLightPage.create(self, withSidebars=True) |
1499 return page |
1499 return page |
1500 |
1500 |
1501 def resizeEvent(self, evt): |
1501 def resizeEvent(self, _evt): |
1502 """ |
1502 """ |
1503 Protected method to handle the resizing of the widget. |
1503 Protected method to handle the resizing of the widget. |
1504 |
1504 |
1505 @param evt reference to the event object |
1505 @param _evt reference to the event object (unused) |
1506 @type QResizeEvent |
1506 @type QResizeEvent |
1507 """ |
1507 """ |
1508 self.__resizeConfigStack() |
1508 self.__resizeConfigStack() |
1509 |
1509 |
1510 def __resizeConfigStack(self): |
1510 def __resizeConfigStack(self): |