23 ConfigurationPageBase.__init__(self) |
23 ConfigurationPageBase.__init__(self) |
24 self.setupUi(self) |
24 self.setupUi(self) |
25 self.setObjectName("ApplicationPage") |
25 self.setObjectName("ApplicationPage") |
26 |
26 |
27 # set initial values |
27 # set initial values |
28 self.singleApplicationCheckBox.setChecked(\ |
28 self.singleApplicationCheckBox.setChecked( |
29 Preferences.getUI("SingleApplicationMode")) |
29 Preferences.getUI("SingleApplicationMode")) |
30 self.splashScreenCheckBox.setChecked(\ |
30 self.splashScreenCheckBox.setChecked( |
31 Preferences.getUI("ShowSplash")) |
31 Preferences.getUI("ShowSplash")) |
32 |
32 |
33 openOnStartup = Preferences.getUI("OpenOnStartup") |
33 openOnStartup = Preferences.getUI("OpenOnStartup") |
34 if openOnStartup == 0: |
34 if openOnStartup == 0: |
35 self.noOpenRadioButton.setChecked(True) |
35 self.noOpenRadioButton.setChecked(True) |