eric7/Plugins/WizardPlugins/FontDialogWizard/FontDialogWizardDialog.py

branch
eric7
changeset 8410
f8d97f05f883
parent 8324
83084f088655
child 8413
65ed18753c40
equal deleted inserted replaced
8409:78c008a54656 8410:f8d97f05f883
45 45
46 self.bTest = self.buttonBox.addButton( 46 self.bTest = self.buttonBox.addButton(
47 self.tr("Test"), QDialogButtonBox.ButtonRole.ActionRole) 47 self.tr("Test"), QDialogButtonBox.ButtonRole.ActionRole)
48 48
49 self.font = None 49 self.font = None
50 self.fontOptions = {
51 "noNativeDialog": False,
52 "scalableFonts": False,
53 "nonScalableFonts": False,
54 "monospacedFonts": False,
55 "proportionalFonts": False,
56 }
50 57
51 msh = self.minimumSizeHint() 58 msh = self.minimumSizeHint()
52 self.resize(max(self.width(), msh.width()), msh.height()) 59 self.resize(max(self.width(), msh.width()), msh.height())
53 60
54 def on_buttonBox_clicked(self, button): 61 def on_buttonBox_clicked(self, button):
66 Private method to test the selected options. 73 Private method to test the selected options.
67 """ 74 """
68 if self.font is None: 75 if self.font is None:
69 QFontDialog.getFont() 76 QFontDialog.getFont()
70 else: 77 else:
71 QFontDialog.getFont(self.font) 78 QFontDialog.getFont(
79 self.font,
80 self,
81 self.eCaption.text()
82 )
72 83
73 def on_eVariable_textChanged(self, text): 84 def on_eVariable_textChanged(self, text):
74 """ 85 """
75 Private slot to handle the textChanged signal of eVariable. 86 Private slot to handle the textChanged signal of eVariable.
76 87
150 os.linesep, istring, parent) 161 os.linesep, istring, parent)
151 # NOTE: add support for font dialog options (enhancement) 162 # NOTE: add support for font dialog options (enhancement)
152 code += '){0}'.format(estring) 163 code += '){0}'.format(estring)
153 164
154 return code 165 return code
166
167 @pyqtSlot(QObject)
168 def on_label_destroyed(self, p0):
169 """
170 Slot documentation goes here.
171
172 @param p0 DESCRIPTION
173 @type QObject
174 """
175 # TODO: not implemented yet
176 raise NotImplementedError
177
178 @pyqtSlot()
179 def on_label_destroyed(self):
180 """
181 Slot documentation goes here.
182 """
183 # TODO: not implemented yet
184 raise NotImplementedError
185
186 @pyqtSlot(str)
187 def on_label_objectNameChanged(self, objectName):
188 """
189 Slot documentation goes here.
190
191 @param objectName DESCRIPTION
192 @type str
193 """
194 # TODO: not implemented yet
195 raise NotImplementedError
196
197 @pyqtSlot(str)
198 def on_label_windowTitleChanged(self, title):
199 """
200 Slot documentation goes here.
201
202 @param title DESCRIPTION
203 @type str
204 """
205 # TODO: not implemented yet
206 raise NotImplementedError
207
208 @pyqtSlot(QIcon)
209 def on_label_windowIconChanged(self, icon):
210 """
211 Slot documentation goes here.
212
213 @param icon DESCRIPTION
214 @type QIcon
215 """
216 # TODO: not implemented yet
217 raise NotImplementedError
218
219 @pyqtSlot(str)
220 def on_label_windowIconTextChanged(self, iconText):
221 """
222 Slot documentation goes here.
223
224 @param iconText DESCRIPTION
225 @type str
226 """
227 # TODO: not implemented yet
228 raise NotImplementedError
229
230 @pyqtSlot(QPoint)
231 def on_label_customContextMenuRequested(self, pos):
232 """
233 Slot documentation goes here.
234
235 @param pos DESCRIPTION
236 @type QPoint
237 """
238 # TODO: not implemented yet
239 raise NotImplementedError
240
241 @pyqtSlot(str)
242 def on_label_linkActivated(self, link):
243 """
244 Slot documentation goes here.
245
246 @param link DESCRIPTION
247 @type str
248 """
249 # TODO: not implemented yet
250 raise NotImplementedError
251
252 @pyqtSlot(str)
253 def on_label_linkHovered(self, link):
254 """
255 Slot documentation goes here.
256
257 @param link DESCRIPTION
258 @type str
259 """
260 # TODO: not implemented yet
261 raise NotImplementedError
262
263 @pyqtSlot(QObject)
264 def on_eResultVar_destroyed(self, p0):
265 """
266 Slot documentation goes here.
267
268 @param p0 DESCRIPTION
269 @type QObject
270 """
271 # TODO: not implemented yet
272 raise NotImplementedError
273
274 @pyqtSlot()
275 def on_eResultVar_destroyed(self):
276 """
277 Slot documentation goes here.
278 """
279 # TODO: not implemented yet
280 raise NotImplementedError
281
282 @pyqtSlot(str)
283 def on_eResultVar_objectNameChanged(self, objectName):
284 """
285 Slot documentation goes here.
286
287 @param objectName DESCRIPTION
288 @type str
289 """
290 # TODO: not implemented yet
291 raise NotImplementedError
292
293 @pyqtSlot(str)
294 def on_eResultVar_windowTitleChanged(self, title):
295 """
296 Slot documentation goes here.
297
298 @param title DESCRIPTION
299 @type str
300 """
301 # TODO: not implemented yet
302 raise NotImplementedError
303
304 @pyqtSlot(QIcon)
305 def on_eResultVar_windowIconChanged(self, icon):
306 """
307 Slot documentation goes here.
308
309 @param icon DESCRIPTION
310 @type QIcon
311 """
312 # TODO: not implemented yet
313 raise NotImplementedError
314
315 @pyqtSlot(str)
316 def on_eResultVar_windowIconTextChanged(self, iconText):
317 """
318 Slot documentation goes here.
319
320 @param iconText DESCRIPTION
321 @type str
322 """
323 # TODO: not implemented yet
324 raise NotImplementedError
325
326 @pyqtSlot(QPoint)
327 def on_eResultVar_customContextMenuRequested(self, pos):
328 """
329 Slot documentation goes here.
330
331 @param pos DESCRIPTION
332 @type QPoint
333 """
334 # TODO: not implemented yet
335 raise NotImplementedError
336
337 @pyqtSlot(str)
338 def on_eResultVar_textChanged(self, p0):
339 """
340 Slot documentation goes here.
341
342 @param p0 DESCRIPTION
343 @type str
344 """
345 # TODO: not implemented yet
346 raise NotImplementedError
347
348 @pyqtSlot(str)
349 def on_eResultVar_textEdited(self, p0):
350 """
351 Slot documentation goes here.
352
353 @param p0 DESCRIPTION
354 @type str
355 """
356 # TODO: not implemented yet
357 raise NotImplementedError
358
359 @pyqtSlot(int, int)
360 def on_eResultVar_cursorPositionChanged(self, p0, p1):
361 """
362 Slot documentation goes here.
363
364 @param p0 DESCRIPTION
365 @type int
366 @param p1 DESCRIPTION
367 @type int
368 """
369 # TODO: not implemented yet
370 raise NotImplementedError
371
372 @pyqtSlot()
373 def on_eResultVar_returnPressed(self):
374 """
375 Slot documentation goes here.
376 """
377 # TODO: not implemented yet
378 raise NotImplementedError
379
380 @pyqtSlot()
381 def on_eResultVar_editingFinished(self):
382 """
383 Slot documentation goes here.
384 """
385 # TODO: not implemented yet
386 raise NotImplementedError
387
388 @pyqtSlot()
389 def on_eResultVar_selectionChanged(self):
390 """
391 Slot documentation goes here.
392 """
393 # TODO: not implemented yet
394 raise NotImplementedError
395
396 @pyqtSlot()
397 def on_eResultVar_inputRejected(self):
398 """
399 Slot documentation goes here.
400 """
401 # TODO: not implemented yet
402 raise NotImplementedError
403
404 @pyqtSlot(QObject)
405 def on_textLabel1_destroyed(self, p0):
406 """
407 Slot documentation goes here.
408
409 @param p0 DESCRIPTION
410 @type QObject
411 """
412 # TODO: not implemented yet
413 raise NotImplementedError
414
415 @pyqtSlot()
416 def on_textLabel1_destroyed(self):
417 """
418 Slot documentation goes here.
419 """
420 # TODO: not implemented yet
421 raise NotImplementedError
422
423 @pyqtSlot(str)
424 def on_textLabel1_objectNameChanged(self, objectName):
425 """
426 Slot documentation goes here.
427
428 @param objectName DESCRIPTION
429 @type str
430 """
431 # TODO: not implemented yet
432 raise NotImplementedError
433
434 @pyqtSlot(str)
435 def on_textLabel1_windowTitleChanged(self, title):
436 """
437 Slot documentation goes here.
438
439 @param title DESCRIPTION
440 @type str
441 """
442 # TODO: not implemented yet
443 raise NotImplementedError
444
445 @pyqtSlot(QIcon)
446 def on_textLabel1_windowIconChanged(self, icon):
447 """
448 Slot documentation goes here.
449
450 @param icon DESCRIPTION
451 @type QIcon
452 """
453 # TODO: not implemented yet
454 raise NotImplementedError
455
456 @pyqtSlot(str)
457 def on_textLabel1_windowIconTextChanged(self, iconText):
458 """
459 Slot documentation goes here.
460
461 @param iconText DESCRIPTION
462 @type str
463 """
464 # TODO: not implemented yet
465 raise NotImplementedError
466
467 @pyqtSlot(QPoint)
468 def on_textLabel1_customContextMenuRequested(self, pos):
469 """
470 Slot documentation goes here.
471
472 @param pos DESCRIPTION
473 @type QPoint
474 """
475 # TODO: not implemented yet
476 raise NotImplementedError
477
478 @pyqtSlot(str)
479 def on_textLabel1_linkActivated(self, link):
480 """
481 Slot documentation goes here.
482
483 @param link DESCRIPTION
484 @type str
485 """
486 # TODO: not implemented yet
487 raise NotImplementedError
488
489 @pyqtSlot(str)
490 def on_textLabel1_linkHovered(self, link):
491 """
492 Slot documentation goes here.
493
494 @param link DESCRIPTION
495 @type str
496 """
497 # TODO: not implemented yet
498 raise NotImplementedError
499
500 @pyqtSlot(QObject)
501 def on_eCaption_destroyed(self, p0):
502 """
503 Slot documentation goes here.
504
505 @param p0 DESCRIPTION
506 @type QObject
507 """
508 # TODO: not implemented yet
509 raise NotImplementedError
510
511 @pyqtSlot()
512 def on_eCaption_destroyed(self):
513 """
514 Slot documentation goes here.
515 """
516 # TODO: not implemented yet
517 raise NotImplementedError
518
519 @pyqtSlot(str)
520 def on_eCaption_objectNameChanged(self, objectName):
521 """
522 Slot documentation goes here.
523
524 @param objectName DESCRIPTION
525 @type str
526 """
527 # TODO: not implemented yet
528 raise NotImplementedError
529
530 @pyqtSlot(str)
531 def on_eCaption_windowTitleChanged(self, title):
532 """
533 Slot documentation goes here.
534
535 @param title DESCRIPTION
536 @type str
537 """
538 # TODO: not implemented yet
539 raise NotImplementedError
540
541 @pyqtSlot(QIcon)
542 def on_eCaption_windowIconChanged(self, icon):
543 """
544 Slot documentation goes here.
545
546 @param icon DESCRIPTION
547 @type QIcon
548 """
549 # TODO: not implemented yet
550 raise NotImplementedError
551
552 @pyqtSlot(str)
553 def on_eCaption_windowIconTextChanged(self, iconText):
554 """
555 Slot documentation goes here.
556
557 @param iconText DESCRIPTION
558 @type str
559 """
560 # TODO: not implemented yet
561 raise NotImplementedError
562
563 @pyqtSlot(QPoint)
564 def on_eCaption_customContextMenuRequested(self, pos):
565 """
566 Slot documentation goes here.
567
568 @param pos DESCRIPTION
569 @type QPoint
570 """
571 # TODO: not implemented yet
572 raise NotImplementedError
573
574 @pyqtSlot(str)
575 def on_eCaption_textChanged(self, p0):
576 """
577 Slot documentation goes here.
578
579 @param p0 DESCRIPTION
580 @type str
581 """
582 # TODO: not implemented yet
583 raise NotImplementedError
584
585 @pyqtSlot(str)
586 def on_eCaption_textEdited(self, p0):
587 """
588 Slot documentation goes here.
589
590 @param p0 DESCRIPTION
591 @type str
592 """
593 # TODO: not implemented yet
594 raise NotImplementedError
595
596 @pyqtSlot(int, int)
597 def on_eCaption_cursorPositionChanged(self, p0, p1):
598 """
599 Slot documentation goes here.
600
601 @param p0 DESCRIPTION
602 @type int
603 @param p1 DESCRIPTION
604 @type int
605 """
606 # TODO: not implemented yet
607 raise NotImplementedError
608
609 @pyqtSlot()
610 def on_eCaption_returnPressed(self):
611 """
612 Slot documentation goes here.
613 """
614 # TODO: not implemented yet
615 raise NotImplementedError
616
617 @pyqtSlot()
618 def on_eCaption_editingFinished(self):
619 """
620 Slot documentation goes here.
621 """
622 # TODO: not implemented yet
623 raise NotImplementedError
624
625 @pyqtSlot()
626 def on_eCaption_selectionChanged(self):
627 """
628 Slot documentation goes here.
629 """
630 # TODO: not implemented yet
631 raise NotImplementedError
632
633 @pyqtSlot()
634 def on_eCaption_inputRejected(self):
635 """
636 Slot documentation goes here.
637 """
638 # TODO: not implemented yet
639 raise NotImplementedError
640
641 @pyqtSlot(QObject)
642 def on_parentGroup_destroyed(self, p0):
643 """
644 Slot documentation goes here.
645
646 @param p0 DESCRIPTION
647 @type QObject
648 """
649 # TODO: not implemented yet
650 raise NotImplementedError
651
652 @pyqtSlot()
653 def on_parentGroup_destroyed(self):
654 """
655 Slot documentation goes here.
656 """
657 # TODO: not implemented yet
658 raise NotImplementedError
659
660 @pyqtSlot(str)
661 def on_parentGroup_objectNameChanged(self, objectName):
662 """
663 Slot documentation goes here.
664
665 @param objectName DESCRIPTION
666 @type str
667 """
668 # TODO: not implemented yet
669 raise NotImplementedError
670
671 @pyqtSlot(str)
672 def on_parentGroup_windowTitleChanged(self, title):
673 """
674 Slot documentation goes here.
675
676 @param title DESCRIPTION
677 @type str
678 """
679 # TODO: not implemented yet
680 raise NotImplementedError
681
682 @pyqtSlot(QIcon)
683 def on_parentGroup_windowIconChanged(self, icon):
684 """
685 Slot documentation goes here.
686
687 @param icon DESCRIPTION
688 @type QIcon
689 """
690 # TODO: not implemented yet
691 raise NotImplementedError
692
693 @pyqtSlot(str)
694 def on_parentGroup_windowIconTextChanged(self, iconText):
695 """
696 Slot documentation goes here.
697
698 @param iconText DESCRIPTION
699 @type str
700 """
701 # TODO: not implemented yet
702 raise NotImplementedError
703
704 @pyqtSlot(QPoint)
705 def on_parentGroup_customContextMenuRequested(self, pos):
706 """
707 Slot documentation goes here.
708
709 @param pos DESCRIPTION
710 @type QPoint
711 """
712 # TODO: not implemented yet
713 raise NotImplementedError
714
715 @pyqtSlot(bool)
716 def on_parentGroup_clicked(self, checked):
717 """
718 Slot documentation goes here.
719
720 @param checked DESCRIPTION
721 @type bool
722 """
723 # TODO: not implemented yet
724 raise NotImplementedError
725
726 @pyqtSlot()
727 def on_parentGroup_clicked(self):
728 """
729 Slot documentation goes here.
730 """
731 # TODO: not implemented yet
732 raise NotImplementedError
733
734 @pyqtSlot(bool)
735 def on_parentGroup_toggled(self, p0):
736 """
737 Slot documentation goes here.
738
739 @param p0 DESCRIPTION
740 @type bool
741 """
742 # TODO: not implemented yet
743 raise NotImplementedError
744
745 @pyqtSlot(QObject)
746 def on_parentSelf_destroyed(self, p0):
747 """
748 Slot documentation goes here.
749
750 @param p0 DESCRIPTION
751 @type QObject
752 """
753 # TODO: not implemented yet
754 raise NotImplementedError
755
756 @pyqtSlot()
757 def on_parentSelf_destroyed(self):
758 """
759 Slot documentation goes here.
760 """
761 # TODO: not implemented yet
762 raise NotImplementedError
763
764 @pyqtSlot(str)
765 def on_parentSelf_objectNameChanged(self, objectName):
766 """
767 Slot documentation goes here.
768
769 @param objectName DESCRIPTION
770 @type str
771 """
772 # TODO: not implemented yet
773 raise NotImplementedError
774
775 @pyqtSlot(str)
776 def on_parentSelf_windowTitleChanged(self, title):
777 """
778 Slot documentation goes here.
779
780 @param title DESCRIPTION
781 @type str
782 """
783 # TODO: not implemented yet
784 raise NotImplementedError
785
786 @pyqtSlot(QIcon)
787 def on_parentSelf_windowIconChanged(self, icon):
788 """
789 Slot documentation goes here.
790
791 @param icon DESCRIPTION
792 @type QIcon
793 """
794 # TODO: not implemented yet
795 raise NotImplementedError
796
797 @pyqtSlot(str)
798 def on_parentSelf_windowIconTextChanged(self, iconText):
799 """
800 Slot documentation goes here.
801
802 @param iconText DESCRIPTION
803 @type str
804 """
805 # TODO: not implemented yet
806 raise NotImplementedError
807
808 @pyqtSlot(QPoint)
809 def on_parentSelf_customContextMenuRequested(self, pos):
810 """
811 Slot documentation goes here.
812
813 @param pos DESCRIPTION
814 @type QPoint
815 """
816 # TODO: not implemented yet
817 raise NotImplementedError
818
819 @pyqtSlot()
820 def on_parentSelf_pressed(self):
821 """
822 Slot documentation goes here.
823 """
824 # TODO: not implemented yet
825 raise NotImplementedError
826
827 @pyqtSlot()
828 def on_parentSelf_released(self):
829 """
830 Slot documentation goes here.
831 """
832 # TODO: not implemented yet
833 raise NotImplementedError
834
835 @pyqtSlot(bool)
836 def on_parentSelf_clicked(self, checked):
837 """
838 Slot documentation goes here.
839
840 @param checked DESCRIPTION
841 @type bool
842 """
843 # TODO: not implemented yet
844 raise NotImplementedError
845
846 @pyqtSlot()
847 def on_parentSelf_clicked(self):
848 """
849 Slot documentation goes here.
850 """
851 # TODO: not implemented yet
852 raise NotImplementedError
853
854 @pyqtSlot(bool)
855 def on_parentSelf_toggled(self, checked):
856 """
857 Slot documentation goes here.
858
859 @param checked DESCRIPTION
860 @type bool
861 """
862 # TODO: not implemented yet
863 raise NotImplementedError
864
865 @pyqtSlot(QObject)
866 def on_parentNone_destroyed(self, p0):
867 """
868 Slot documentation goes here.
869
870 @param p0 DESCRIPTION
871 @type QObject
872 """
873 # TODO: not implemented yet
874 raise NotImplementedError
875
876 @pyqtSlot()
877 def on_parentNone_destroyed(self):
878 """
879 Slot documentation goes here.
880 """
881 # TODO: not implemented yet
882 raise NotImplementedError
883
884 @pyqtSlot(str)
885 def on_parentNone_objectNameChanged(self, objectName):
886 """
887 Slot documentation goes here.
888
889 @param objectName DESCRIPTION
890 @type str
891 """
892 # TODO: not implemented yet
893 raise NotImplementedError
894
895 @pyqtSlot(str)
896 def on_parentNone_windowTitleChanged(self, title):
897 """
898 Slot documentation goes here.
899
900 @param title DESCRIPTION
901 @type str
902 """
903 # TODO: not implemented yet
904 raise NotImplementedError
905
906 @pyqtSlot(QIcon)
907 def on_parentNone_windowIconChanged(self, icon):
908 """
909 Slot documentation goes here.
910
911 @param icon DESCRIPTION
912 @type QIcon
913 """
914 # TODO: not implemented yet
915 raise NotImplementedError
916
917 @pyqtSlot(str)
918 def on_parentNone_windowIconTextChanged(self, iconText):
919 """
920 Slot documentation goes here.
921
922 @param iconText DESCRIPTION
923 @type str
924 """
925 # TODO: not implemented yet
926 raise NotImplementedError
927
928 @pyqtSlot(QPoint)
929 def on_parentNone_customContextMenuRequested(self, pos):
930 """
931 Slot documentation goes here.
932
933 @param pos DESCRIPTION
934 @type QPoint
935 """
936 # TODO: not implemented yet
937 raise NotImplementedError
938
939 @pyqtSlot()
940 def on_parentNone_pressed(self):
941 """
942 Slot documentation goes here.
943 """
944 # TODO: not implemented yet
945 raise NotImplementedError
946
947 @pyqtSlot()
948 def on_parentNone_released(self):
949 """
950 Slot documentation goes here.
951 """
952 # TODO: not implemented yet
953 raise NotImplementedError
954
955 @pyqtSlot(bool)
956 def on_parentNone_clicked(self, checked):
957 """
958 Slot documentation goes here.
959
960 @param checked DESCRIPTION
961 @type bool
962 """
963 # TODO: not implemented yet
964 raise NotImplementedError
965
966 @pyqtSlot()
967 def on_parentNone_clicked(self):
968 """
969 Slot documentation goes here.
970 """
971 # TODO: not implemented yet
972 raise NotImplementedError
973
974 @pyqtSlot(bool)
975 def on_parentNone_toggled(self, checked):
976 """
977 Slot documentation goes here.
978
979 @param checked DESCRIPTION
980 @type bool
981 """
982 # TODO: not implemented yet
983 raise NotImplementedError
984
985 @pyqtSlot(QObject)
986 def on_parentOther_destroyed(self, p0):
987 """
988 Slot documentation goes here.
989
990 @param p0 DESCRIPTION
991 @type QObject
992 """
993 # TODO: not implemented yet
994 raise NotImplementedError
995
996 @pyqtSlot()
997 def on_parentOther_destroyed(self):
998 """
999 Slot documentation goes here.
1000 """
1001 # TODO: not implemented yet
1002 raise NotImplementedError
1003
1004 @pyqtSlot(str)
1005 def on_parentOther_objectNameChanged(self, objectName):
1006 """
1007 Slot documentation goes here.
1008
1009 @param objectName DESCRIPTION
1010 @type str
1011 """
1012 # TODO: not implemented yet
1013 raise NotImplementedError
1014
1015 @pyqtSlot(str)
1016 def on_parentOther_windowTitleChanged(self, title):
1017 """
1018 Slot documentation goes here.
1019
1020 @param title DESCRIPTION
1021 @type str
1022 """
1023 # TODO: not implemented yet
1024 raise NotImplementedError
1025
1026 @pyqtSlot(QIcon)
1027 def on_parentOther_windowIconChanged(self, icon):
1028 """
1029 Slot documentation goes here.
1030
1031 @param icon DESCRIPTION
1032 @type QIcon
1033 """
1034 # TODO: not implemented yet
1035 raise NotImplementedError
1036
1037 @pyqtSlot(str)
1038 def on_parentOther_windowIconTextChanged(self, iconText):
1039 """
1040 Slot documentation goes here.
1041
1042 @param iconText DESCRIPTION
1043 @type str
1044 """
1045 # TODO: not implemented yet
1046 raise NotImplementedError
1047
1048 @pyqtSlot(QPoint)
1049 def on_parentOther_customContextMenuRequested(self, pos):
1050 """
1051 Slot documentation goes here.
1052
1053 @param pos DESCRIPTION
1054 @type QPoint
1055 """
1056 # TODO: not implemented yet
1057 raise NotImplementedError
1058
1059 @pyqtSlot()
1060 def on_parentOther_pressed(self):
1061 """
1062 Slot documentation goes here.
1063 """
1064 # TODO: not implemented yet
1065 raise NotImplementedError
1066
1067 @pyqtSlot()
1068 def on_parentOther_released(self):
1069 """
1070 Slot documentation goes here.
1071 """
1072 # TODO: not implemented yet
1073 raise NotImplementedError
1074
1075 @pyqtSlot(bool)
1076 def on_parentOther_clicked(self, checked):
1077 """
1078 Slot documentation goes here.
1079
1080 @param checked DESCRIPTION
1081 @type bool
1082 """
1083 # TODO: not implemented yet
1084 raise NotImplementedError
1085
1086 @pyqtSlot()
1087 def on_parentOther_clicked(self):
1088 """
1089 Slot documentation goes here.
1090 """
1091 # TODO: not implemented yet
1092 raise NotImplementedError
1093
1094 @pyqtSlot(bool)
1095 def on_parentOther_toggled(self, checked):
1096 """
1097 Slot documentation goes here.
1098
1099 @param checked DESCRIPTION
1100 @type bool
1101 """
1102 # TODO: not implemented yet
1103 raise NotImplementedError
1104
1105 @pyqtSlot(QObject)
1106 def on_parentEdit_destroyed(self, p0):
1107 """
1108 Slot documentation goes here.
1109
1110 @param p0 DESCRIPTION
1111 @type QObject
1112 """
1113 # TODO: not implemented yet
1114 raise NotImplementedError
1115
1116 @pyqtSlot()
1117 def on_parentEdit_destroyed(self):
1118 """
1119 Slot documentation goes here.
1120 """
1121 # TODO: not implemented yet
1122 raise NotImplementedError
1123
1124 @pyqtSlot(str)
1125 def on_parentEdit_objectNameChanged(self, objectName):
1126 """
1127 Slot documentation goes here.
1128
1129 @param objectName DESCRIPTION
1130 @type str
1131 """
1132 # TODO: not implemented yet
1133 raise NotImplementedError
1134
1135 @pyqtSlot(str)
1136 def on_parentEdit_windowTitleChanged(self, title):
1137 """
1138 Slot documentation goes here.
1139
1140 @param title DESCRIPTION
1141 @type str
1142 """
1143 # TODO: not implemented yet
1144 raise NotImplementedError
1145
1146 @pyqtSlot(QIcon)
1147 def on_parentEdit_windowIconChanged(self, icon):
1148 """
1149 Slot documentation goes here.
1150
1151 @param icon DESCRIPTION
1152 @type QIcon
1153 """
1154 # TODO: not implemented yet
1155 raise NotImplementedError
1156
1157 @pyqtSlot(str)
1158 def on_parentEdit_windowIconTextChanged(self, iconText):
1159 """
1160 Slot documentation goes here.
1161
1162 @param iconText DESCRIPTION
1163 @type str
1164 """
1165 # TODO: not implemented yet
1166 raise NotImplementedError
1167
1168 @pyqtSlot(QPoint)
1169 def on_parentEdit_customContextMenuRequested(self, pos):
1170 """
1171 Slot documentation goes here.
1172
1173 @param pos DESCRIPTION
1174 @type QPoint
1175 """
1176 # TODO: not implemented yet
1177 raise NotImplementedError
1178
1179 @pyqtSlot(str)
1180 def on_parentEdit_textChanged(self, p0):
1181 """
1182 Slot documentation goes here.
1183
1184 @param p0 DESCRIPTION
1185 @type str
1186 """
1187 # TODO: not implemented yet
1188 raise NotImplementedError
1189
1190 @pyqtSlot(str)
1191 def on_parentEdit_textEdited(self, p0):
1192 """
1193 Slot documentation goes here.
1194
1195 @param p0 DESCRIPTION
1196 @type str
1197 """
1198 # TODO: not implemented yet
1199 raise NotImplementedError
1200
1201 @pyqtSlot(int, int)
1202 def on_parentEdit_cursorPositionChanged(self, p0, p1):
1203 """
1204 Slot documentation goes here.
1205
1206 @param p0 DESCRIPTION
1207 @type int
1208 @param p1 DESCRIPTION
1209 @type int
1210 """
1211 # TODO: not implemented yet
1212 raise NotImplementedError
1213
1214 @pyqtSlot()
1215 def on_parentEdit_returnPressed(self):
1216 """
1217 Slot documentation goes here.
1218 """
1219 # TODO: not implemented yet
1220 raise NotImplementedError
1221
1222 @pyqtSlot()
1223 def on_parentEdit_editingFinished(self):
1224 """
1225 Slot documentation goes here.
1226 """
1227 # TODO: not implemented yet
1228 raise NotImplementedError
1229
1230 @pyqtSlot()
1231 def on_parentEdit_selectionChanged(self):
1232 """
1233 Slot documentation goes here.
1234 """
1235 # TODO: not implemented yet
1236 raise NotImplementedError
1237
1238 @pyqtSlot()
1239 def on_parentEdit_inputRejected(self):
1240 """
1241 Slot documentation goes here.
1242 """
1243 # TODO: not implemented yet
1244 raise NotImplementedError
1245
1246 @pyqtSlot(QObject)
1247 def on_fontButton_destroyed(self, p0):
1248 """
1249 Slot documentation goes here.
1250
1251 @param p0 DESCRIPTION
1252 @type QObject
1253 """
1254 # TODO: not implemented yet
1255 raise NotImplementedError
1256
1257 @pyqtSlot()
1258 def on_fontButton_destroyed(self):
1259 """
1260 Slot documentation goes here.
1261 """
1262 # TODO: not implemented yet
1263 raise NotImplementedError
1264
1265 @pyqtSlot(str)
1266 def on_fontButton_objectNameChanged(self, objectName):
1267 """
1268 Slot documentation goes here.
1269
1270 @param objectName DESCRIPTION
1271 @type str
1272 """
1273 # TODO: not implemented yet
1274 raise NotImplementedError
1275
1276 @pyqtSlot(str)
1277 def on_fontButton_windowTitleChanged(self, title):
1278 """
1279 Slot documentation goes here.
1280
1281 @param title DESCRIPTION
1282 @type str
1283 """
1284 # TODO: not implemented yet
1285 raise NotImplementedError
1286
1287 @pyqtSlot(QIcon)
1288 def on_fontButton_windowIconChanged(self, icon):
1289 """
1290 Slot documentation goes here.
1291
1292 @param icon DESCRIPTION
1293 @type QIcon
1294 """
1295 # TODO: not implemented yet
1296 raise NotImplementedError
1297
1298 @pyqtSlot(str)
1299 def on_fontButton_windowIconTextChanged(self, iconText):
1300 """
1301 Slot documentation goes here.
1302
1303 @param iconText DESCRIPTION
1304 @type str
1305 """
1306 # TODO: not implemented yet
1307 raise NotImplementedError
1308
1309 @pyqtSlot(QPoint)
1310 def on_fontButton_customContextMenuRequested(self, pos):
1311 """
1312 Slot documentation goes here.
1313
1314 @param pos DESCRIPTION
1315 @type QPoint
1316 """
1317 # TODO: not implemented yet
1318 raise NotImplementedError
1319
1320 @pyqtSlot()
1321 def on_fontButton_pressed(self):
1322 """
1323 Slot documentation goes here.
1324 """
1325 # TODO: not implemented yet
1326 raise NotImplementedError
1327
1328 @pyqtSlot()
1329 def on_fontButton_released(self):
1330 """
1331 Slot documentation goes here.
1332 """
1333 # TODO: not implemented yet
1334 raise NotImplementedError
1335
1336 @pyqtSlot(bool)
1337 def on_fontButton_clicked(self, checked):
1338 """
1339 Slot documentation goes here.
1340
1341 @param checked DESCRIPTION
1342 @type bool
1343 """
1344 # TODO: not implemented yet
1345 raise NotImplementedError
1346
1347 @pyqtSlot(bool)
1348 def on_fontButton_toggled(self, checked):
1349 """
1350 Slot documentation goes here.
1351
1352 @param checked DESCRIPTION
1353 @type bool
1354 """
1355 # TODO: not implemented yet
1356 raise NotImplementedError
1357
1358 @pyqtSlot(QObject)
1359 def on_optionsButton_destroyed(self, p0):
1360 """
1361 Slot documentation goes here.
1362
1363 @param p0 DESCRIPTION
1364 @type QObject
1365 """
1366 # TODO: not implemented yet
1367 raise NotImplementedError
1368
1369 @pyqtSlot()
1370 def on_optionsButton_destroyed(self):
1371 """
1372 Slot documentation goes here.
1373 """
1374 # TODO: not implemented yet
1375 raise NotImplementedError
1376
1377 @pyqtSlot(str)
1378 def on_optionsButton_objectNameChanged(self, objectName):
1379 """
1380 Slot documentation goes here.
1381
1382 @param objectName DESCRIPTION
1383 @type str
1384 """
1385 # TODO: not implemented yet
1386 raise NotImplementedError
1387
1388 @pyqtSlot(str)
1389 def on_optionsButton_windowTitleChanged(self, title):
1390 """
1391 Slot documentation goes here.
1392
1393 @param title DESCRIPTION
1394 @type str
1395 """
1396 # TODO: not implemented yet
1397 raise NotImplementedError
1398
1399 @pyqtSlot(QIcon)
1400 def on_optionsButton_windowIconChanged(self, icon):
1401 """
1402 Slot documentation goes here.
1403
1404 @param icon DESCRIPTION
1405 @type QIcon
1406 """
1407 # TODO: not implemented yet
1408 raise NotImplementedError
1409
1410 @pyqtSlot(str)
1411 def on_optionsButton_windowIconTextChanged(self, iconText):
1412 """
1413 Slot documentation goes here.
1414
1415 @param iconText DESCRIPTION
1416 @type str
1417 """
1418 # TODO: not implemented yet
1419 raise NotImplementedError
1420
1421 @pyqtSlot(QPoint)
1422 def on_optionsButton_customContextMenuRequested(self, pos):
1423 """
1424 Slot documentation goes here.
1425
1426 @param pos DESCRIPTION
1427 @type QPoint
1428 """
1429 # TODO: not implemented yet
1430 raise NotImplementedError
1431
1432 @pyqtSlot()
1433 def on_optionsButton_pressed(self):
1434 """
1435 Slot documentation goes here.
1436 """
1437 # TODO: not implemented yet
1438 raise NotImplementedError
1439
1440 @pyqtSlot()
1441 def on_optionsButton_released(self):
1442 """
1443 Slot documentation goes here.
1444 """
1445 # TODO: not implemented yet
1446 raise NotImplementedError
1447
1448 @pyqtSlot(bool)
1449 def on_optionsButton_clicked(self, checked):
1450 """
1451 Slot documentation goes here.
1452
1453 @param checked DESCRIPTION
1454 @type bool
1455 """
1456 # TODO: not implemented yet
1457 raise NotImplementedError
1458
1459 @pyqtSlot()
1460 def on_optionsButton_clicked(self):
1461 """
1462 Slot documentation goes here.
1463 """
1464 # TODO: not implemented yet
1465 raise NotImplementedError
1466
1467 @pyqtSlot(bool)
1468 def on_optionsButton_toggled(self, checked):
1469 """
1470 Slot documentation goes here.
1471
1472 @param checked DESCRIPTION
1473 @type bool
1474 """
1475 # TODO: not implemented yet
1476 raise NotImplementedError
1477
1478 @pyqtSlot(QObject)
1479 def on_TextLabel1_destroyed(self, p0):
1480 """
1481 Slot documentation goes here.
1482
1483 @param p0 DESCRIPTION
1484 @type QObject
1485 """
1486 # TODO: not implemented yet
1487 raise NotImplementedError
1488
1489 @pyqtSlot()
1490 def on_TextLabel1_destroyed(self):
1491 """
1492 Slot documentation goes here.
1493 """
1494 # TODO: not implemented yet
1495 raise NotImplementedError
1496
1497 @pyqtSlot(str)
1498 def on_TextLabel1_objectNameChanged(self, objectName):
1499 """
1500 Slot documentation goes here.
1501
1502 @param objectName DESCRIPTION
1503 @type str
1504 """
1505 # TODO: not implemented yet
1506 raise NotImplementedError
1507
1508 @pyqtSlot(str)
1509 def on_TextLabel1_windowTitleChanged(self, title):
1510 """
1511 Slot documentation goes here.
1512
1513 @param title DESCRIPTION
1514 @type str
1515 """
1516 # TODO: not implemented yet
1517 raise NotImplementedError
1518
1519 @pyqtSlot(QIcon)
1520 def on_TextLabel1_windowIconChanged(self, icon):
1521 """
1522 Slot documentation goes here.
1523
1524 @param icon DESCRIPTION
1525 @type QIcon
1526 """
1527 # TODO: not implemented yet
1528 raise NotImplementedError
1529
1530 @pyqtSlot(str)
1531 def on_TextLabel1_windowIconTextChanged(self, iconText):
1532 """
1533 Slot documentation goes here.
1534
1535 @param iconText DESCRIPTION
1536 @type str
1537 """
1538 # TODO: not implemented yet
1539 raise NotImplementedError
1540
1541 @pyqtSlot(QPoint)
1542 def on_TextLabel1_customContextMenuRequested(self, pos):
1543 """
1544 Slot documentation goes here.
1545
1546 @param pos DESCRIPTION
1547 @type QPoint
1548 """
1549 # TODO: not implemented yet
1550 raise NotImplementedError
1551
1552 @pyqtSlot(str)
1553 def on_TextLabel1_linkActivated(self, link):
1554 """
1555 Slot documentation goes here.
1556
1557 @param link DESCRIPTION
1558 @type str
1559 """
1560 # TODO: not implemented yet
1561 raise NotImplementedError
1562
1563 @pyqtSlot(str)
1564 def on_TextLabel1_linkHovered(self, link):
1565 """
1566 Slot documentation goes here.
1567
1568 @param link DESCRIPTION
1569 @type str
1570 """
1571 # TODO: not implemented yet
1572 raise NotImplementedError
1573
1574 @pyqtSlot(QObject)
1575 def on_eVariable_destroyed(self, p0):
1576 """
1577 Slot documentation goes here.
1578
1579 @param p0 DESCRIPTION
1580 @type QObject
1581 """
1582 # TODO: not implemented yet
1583 raise NotImplementedError
1584
1585 @pyqtSlot()
1586 def on_eVariable_destroyed(self):
1587 """
1588 Slot documentation goes here.
1589 """
1590 # TODO: not implemented yet
1591 raise NotImplementedError
1592
1593 @pyqtSlot(str)
1594 def on_eVariable_objectNameChanged(self, objectName):
1595 """
1596 Slot documentation goes here.
1597
1598 @param objectName DESCRIPTION
1599 @type str
1600 """
1601 # TODO: not implemented yet
1602 raise NotImplementedError
1603
1604 @pyqtSlot(str)
1605 def on_eVariable_windowTitleChanged(self, title):
1606 """
1607 Slot documentation goes here.
1608
1609 @param title DESCRIPTION
1610 @type str
1611 """
1612 # TODO: not implemented yet
1613 raise NotImplementedError
1614
1615 @pyqtSlot(QIcon)
1616 def on_eVariable_windowIconChanged(self, icon):
1617 """
1618 Slot documentation goes here.
1619
1620 @param icon DESCRIPTION
1621 @type QIcon
1622 """
1623 # TODO: not implemented yet
1624 raise NotImplementedError
1625
1626 @pyqtSlot(str)
1627 def on_eVariable_windowIconTextChanged(self, iconText):
1628 """
1629 Slot documentation goes here.
1630
1631 @param iconText DESCRIPTION
1632 @type str
1633 """
1634 # TODO: not implemented yet
1635 raise NotImplementedError
1636
1637 @pyqtSlot(QPoint)
1638 def on_eVariable_customContextMenuRequested(self, pos):
1639 """
1640 Slot documentation goes here.
1641
1642 @param pos DESCRIPTION
1643 @type QPoint
1644 """
1645 # TODO: not implemented yet
1646 raise NotImplementedError
1647
1648 @pyqtSlot(str)
1649 def on_eVariable_textEdited(self, p0):
1650 """
1651 Slot documentation goes here.
1652
1653 @param p0 DESCRIPTION
1654 @type str
1655 """
1656 # TODO: not implemented yet
1657 raise NotImplementedError
1658
1659 @pyqtSlot(int, int)
1660 def on_eVariable_cursorPositionChanged(self, p0, p1):
1661 """
1662 Slot documentation goes here.
1663
1664 @param p0 DESCRIPTION
1665 @type int
1666 @param p1 DESCRIPTION
1667 @type int
1668 """
1669 # TODO: not implemented yet
1670 raise NotImplementedError
1671
1672 @pyqtSlot()
1673 def on_eVariable_returnPressed(self):
1674 """
1675 Slot documentation goes here.
1676 """
1677 # TODO: not implemented yet
1678 raise NotImplementedError
1679
1680 @pyqtSlot()
1681 def on_eVariable_editingFinished(self):
1682 """
1683 Slot documentation goes here.
1684 """
1685 # TODO: not implemented yet
1686 raise NotImplementedError
1687
1688 @pyqtSlot()
1689 def on_eVariable_selectionChanged(self):
1690 """
1691 Slot documentation goes here.
1692 """
1693 # TODO: not implemented yet
1694 raise NotImplementedError
1695
1696 @pyqtSlot()
1697 def on_eVariable_inputRejected(self):
1698 """
1699 Slot documentation goes here.
1700 """
1701 # TODO: not implemented yet
1702 raise NotImplementedError
1703
1704 @pyqtSlot(QObject)
1705 def on_buttonBox_destroyed(self, p0):
1706 """
1707 Slot documentation goes here.
1708
1709 @param p0 DESCRIPTION
1710 @type QObject
1711 """
1712 # TODO: not implemented yet
1713 raise NotImplementedError
1714
1715 @pyqtSlot()
1716 def on_buttonBox_destroyed(self):
1717 """
1718 Slot documentation goes here.
1719 """
1720 # TODO: not implemented yet
1721 raise NotImplementedError
1722
1723 @pyqtSlot(str)
1724 def on_buttonBox_objectNameChanged(self, objectName):
1725 """
1726 Slot documentation goes here.
1727
1728 @param objectName DESCRIPTION
1729 @type str
1730 """
1731 # TODO: not implemented yet
1732 raise NotImplementedError
1733
1734 @pyqtSlot(str)
1735 def on_buttonBox_windowTitleChanged(self, title):
1736 """
1737 Slot documentation goes here.
1738
1739 @param title DESCRIPTION
1740 @type str
1741 """
1742 # TODO: not implemented yet
1743 raise NotImplementedError
1744
1745 @pyqtSlot(QIcon)
1746 def on_buttonBox_windowIconChanged(self, icon):
1747 """
1748 Slot documentation goes here.
1749
1750 @param icon DESCRIPTION
1751 @type QIcon
1752 """
1753 # TODO: not implemented yet
1754 raise NotImplementedError
1755
1756 @pyqtSlot(str)
1757 def on_buttonBox_windowIconTextChanged(self, iconText):
1758 """
1759 Slot documentation goes here.
1760
1761 @param iconText DESCRIPTION
1762 @type str
1763 """
1764 # TODO: not implemented yet
1765 raise NotImplementedError
1766
1767 @pyqtSlot(QPoint)
1768 def on_buttonBox_customContextMenuRequested(self, pos):
1769 """
1770 Slot documentation goes here.
1771
1772 @param pos DESCRIPTION
1773 @type QPoint
1774 """
1775 # TODO: not implemented yet
1776 raise NotImplementedError
1777
1778 @pyqtSlot()
1779 def on_buttonBox_accepted(self):
1780 """
1781 Slot documentation goes here.
1782 """
1783 # TODO: not implemented yet
1784 raise NotImplementedError
1785
1786 @pyqtSlot()
1787 def on_buttonBox_helpRequested(self):
1788 """
1789 Slot documentation goes here.
1790 """
1791 # TODO: not implemented yet
1792 raise NotImplementedError
1793
1794 @pyqtSlot()
1795 def on_buttonBox_rejected(self):
1796 """
1797 Slot documentation goes here.
1798 """
1799 # TODO: not implemented yet
1800 raise NotImplementedError

eric ide

mercurial