src/eric7/Plugins/WizardPlugins/EricMessageBoxWizard/EricMessageBoxWizardDialog.py

branch
eric7
changeset 10692
9becf9ca115c
parent 10439
21c28b0f9e41
child 11090
f5f5f5803935
equal deleted inserted replaced
10691:d1a603a70f83 10692:9becf9ca115c
136 self.bTest.setEnabled(not self.rStandard.isChecked()) 136 self.bTest.setEnabled(not self.rStandard.isChecked())
137 137
138 self.eMessage.setEnabled(not self.rAboutQt.isChecked()) 138 self.eMessage.setEnabled(not self.rAboutQt.isChecked())
139 139
140 @pyqtSlot(bool) 140 @pyqtSlot(bool)
141 def on_rInformation_toggled(self, on): 141 def on_rInformation_toggled(self, _on):
142 """ 142 """
143 Private slot to handle the toggled signal of the rInformation 143 Private slot to handle the toggled signal of the rInformation
144 radio button. 144 radio button.
145 145
146 @param on toggle state (ignored) 146 @param _on toggle state (unused)
147 @type bool 147 @type bool
148 """ 148 """
149 self.__enabledGroups() 149 self.__enabledGroups()
150 150
151 @pyqtSlot(bool) 151 @pyqtSlot(bool)
152 def on_rQuestion_toggled(self, on): 152 def on_rQuestion_toggled(self, _on):
153 """ 153 """
154 Private slot to handle the toggled signal of the rQuestion 154 Private slot to handle the toggled signal of the rQuestion
155 radio button. 155 radio button.
156 156
157 @param on toggle state (ignored) 157 @param _on toggle state (unused)
158 @type bool 158 @type bool
159 """ 159 """
160 self.__enabledGroups() 160 self.__enabledGroups()
161 161
162 @pyqtSlot(bool) 162 @pyqtSlot(bool)
163 def on_rWarning_toggled(self, on): 163 def on_rWarning_toggled(self, _on):
164 """ 164 """
165 Private slot to handle the toggled signal of the rWarning 165 Private slot to handle the toggled signal of the rWarning
166 radio button. 166 radio button.
167 167
168 @param on toggle state (ignored) 168 @param _on toggle state (unused)
169 @type bool 169 @type bool
170 """ 170 """
171 self.__enabledGroups() 171 self.__enabledGroups()
172 172
173 @pyqtSlot(bool) 173 @pyqtSlot(bool)
174 def on_rCritical_toggled(self, on): 174 def on_rCritical_toggled(self, _on):
175 """ 175 """
176 Private slot to handle the toggled signal of the rCritical 176 Private slot to handle the toggled signal of the rCritical
177 radio button. 177 radio button.
178 178
179 @param on toggle state (ignored) 179 @param _on toggle state (unused)
180 @type bool 180 @type bool
181 """ 181 """
182 self.__enabledGroups() 182 self.__enabledGroups()
183 183
184 @pyqtSlot(bool) 184 @pyqtSlot(bool)
185 def on_rYesNo_toggled(self, on): 185 def on_rYesNo_toggled(self, _on):
186 """ 186 """
187 Private slot to handle the toggled signal of the rYesNo 187 Private slot to handle the toggled signal of the rYesNo
188 radio button. 188 radio button.
189 189
190 @param on toggle state (ignored) 190 @param _on toggle state (unused)
191 @type bool 191 @type bool
192 """ 192 """
193 self.__enabledGroups() 193 self.__enabledGroups()
194 194
195 @pyqtSlot(bool) 195 @pyqtSlot(bool)
196 def on_rRetryAbort_toggled(self, on): 196 def on_rRetryAbort_toggled(self, _on):
197 """ 197 """
198 Private slot to handle the toggled signal of the rRetryAbort 198 Private slot to handle the toggled signal of the rRetryAbort
199 radio button. 199 radio button.
200 200
201 @param on toggle state (ignored) 201 @param _on toggle state (unused)
202 @type bool 202 @type bool
203 """ 203 """
204 self.__enabledGroups() 204 self.__enabledGroups()
205 205
206 @pyqtSlot(bool) 206 @pyqtSlot(bool)
207 def on_rOkToClearData_toggled(self, on): 207 def on_rOkToClearData_toggled(self, _on):
208 """ 208 """
209 Private slot to handle the toggled signal of the rOkToClearData 209 Private slot to handle the toggled signal of the rOkToClearData
210 radio button. 210 radio button.
211 211
212 @param on toggle state (ignored) 212 @param _on toggle state (unused)
213 @type bool 213 @type bool
214 """ 214 """
215 self.__enabledGroups() 215 self.__enabledGroups()
216 216
217 @pyqtSlot(bool) 217 @pyqtSlot(bool)
218 def on_rAbout_toggled(self, on): 218 def on_rAbout_toggled(self, _on):
219 """ 219 """
220 Private slot to handle the toggled signal of the rAbout 220 Private slot to handle the toggled signal of the rAbout
221 radio button. 221 radio button.
222 222
223 @param on toggle state (ignored) 223 @param _on toggle state (unused)
224 @type bool 224 @type bool
225 """ 225 """
226 self.__enabledGroups() 226 self.__enabledGroups()
227 227
228 @pyqtSlot(bool) 228 @pyqtSlot(bool)
229 def on_rAboutQt_toggled(self, on): 229 def on_rAboutQt_toggled(self, _on):
230 """ 230 """
231 Private slot to handle the toggled signal of the rAboutQt 231 Private slot to handle the toggled signal of the rAboutQt
232 radio button. 232 radio button.
233 233
234 @param on toggle state (ignored) 234 @param _on toggle state (unused)
235 @type bool 235 @type bool
236 """ 236 """
237 self.__enabledGroups() 237 self.__enabledGroups()
238 238
239 @pyqtSlot(bool) 239 @pyqtSlot(bool)
240 def on_rStandard_toggled(self, on): 240 def on_rStandard_toggled(self, _on):
241 """ 241 """
242 Private slot to handle the toggled signal of the rStandard 242 Private slot to handle the toggled signal of the rStandard
243 radio button. 243 radio button.
244 244
245 @param on toggle state (ignored) 245 @param _on toggle state (unused)
246 @type bool 246 @type bool
247 """ 247 """
248 self.__enabledGroups() 248 self.__enabledGroups()
249 249
250 @pyqtSlot(QAbstractButton) 250 @pyqtSlot(QAbstractButton)

eric ide

mercurial