|
1 # -*- coding: utf-8 -*- |
|
2 |
|
3 """ |
|
4 Module implementing FontDialogOptionsDialog. |
|
5 """ |
|
6 |
|
7 from PyQt6.QtCore import pyqtSlot |
|
8 from PyQt6.QtWidgets import QDialog |
|
9 |
|
10 from .Ui_FontDialogOptionsDialog import Ui_FontDialogOptionsDialog |
|
11 |
|
12 |
|
13 class FontDialogOptionsDialog(QDialog, Ui_FontDialogOptionsDialog): |
|
14 """ |
|
15 Class documentation goes here. |
|
16 """ |
|
17 def __init__(self, parent=None): |
|
18 """ |
|
19 Constructor |
|
20 |
|
21 @param parent reference to the parent widget (defaults to None) |
|
22 @type QWidget (optional) |
|
23 """ |
|
24 super(FontDialogOptionsDialog, self).__init__(parent) |
|
25 self.setupUi(self) |
|
26 |
|
27 @pyqtSlot(QObject) |
|
28 def on_noNativeDialogCheckBox_destroyed(self, p0): |
|
29 """ |
|
30 Slot documentation goes here. |
|
31 |
|
32 @param p0 DESCRIPTION |
|
33 @type QObject |
|
34 """ |
|
35 # TODO: not implemented yet |
|
36 raise NotImplementedError |
|
37 |
|
38 @pyqtSlot() |
|
39 def on_noNativeDialogCheckBox_destroyed(self): |
|
40 """ |
|
41 Slot documentation goes here. |
|
42 """ |
|
43 # TODO: not implemented yet |
|
44 raise NotImplementedError |
|
45 |
|
46 @pyqtSlot(str) |
|
47 def on_noNativeDialogCheckBox_objectNameChanged(self, objectName): |
|
48 """ |
|
49 Slot documentation goes here. |
|
50 |
|
51 @param objectName DESCRIPTION |
|
52 @type str |
|
53 """ |
|
54 # TODO: not implemented yet |
|
55 raise NotImplementedError |
|
56 |
|
57 @pyqtSlot(str) |
|
58 def on_noNativeDialogCheckBox_windowTitleChanged(self, title): |
|
59 """ |
|
60 Slot documentation goes here. |
|
61 |
|
62 @param title DESCRIPTION |
|
63 @type str |
|
64 """ |
|
65 # TODO: not implemented yet |
|
66 raise NotImplementedError |
|
67 |
|
68 @pyqtSlot(QIcon) |
|
69 def on_noNativeDialogCheckBox_windowIconChanged(self, icon): |
|
70 """ |
|
71 Slot documentation goes here. |
|
72 |
|
73 @param icon DESCRIPTION |
|
74 @type QIcon |
|
75 """ |
|
76 # TODO: not implemented yet |
|
77 raise NotImplementedError |
|
78 |
|
79 @pyqtSlot(str) |
|
80 def on_noNativeDialogCheckBox_windowIconTextChanged(self, iconText): |
|
81 """ |
|
82 Slot documentation goes here. |
|
83 |
|
84 @param iconText DESCRIPTION |
|
85 @type str |
|
86 """ |
|
87 # TODO: not implemented yet |
|
88 raise NotImplementedError |
|
89 |
|
90 @pyqtSlot(QPoint) |
|
91 def on_noNativeDialogCheckBox_customContextMenuRequested(self, pos): |
|
92 """ |
|
93 Slot documentation goes here. |
|
94 |
|
95 @param pos DESCRIPTION |
|
96 @type QPoint |
|
97 """ |
|
98 # TODO: not implemented yet |
|
99 raise NotImplementedError |
|
100 |
|
101 @pyqtSlot() |
|
102 def on_noNativeDialogCheckBox_pressed(self): |
|
103 """ |
|
104 Slot documentation goes here. |
|
105 """ |
|
106 # TODO: not implemented yet |
|
107 raise NotImplementedError |
|
108 |
|
109 @pyqtSlot() |
|
110 def on_noNativeDialogCheckBox_released(self): |
|
111 """ |
|
112 Slot documentation goes here. |
|
113 """ |
|
114 # TODO: not implemented yet |
|
115 raise NotImplementedError |
|
116 |
|
117 @pyqtSlot(bool) |
|
118 def on_noNativeDialogCheckBox_clicked(self, checked): |
|
119 """ |
|
120 Slot documentation goes here. |
|
121 |
|
122 @param checked DESCRIPTION |
|
123 @type bool |
|
124 """ |
|
125 # TODO: not implemented yet |
|
126 raise NotImplementedError |
|
127 |
|
128 @pyqtSlot() |
|
129 def on_noNativeDialogCheckBox_clicked(self): |
|
130 """ |
|
131 Slot documentation goes here. |
|
132 """ |
|
133 # TODO: not implemented yet |
|
134 raise NotImplementedError |
|
135 |
|
136 @pyqtSlot(bool) |
|
137 def on_noNativeDialogCheckBox_toggled(self, checked): |
|
138 """ |
|
139 Slot documentation goes here. |
|
140 |
|
141 @param checked DESCRIPTION |
|
142 @type bool |
|
143 """ |
|
144 # TODO: not implemented yet |
|
145 raise NotImplementedError |
|
146 |
|
147 @pyqtSlot(int) |
|
148 def on_noNativeDialogCheckBox_stateChanged(self, p0): |
|
149 """ |
|
150 Slot documentation goes here. |
|
151 |
|
152 @param p0 DESCRIPTION |
|
153 @type int |
|
154 """ |
|
155 # TODO: not implemented yet |
|
156 raise NotImplementedError |
|
157 |
|
158 @pyqtSlot(QObject) |
|
159 def on_scalableCheckBox_destroyed(self, p0): |
|
160 """ |
|
161 Slot documentation goes here. |
|
162 |
|
163 @param p0 DESCRIPTION |
|
164 @type QObject |
|
165 """ |
|
166 # TODO: not implemented yet |
|
167 raise NotImplementedError |
|
168 |
|
169 @pyqtSlot() |
|
170 def on_scalableCheckBox_destroyed(self): |
|
171 """ |
|
172 Slot documentation goes here. |
|
173 """ |
|
174 # TODO: not implemented yet |
|
175 raise NotImplementedError |
|
176 |
|
177 @pyqtSlot(str) |
|
178 def on_scalableCheckBox_objectNameChanged(self, objectName): |
|
179 """ |
|
180 Slot documentation goes here. |
|
181 |
|
182 @param objectName DESCRIPTION |
|
183 @type str |
|
184 """ |
|
185 # TODO: not implemented yet |
|
186 raise NotImplementedError |
|
187 |
|
188 @pyqtSlot(str) |
|
189 def on_scalableCheckBox_windowTitleChanged(self, title): |
|
190 """ |
|
191 Slot documentation goes here. |
|
192 |
|
193 @param title DESCRIPTION |
|
194 @type str |
|
195 """ |
|
196 # TODO: not implemented yet |
|
197 raise NotImplementedError |
|
198 |
|
199 @pyqtSlot(QIcon) |
|
200 def on_scalableCheckBox_windowIconChanged(self, icon): |
|
201 """ |
|
202 Slot documentation goes here. |
|
203 |
|
204 @param icon DESCRIPTION |
|
205 @type QIcon |
|
206 """ |
|
207 # TODO: not implemented yet |
|
208 raise NotImplementedError |
|
209 |
|
210 @pyqtSlot(str) |
|
211 def on_scalableCheckBox_windowIconTextChanged(self, iconText): |
|
212 """ |
|
213 Slot documentation goes here. |
|
214 |
|
215 @param iconText DESCRIPTION |
|
216 @type str |
|
217 """ |
|
218 # TODO: not implemented yet |
|
219 raise NotImplementedError |
|
220 |
|
221 @pyqtSlot(QPoint) |
|
222 def on_scalableCheckBox_customContextMenuRequested(self, pos): |
|
223 """ |
|
224 Slot documentation goes here. |
|
225 |
|
226 @param pos DESCRIPTION |
|
227 @type QPoint |
|
228 """ |
|
229 # TODO: not implemented yet |
|
230 raise NotImplementedError |
|
231 |
|
232 @pyqtSlot() |
|
233 def on_scalableCheckBox_pressed(self): |
|
234 """ |
|
235 Slot documentation goes here. |
|
236 """ |
|
237 # TODO: not implemented yet |
|
238 raise NotImplementedError |
|
239 |
|
240 @pyqtSlot() |
|
241 def on_scalableCheckBox_released(self): |
|
242 """ |
|
243 Slot documentation goes here. |
|
244 """ |
|
245 # TODO: not implemented yet |
|
246 raise NotImplementedError |
|
247 |
|
248 @pyqtSlot(bool) |
|
249 def on_scalableCheckBox_clicked(self, checked): |
|
250 """ |
|
251 Slot documentation goes here. |
|
252 |
|
253 @param checked DESCRIPTION |
|
254 @type bool |
|
255 """ |
|
256 # TODO: not implemented yet |
|
257 raise NotImplementedError |
|
258 |
|
259 @pyqtSlot() |
|
260 def on_scalableCheckBox_clicked(self): |
|
261 """ |
|
262 Slot documentation goes here. |
|
263 """ |
|
264 # TODO: not implemented yet |
|
265 raise NotImplementedError |
|
266 |
|
267 @pyqtSlot(bool) |
|
268 def on_scalableCheckBox_toggled(self, checked): |
|
269 """ |
|
270 Slot documentation goes here. |
|
271 |
|
272 @param checked DESCRIPTION |
|
273 @type bool |
|
274 """ |
|
275 # TODO: not implemented yet |
|
276 raise NotImplementedError |
|
277 |
|
278 @pyqtSlot(int) |
|
279 def on_scalableCheckBox_stateChanged(self, p0): |
|
280 """ |
|
281 Slot documentation goes here. |
|
282 |
|
283 @param p0 DESCRIPTION |
|
284 @type int |
|
285 """ |
|
286 # TODO: not implemented yet |
|
287 raise NotImplementedError |
|
288 |
|
289 @pyqtSlot(QObject) |
|
290 def on_nonScalableCheckBox_destroyed(self, p0): |
|
291 """ |
|
292 Slot documentation goes here. |
|
293 |
|
294 @param p0 DESCRIPTION |
|
295 @type QObject |
|
296 """ |
|
297 # TODO: not implemented yet |
|
298 raise NotImplementedError |
|
299 |
|
300 @pyqtSlot() |
|
301 def on_nonScalableCheckBox_destroyed(self): |
|
302 """ |
|
303 Slot documentation goes here. |
|
304 """ |
|
305 # TODO: not implemented yet |
|
306 raise NotImplementedError |
|
307 |
|
308 @pyqtSlot(str) |
|
309 def on_nonScalableCheckBox_objectNameChanged(self, objectName): |
|
310 """ |
|
311 Slot documentation goes here. |
|
312 |
|
313 @param objectName DESCRIPTION |
|
314 @type str |
|
315 """ |
|
316 # TODO: not implemented yet |
|
317 raise NotImplementedError |
|
318 |
|
319 @pyqtSlot(str) |
|
320 def on_nonScalableCheckBox_windowTitleChanged(self, title): |
|
321 """ |
|
322 Slot documentation goes here. |
|
323 |
|
324 @param title DESCRIPTION |
|
325 @type str |
|
326 """ |
|
327 # TODO: not implemented yet |
|
328 raise NotImplementedError |
|
329 |
|
330 @pyqtSlot(QIcon) |
|
331 def on_nonScalableCheckBox_windowIconChanged(self, icon): |
|
332 """ |
|
333 Slot documentation goes here. |
|
334 |
|
335 @param icon DESCRIPTION |
|
336 @type QIcon |
|
337 """ |
|
338 # TODO: not implemented yet |
|
339 raise NotImplementedError |
|
340 |
|
341 @pyqtSlot(str) |
|
342 def on_nonScalableCheckBox_windowIconTextChanged(self, iconText): |
|
343 """ |
|
344 Slot documentation goes here. |
|
345 |
|
346 @param iconText DESCRIPTION |
|
347 @type str |
|
348 """ |
|
349 # TODO: not implemented yet |
|
350 raise NotImplementedError |
|
351 |
|
352 @pyqtSlot(QPoint) |
|
353 def on_nonScalableCheckBox_customContextMenuRequested(self, pos): |
|
354 """ |
|
355 Slot documentation goes here. |
|
356 |
|
357 @param pos DESCRIPTION |
|
358 @type QPoint |
|
359 """ |
|
360 # TODO: not implemented yet |
|
361 raise NotImplementedError |
|
362 |
|
363 @pyqtSlot() |
|
364 def on_nonScalableCheckBox_pressed(self): |
|
365 """ |
|
366 Slot documentation goes here. |
|
367 """ |
|
368 # TODO: not implemented yet |
|
369 raise NotImplementedError |
|
370 |
|
371 @pyqtSlot() |
|
372 def on_nonScalableCheckBox_released(self): |
|
373 """ |
|
374 Slot documentation goes here. |
|
375 """ |
|
376 # TODO: not implemented yet |
|
377 raise NotImplementedError |
|
378 |
|
379 @pyqtSlot(bool) |
|
380 def on_nonScalableCheckBox_clicked(self, checked): |
|
381 """ |
|
382 Slot documentation goes here. |
|
383 |
|
384 @param checked DESCRIPTION |
|
385 @type bool |
|
386 """ |
|
387 # TODO: not implemented yet |
|
388 raise NotImplementedError |
|
389 |
|
390 @pyqtSlot() |
|
391 def on_nonScalableCheckBox_clicked(self): |
|
392 """ |
|
393 Slot documentation goes here. |
|
394 """ |
|
395 # TODO: not implemented yet |
|
396 raise NotImplementedError |
|
397 |
|
398 @pyqtSlot(bool) |
|
399 def on_nonScalableCheckBox_toggled(self, checked): |
|
400 """ |
|
401 Slot documentation goes here. |
|
402 |
|
403 @param checked DESCRIPTION |
|
404 @type bool |
|
405 """ |
|
406 # TODO: not implemented yet |
|
407 raise NotImplementedError |
|
408 |
|
409 @pyqtSlot(int) |
|
410 def on_nonScalableCheckBox_stateChanged(self, p0): |
|
411 """ |
|
412 Slot documentation goes here. |
|
413 |
|
414 @param p0 DESCRIPTION |
|
415 @type int |
|
416 """ |
|
417 # TODO: not implemented yet |
|
418 raise NotImplementedError |
|
419 |
|
420 @pyqtSlot(QObject) |
|
421 def on_monospacedCheckBox_destroyed(self, p0): |
|
422 """ |
|
423 Slot documentation goes here. |
|
424 |
|
425 @param p0 DESCRIPTION |
|
426 @type QObject |
|
427 """ |
|
428 # TODO: not implemented yet |
|
429 raise NotImplementedError |
|
430 |
|
431 @pyqtSlot() |
|
432 def on_monospacedCheckBox_destroyed(self): |
|
433 """ |
|
434 Slot documentation goes here. |
|
435 """ |
|
436 # TODO: not implemented yet |
|
437 raise NotImplementedError |
|
438 |
|
439 @pyqtSlot(str) |
|
440 def on_monospacedCheckBox_objectNameChanged(self, objectName): |
|
441 """ |
|
442 Slot documentation goes here. |
|
443 |
|
444 @param objectName DESCRIPTION |
|
445 @type str |
|
446 """ |
|
447 # TODO: not implemented yet |
|
448 raise NotImplementedError |
|
449 |
|
450 @pyqtSlot(str) |
|
451 def on_monospacedCheckBox_windowTitleChanged(self, title): |
|
452 """ |
|
453 Slot documentation goes here. |
|
454 |
|
455 @param title DESCRIPTION |
|
456 @type str |
|
457 """ |
|
458 # TODO: not implemented yet |
|
459 raise NotImplementedError |
|
460 |
|
461 @pyqtSlot(QIcon) |
|
462 def on_monospacedCheckBox_windowIconChanged(self, icon): |
|
463 """ |
|
464 Slot documentation goes here. |
|
465 |
|
466 @param icon DESCRIPTION |
|
467 @type QIcon |
|
468 """ |
|
469 # TODO: not implemented yet |
|
470 raise NotImplementedError |
|
471 |
|
472 @pyqtSlot(str) |
|
473 def on_monospacedCheckBox_windowIconTextChanged(self, iconText): |
|
474 """ |
|
475 Slot documentation goes here. |
|
476 |
|
477 @param iconText DESCRIPTION |
|
478 @type str |
|
479 """ |
|
480 # TODO: not implemented yet |
|
481 raise NotImplementedError |
|
482 |
|
483 @pyqtSlot(QPoint) |
|
484 def on_monospacedCheckBox_customContextMenuRequested(self, pos): |
|
485 """ |
|
486 Slot documentation goes here. |
|
487 |
|
488 @param pos DESCRIPTION |
|
489 @type QPoint |
|
490 """ |
|
491 # TODO: not implemented yet |
|
492 raise NotImplementedError |
|
493 |
|
494 @pyqtSlot() |
|
495 def on_monospacedCheckBox_pressed(self): |
|
496 """ |
|
497 Slot documentation goes here. |
|
498 """ |
|
499 # TODO: not implemented yet |
|
500 raise NotImplementedError |
|
501 |
|
502 @pyqtSlot() |
|
503 def on_monospacedCheckBox_released(self): |
|
504 """ |
|
505 Slot documentation goes here. |
|
506 """ |
|
507 # TODO: not implemented yet |
|
508 raise NotImplementedError |
|
509 |
|
510 @pyqtSlot(bool) |
|
511 def on_monospacedCheckBox_clicked(self, checked): |
|
512 """ |
|
513 Slot documentation goes here. |
|
514 |
|
515 @param checked DESCRIPTION |
|
516 @type bool |
|
517 """ |
|
518 # TODO: not implemented yet |
|
519 raise NotImplementedError |
|
520 |
|
521 @pyqtSlot() |
|
522 def on_monospacedCheckBox_clicked(self): |
|
523 """ |
|
524 Slot documentation goes here. |
|
525 """ |
|
526 # TODO: not implemented yet |
|
527 raise NotImplementedError |
|
528 |
|
529 @pyqtSlot(bool) |
|
530 def on_monospacedCheckBox_toggled(self, checked): |
|
531 """ |
|
532 Slot documentation goes here. |
|
533 |
|
534 @param checked DESCRIPTION |
|
535 @type bool |
|
536 """ |
|
537 # TODO: not implemented yet |
|
538 raise NotImplementedError |
|
539 |
|
540 @pyqtSlot(int) |
|
541 def on_monospacedCheckBox_stateChanged(self, p0): |
|
542 """ |
|
543 Slot documentation goes here. |
|
544 |
|
545 @param p0 DESCRIPTION |
|
546 @type int |
|
547 """ |
|
548 # TODO: not implemented yet |
|
549 raise NotImplementedError |
|
550 |
|
551 @pyqtSlot(QObject) |
|
552 def on_proportionalCheckBox_destroyed(self, p0): |
|
553 """ |
|
554 Slot documentation goes here. |
|
555 |
|
556 @param p0 DESCRIPTION |
|
557 @type QObject |
|
558 """ |
|
559 # TODO: not implemented yet |
|
560 raise NotImplementedError |
|
561 |
|
562 @pyqtSlot() |
|
563 def on_proportionalCheckBox_destroyed(self): |
|
564 """ |
|
565 Slot documentation goes here. |
|
566 """ |
|
567 # TODO: not implemented yet |
|
568 raise NotImplementedError |
|
569 |
|
570 @pyqtSlot(str) |
|
571 def on_proportionalCheckBox_objectNameChanged(self, objectName): |
|
572 """ |
|
573 Slot documentation goes here. |
|
574 |
|
575 @param objectName DESCRIPTION |
|
576 @type str |
|
577 """ |
|
578 # TODO: not implemented yet |
|
579 raise NotImplementedError |
|
580 |
|
581 @pyqtSlot(str) |
|
582 def on_proportionalCheckBox_windowTitleChanged(self, title): |
|
583 """ |
|
584 Slot documentation goes here. |
|
585 |
|
586 @param title DESCRIPTION |
|
587 @type str |
|
588 """ |
|
589 # TODO: not implemented yet |
|
590 raise NotImplementedError |
|
591 |
|
592 @pyqtSlot(QIcon) |
|
593 def on_proportionalCheckBox_windowIconChanged(self, icon): |
|
594 """ |
|
595 Slot documentation goes here. |
|
596 |
|
597 @param icon DESCRIPTION |
|
598 @type QIcon |
|
599 """ |
|
600 # TODO: not implemented yet |
|
601 raise NotImplementedError |
|
602 |
|
603 @pyqtSlot(str) |
|
604 def on_proportionalCheckBox_windowIconTextChanged(self, iconText): |
|
605 """ |
|
606 Slot documentation goes here. |
|
607 |
|
608 @param iconText DESCRIPTION |
|
609 @type str |
|
610 """ |
|
611 # TODO: not implemented yet |
|
612 raise NotImplementedError |
|
613 |
|
614 @pyqtSlot(QPoint) |
|
615 def on_proportionalCheckBox_customContextMenuRequested(self, pos): |
|
616 """ |
|
617 Slot documentation goes here. |
|
618 |
|
619 @param pos DESCRIPTION |
|
620 @type QPoint |
|
621 """ |
|
622 # TODO: not implemented yet |
|
623 raise NotImplementedError |
|
624 |
|
625 @pyqtSlot() |
|
626 def on_proportionalCheckBox_pressed(self): |
|
627 """ |
|
628 Slot documentation goes here. |
|
629 """ |
|
630 # TODO: not implemented yet |
|
631 raise NotImplementedError |
|
632 |
|
633 @pyqtSlot() |
|
634 def on_proportionalCheckBox_released(self): |
|
635 """ |
|
636 Slot documentation goes here. |
|
637 """ |
|
638 # TODO: not implemented yet |
|
639 raise NotImplementedError |
|
640 |
|
641 @pyqtSlot(bool) |
|
642 def on_proportionalCheckBox_clicked(self, checked): |
|
643 """ |
|
644 Slot documentation goes here. |
|
645 |
|
646 @param checked DESCRIPTION |
|
647 @type bool |
|
648 """ |
|
649 # TODO: not implemented yet |
|
650 raise NotImplementedError |
|
651 |
|
652 @pyqtSlot() |
|
653 def on_proportionalCheckBox_clicked(self): |
|
654 """ |
|
655 Slot documentation goes here. |
|
656 """ |
|
657 # TODO: not implemented yet |
|
658 raise NotImplementedError |
|
659 |
|
660 @pyqtSlot(bool) |
|
661 def on_proportionalCheckBox_toggled(self, checked): |
|
662 """ |
|
663 Slot documentation goes here. |
|
664 |
|
665 @param checked DESCRIPTION |
|
666 @type bool |
|
667 """ |
|
668 # TODO: not implemented yet |
|
669 raise NotImplementedError |
|
670 |
|
671 @pyqtSlot(int) |
|
672 def on_proportionalCheckBox_stateChanged(self, p0): |
|
673 """ |
|
674 Slot documentation goes here. |
|
675 |
|
676 @param p0 DESCRIPTION |
|
677 @type int |
|
678 """ |
|
679 # TODO: not implemented yet |
|
680 raise NotImplementedError |
|
681 |
|
682 @pyqtSlot(QObject) |
|
683 def on_buttonBox_destroyed(self, p0): |
|
684 """ |
|
685 Slot documentation goes here. |
|
686 |
|
687 @param p0 DESCRIPTION |
|
688 @type QObject |
|
689 """ |
|
690 # TODO: not implemented yet |
|
691 raise NotImplementedError |
|
692 |
|
693 @pyqtSlot() |
|
694 def on_buttonBox_destroyed(self): |
|
695 """ |
|
696 Slot documentation goes here. |
|
697 """ |
|
698 # TODO: not implemented yet |
|
699 raise NotImplementedError |
|
700 |
|
701 @pyqtSlot(str) |
|
702 def on_buttonBox_objectNameChanged(self, objectName): |
|
703 """ |
|
704 Slot documentation goes here. |
|
705 |
|
706 @param objectName DESCRIPTION |
|
707 @type str |
|
708 """ |
|
709 # TODO: not implemented yet |
|
710 raise NotImplementedError |
|
711 |
|
712 @pyqtSlot(str) |
|
713 def on_buttonBox_windowTitleChanged(self, title): |
|
714 """ |
|
715 Slot documentation goes here. |
|
716 |
|
717 @param title DESCRIPTION |
|
718 @type str |
|
719 """ |
|
720 # TODO: not implemented yet |
|
721 raise NotImplementedError |
|
722 |
|
723 @pyqtSlot(QIcon) |
|
724 def on_buttonBox_windowIconChanged(self, icon): |
|
725 """ |
|
726 Slot documentation goes here. |
|
727 |
|
728 @param icon DESCRIPTION |
|
729 @type QIcon |
|
730 """ |
|
731 # TODO: not implemented yet |
|
732 raise NotImplementedError |
|
733 |
|
734 @pyqtSlot(str) |
|
735 def on_buttonBox_windowIconTextChanged(self, iconText): |
|
736 """ |
|
737 Slot documentation goes here. |
|
738 |
|
739 @param iconText DESCRIPTION |
|
740 @type str |
|
741 """ |
|
742 # TODO: not implemented yet |
|
743 raise NotImplementedError |
|
744 |
|
745 @pyqtSlot(QPoint) |
|
746 def on_buttonBox_customContextMenuRequested(self, pos): |
|
747 """ |
|
748 Slot documentation goes here. |
|
749 |
|
750 @param pos DESCRIPTION |
|
751 @type QPoint |
|
752 """ |
|
753 # TODO: not implemented yet |
|
754 raise NotImplementedError |
|
755 |
|
756 @pyqtSlot(QAbstractButton) |
|
757 def on_buttonBox_clicked(self, button): |
|
758 """ |
|
759 Slot documentation goes here. |
|
760 |
|
761 @param button DESCRIPTION |
|
762 @type QAbstractButton |
|
763 """ |
|
764 # TODO: not implemented yet |
|
765 raise NotImplementedError |
|
766 |
|
767 @pyqtSlot() |
|
768 def on_buttonBox_accepted(self): |
|
769 """ |
|
770 Slot documentation goes here. |
|
771 """ |
|
772 # TODO: not implemented yet |
|
773 raise NotImplementedError |
|
774 |
|
775 @pyqtSlot() |
|
776 def on_buttonBox_helpRequested(self): |
|
777 """ |
|
778 Slot documentation goes here. |
|
779 """ |
|
780 # TODO: not implemented yet |
|
781 raise NotImplementedError |
|
782 |
|
783 @pyqtSlot() |
|
784 def on_buttonBox_rejected(self): |
|
785 """ |
|
786 Slot documentation goes here. |
|
787 """ |
|
788 # TODO: not implemented yet |
|
789 raise NotImplementedError |