151 def on_mailAuthenticationGroup_toggled(self, checked): |
151 def on_mailAuthenticationGroup_toggled(self, checked): |
152 """ |
152 """ |
153 Private slot to handle a change of the state of the authentication |
153 Private slot to handle a change of the state of the authentication |
154 group. |
154 group. |
155 |
155 |
156 @param checked state of the group (boolean) |
156 @param checked state of the group |
|
157 @type bool |
157 """ |
158 """ |
158 self.__updateTestButton() |
159 self.__updateTestButton() |
159 |
160 |
160 @pyqtSlot(str) |
161 @pyqtSlot(str) |
161 def on_mailUserEdit_textChanged(self, txt): |
162 def on_mailUserEdit_textChanged(self, txt): |
162 """ |
163 """ |
163 Private slot to handle a change of the text of the user edit. |
164 Private slot to handle a change of the text of the user edit. |
164 |
165 |
165 @param txt current text of the edit (string) |
166 @param txt current text of the edit |
|
167 @type str |
166 """ |
168 """ |
167 self.__updateTestButton() |
169 self.__updateTestButton() |
168 |
170 |
169 @pyqtSlot(str) |
171 @pyqtSlot(str) |
170 def on_mailPasswordEdit_textChanged(self, txt): |
172 def on_mailPasswordEdit_textChanged(self, txt): |
171 """ |
173 """ |
172 Private slot to handle a change of the text of the user edit. |
174 Private slot to handle a change of the text of the user edit. |
173 |
175 |
174 @param txt current text of the edit (string) |
176 @param txt current text of the edit |
|
177 @type str |
175 """ |
178 """ |
176 self.__updateTestButton() |
179 self.__updateTestButton() |
177 |
180 |
178 @pyqtSlot() |
181 @pyqtSlot() |
179 def on_testButton_clicked(self): |
182 def on_testButton_clicked(self): |
312 def create(dlg): # noqa: U100 |
315 def create(dlg): # noqa: U100 |
313 """ |
316 """ |
314 Module function to create the configuration page. |
317 Module function to create the configuration page. |
315 |
318 |
316 @param dlg reference to the configuration dialog |
319 @param dlg reference to the configuration dialog |
317 @return reference to the instantiated page (ConfigurationPageBase) |
320 @type ConfigurationDialog |
|
321 @return reference to the instantiated page |
|
322 @rtype ConfigurationPageBase |
318 """ |
323 """ |
319 page = EmailPage() |
324 page = EmailPage() |
320 return page |
325 return page |