117 def on_repositoryUrlEditButton_toggled(self, checked): |
117 def on_repositoryUrlEditButton_toggled(self, checked): |
118 """ |
118 """ |
119 Private slot to set the read only status of the repository URL line |
119 Private slot to set the read only status of the repository URL line |
120 edit. |
120 edit. |
121 |
121 |
122 @param checked state of the push button (boolean) |
122 @param checked state of the push button |
|
123 @type bool |
123 """ |
124 """ |
124 self.repositoryUrlEdit.setReadOnly(not checked) |
125 self.repositoryUrlEdit.setReadOnly(not checked) |
125 |
126 |
126 |
127 |
127 def create(dlg): # noqa: U100 |
128 def create(dlg): # noqa: U100 |
128 """ |
129 """ |
129 Module function to create the configuration page. |
130 Module function to create the configuration page. |
130 |
131 |
131 @param dlg reference to the configuration dialog |
132 @param dlg reference to the configuration dialog |
132 @return reference to the instantiated page (ConfigurationPageBase) |
133 @type ConfigurationDialog |
|
134 @return reference to the instantiated page |
|
135 @rtype ConfigurationPageBase |
133 """ |
136 """ |
134 page = PluginManagerPage() |
137 page = PluginManagerPage() |
135 return page |
138 return page |