61 self.monthlyCheckRadioButton.setChecked(True) |
61 self.monthlyCheckRadioButton.setChecked(True) |
62 |
62 |
63 self.downloadedOnlyCheckBox.setChecked( |
63 self.downloadedOnlyCheckBox.setChecked( |
64 Preferences.getPluginManager("CheckInstalledOnly")) |
64 Preferences.getPluginManager("CheckInstalledOnly")) |
65 |
65 |
66 self.__repositoryUrl = Preferences.getUI("PluginRepositoryUrl5") |
66 self.__repositoryUrl = Preferences.getUI("PluginRepositoryUrl6") |
67 self.repositoryUrlEdit.setText(self.__repositoryUrl) |
67 self.repositoryUrlEdit.setText(self.__repositoryUrl) |
68 |
68 |
69 def save(self): |
69 def save(self): |
70 """ |
70 """ |
71 Public slot to save the Viewmanager configuration. |
71 Public slot to save the Viewmanager configuration. |
97 "CheckInstalledOnly", |
97 "CheckInstalledOnly", |
98 self.downloadedOnlyCheckBox.isChecked()) |
98 self.downloadedOnlyCheckBox.isChecked()) |
99 |
99 |
100 if self.repositoryUrlEdit.text() != self.__repositoryUrl: |
100 if self.repositoryUrlEdit.text() != self.__repositoryUrl: |
101 Preferences.setUI( |
101 Preferences.setUI( |
102 "PluginRepositoryUrl5", self.repositoryUrlEdit.text()) |
102 "PluginRepositoryUrl6", self.repositoryUrlEdit.text()) |
103 |
103 |
104 @pyqtSlot() |
104 @pyqtSlot() |
105 def on_downloadDirButton_clicked(self): |
105 def on_downloadDirButton_clicked(self): |
106 """ |
106 """ |
107 Private slot to handle the directory selection via dialog. |
107 Private slot to handle the directory selection via dialog. |