396 <p> |
396 <p> |
397 Constructor |
397 Constructor |
398 </p> |
398 </p> |
399 <dl> |
399 <dl> |
400 |
400 |
401 <dt><i>vcs</i></dt> |
401 <dt><i>vcs</i> (Git)</dt> |
402 <dd> |
402 <dd> |
403 reference to the vcs object |
403 reference to the vcs object |
404 </dd> |
404 </dd> |
405 <dt><i>parent</i></dt> |
405 <dt><i>parent</i> (QWidget)</dt> |
406 <dd> |
406 <dd> |
407 parent widget (QWidget) |
407 parent widget |
408 </dd> |
408 </dd> |
409 </dl> |
409 </dl> |
410 <a NAME="GitLogBrowserDialog.__actionMode" ID="GitLogBrowserDialog.__actionMode"></a> |
410 <a NAME="GitLogBrowserDialog.__actionMode" ID="GitLogBrowserDialog.__actionMode"></a> |
411 <h4>GitLogBrowserDialog.__actionMode</h4> |
411 <h4>GitLogBrowserDialog.__actionMode</h4> |
412 <b>__actionMode</b>(<i></i>) |
412 <b>__actionMode</b>(<i></i>) |
415 Private method to get the selected action mode. |
415 Private method to get the selected action mode. |
416 </p> |
416 </p> |
417 <dl> |
417 <dl> |
418 <dt>Return:</dt> |
418 <dt>Return:</dt> |
419 <dd> |
419 <dd> |
420 selected action mode (string, one of filter or find) |
420 selected action mode (one of 'filter' or 'find') |
|
421 </dd> |
|
422 </dl> |
|
423 <dl> |
|
424 <dt>Return Type:</dt> |
|
425 <dd> |
|
426 str |
421 </dd> |
427 </dd> |
422 </dl> |
428 </dl> |
423 <a NAME="GitLogBrowserDialog.__addFinishCallback" ID="GitLogBrowserDialog.__addFinishCallback"></a> |
429 <a NAME="GitLogBrowserDialog.__addFinishCallback" ID="GitLogBrowserDialog.__addFinishCallback"></a> |
424 <h4>GitLogBrowserDialog.__addFinishCallback</h4> |
430 <h4>GitLogBrowserDialog.__addFinishCallback</h4> |
425 <b>__addFinishCallback</b>(<i>callback</i>) |
431 <b>__addFinishCallback</b>(<i>callback</i>) |
496 <p> |
502 <p> |
497 Private slot to find an item matching the entered criteria. |
503 Private slot to find an item matching the entered criteria. |
498 </p> |
504 </p> |
499 <dl> |
505 <dl> |
500 |
506 |
501 <dt><i>backwards</i></dt> |
507 <dt><i>backwards</i> (bool)</dt> |
502 <dd> |
508 <dd> |
503 flag indicating to search backwards (boolean) |
509 flag indicating to search backwards |
504 </dd> |
510 </dd> |
505 <dt><i>interactive</i></dt> |
511 <dt><i>interactive</i> (bool)</dt> |
506 <dd> |
512 <dd> |
507 flag indicating an interactive search (boolean) |
513 flag indicating an interactive search |
508 </dd> |
514 </dd> |
509 </dl> |
515 </dl> |
510 <a NAME="GitLogBrowserDialog.__finish" ID="GitLogBrowserDialog.__finish"></a> |
516 <a NAME="GitLogBrowserDialog.__finish" ID="GitLogBrowserDialog.__finish"></a> |
511 <h4>GitLogBrowserDialog.__finish</h4> |
517 <h4>GitLogBrowserDialog.__finish</h4> |
512 <b>__finish</b>(<i></i>) |
518 <b>__finish</b>(<i></i>) |
563 <p> |
569 <p> |
564 Private method to generate edge info for the give data. |
570 Private method to generate edge info for the give data. |
565 </p> |
571 </p> |
566 <dl> |
572 <dl> |
567 |
573 |
568 <dt><i>commitId</i></dt> |
574 <dt><i>commitId</i> (str)</dt> |
569 <dd> |
575 <dd> |
570 commit id to calculate edge info for (string) |
576 commit id to calculate edge info for |
571 </dd> |
577 </dd> |
572 <dt><i>parents</i></dt> |
578 <dt><i>parents</i> (list of str)</dt> |
573 <dd> |
579 <dd> |
574 list of parent commits (list of strings) |
580 list of parent commits |
575 </dd> |
581 </dd> |
576 </dl> |
582 </dl> |
577 <dl> |
583 <dl> |
578 <dt>Return:</dt> |
584 <dt>Return:</dt> |
579 <dd> |
585 <dd> |
580 tuple containing the column and color index for |
586 tuple containing the column and color index for |
581 the given node and a list of tuples indicating the edges |
587 the given node and a list of tuples indicating the edges |
582 between the given node and its parents |
588 between the given node and its parents |
583 (integer, integer, [(integer, integer, integer), ...]) |
589 </dd> |
|
590 </dl> |
|
591 <dl> |
|
592 <dt>Return Type:</dt> |
|
593 <dd> |
|
594 tuple of (int, int, [(int, int, int), ...]) |
584 </dd> |
595 </dd> |
585 </dl> |
596 </dl> |
586 <a NAME="GitLogBrowserDialog.__generateFileItem" ID="GitLogBrowserDialog.__generateFileItem"></a> |
597 <a NAME="GitLogBrowserDialog.__generateFileItem" ID="GitLogBrowserDialog.__generateFileItem"></a> |
587 <h4>GitLogBrowserDialog.__generateFileItem</h4> |
598 <h4>GitLogBrowserDialog.__generateFileItem</h4> |
588 <b>__generateFileItem</b>(<i>action, path, copyfrom, additions, deletions</i>) |
599 <b>__generateFileItem</b>(<i>action, path, copyfrom, additions, deletions</i>) |
590 <p> |
601 <p> |
591 Private method to generate a changed files tree entry. |
602 Private method to generate a changed files tree entry. |
592 </p> |
603 </p> |
593 <dl> |
604 <dl> |
594 |
605 |
595 <dt><i>action</i></dt> |
606 <dt><i>action</i> (str)</dt> |
596 <dd> |
607 <dd> |
597 indicator for the change action ("A", "C", "D", "M", |
608 indicator for the change action ("A", "C", "D", "M", |
598 "R", "T", "U", "X") |
609 "R", "T", "U", "X") |
599 </dd> |
610 </dd> |
600 <dt><i>path</i></dt> |
611 <dt><i>path</i> (str)</dt> |
601 <dd> |
612 <dd> |
602 path of the file in the repository (string) |
613 path of the file in the repository |
603 </dd> |
614 </dd> |
604 <dt><i>copyfrom</i></dt> |
615 <dt><i>copyfrom</i> (str)</dt> |
605 <dd> |
616 <dd> |
606 path the file was copied from (string) |
617 path the file was copied from |
607 </dd> |
618 </dd> |
608 <dt><i>additions</i></dt> |
619 <dt><i>additions</i> (int)</dt> |
609 <dd> |
620 <dd> |
610 number of added lines (int) |
621 number of added lines |
611 </dd> |
622 </dd> |
612 <dt><i>deletions</i></dt> |
623 <dt><i>deletions</i> (int)</dt> |
613 <dd> |
624 <dd> |
614 number of deleted lines (int) |
625 number of deleted lines |
615 </dd> |
626 </dd> |
616 </dl> |
627 </dl> |
617 <dl> |
628 <dl> |
618 <dt>Return:</dt> |
629 <dt>Return:</dt> |
619 <dd> |
630 <dd> |
620 reference to the generated item (QTreeWidgetItem) |
631 reference to the generated item |
|
632 </dd> |
|
633 </dl> |
|
634 <dl> |
|
635 <dt>Return Type:</dt> |
|
636 <dd> |
|
637 QTreeWidgetItem |
621 </dd> |
638 </dd> |
622 </dl> |
639 </dl> |
623 <a NAME="GitLogBrowserDialog.__generateIcon" ID="GitLogBrowserDialog.__generateIcon"></a> |
640 <a NAME="GitLogBrowserDialog.__generateIcon" ID="GitLogBrowserDialog.__generateIcon"></a> |
624 <h4>GitLogBrowserDialog.__generateIcon</h4> |
641 <h4>GitLogBrowserDialog.__generateIcon</h4> |
625 <b>__generateIcon</b>(<i>column, bottomedges, topedges, dotColor, currentCommit</i>) |
642 <b>__generateIcon</b>(<i>column, bottomedges, topedges, dotColor, currentCommit</i>) |
628 Private method to generate an icon containing the revision tree for the |
645 Private method to generate an icon containing the revision tree for the |
629 given data. |
646 given data. |
630 </p> |
647 </p> |
631 <dl> |
648 <dl> |
632 |
649 |
633 <dt><i>column</i></dt> |
650 <dt><i>column</i> (int)</dt> |
634 <dd> |
651 <dd> |
635 column index of the revision (integer) |
652 column index of the revision |
636 </dd> |
653 </dd> |
637 <dt><i>bottomedges</i></dt> |
654 <dt><i>bottomedges</i> (list of [(int, int, int)])</dt> |
638 <dd> |
655 <dd> |
639 list of edges for the bottom of the node |
656 list of edges for the bottom of the node |
640 (list of tuples of three integers) |
657 </dd> |
641 </dd> |
658 <dt><i>topedges</i> (list of [(int, int, int)])</dt> |
642 <dt><i>topedges</i></dt> |
|
643 <dd> |
659 <dd> |
644 list of edges for the top of the node |
660 list of edges for the top of the node |
645 (list of tuples of three integers) |
661 </dd> |
646 </dd> |
662 <dt><i>dotColor</i> (QColor)</dt> |
647 <dt><i>dotColor</i></dt> |
663 <dd> |
648 <dd> |
664 color to be used for the dot |
649 color to be used for the dot (QColor) |
665 </dd> |
650 </dd> |
666 <dt><i>currentCommit</i> (bool)</dt> |
651 <dt><i>currentCommit</i></dt> |
|
652 <dd> |
667 <dd> |
653 flag indicating to draw the icon for the |
668 flag indicating to draw the icon for the |
654 current commit (boolean) |
669 current commit |
655 </dd> |
670 </dd> |
656 </dl> |
671 </dl> |
657 <dl> |
672 <dl> |
658 <dt>Return:</dt> |
673 <dt>Return:</dt> |
659 <dd> |
674 <dd> |
660 icon for the node (QIcon) |
675 icon for the node |
|
676 </dd> |
|
677 </dl> |
|
678 <dl> |
|
679 <dt>Return Type:</dt> |
|
680 <dd> |
|
681 QIcon |
661 </dd> |
682 </dd> |
662 </dl> |
683 </dl> |
663 <a NAME="GitLogBrowserDialog.__generateLogItem" ID="GitLogBrowserDialog.__generateLogItem"></a> |
684 <a NAME="GitLogBrowserDialog.__generateLogItem" ID="GitLogBrowserDialog.__generateLogItem"></a> |
664 <h4>GitLogBrowserDialog.__generateLogItem</h4> |
685 <h4>GitLogBrowserDialog.__generateLogItem</h4> |
665 <b>__generateLogItem</b>(<i>author, date, committer, commitDate, subject, message, commitId, fullCommitId, changedPaths, parents, refnames, authorMail, committerMail, </i>) |
686 <b>__generateLogItem</b>(<i>author, date, committer, commitDate, subject, message, commitId, fullCommitId, changedPaths, parents, refnames, authorMail, committerMail, </i>) |
667 <p> |
688 <p> |
668 Private method to generate a log tree entry. |
689 Private method to generate a log tree entry. |
669 </p> |
690 </p> |
670 <dl> |
691 <dl> |
671 |
692 |
672 <dt><i>author</i></dt> |
693 <dt><i>author</i> (str)</dt> |
673 <dd> |
694 <dd> |
674 author info (string) |
695 author info |
675 </dd> |
696 </dd> |
676 <dt><i>date</i></dt> |
697 <dt><i>date</i> (str)</dt> |
677 <dd> |
698 <dd> |
678 date info (string) |
699 date info |
679 </dd> |
700 </dd> |
680 <dt><i>committer</i></dt> |
701 <dt><i>committer</i> (str)</dt> |
681 <dd> |
702 <dd> |
682 committer info (string) |
703 committer info |
683 </dd> |
704 </dd> |
684 <dt><i>commitDate</i></dt> |
705 <dt><i>commitDate</i> (str)</dt> |
685 <dd> |
706 <dd> |
686 commit date info (string) |
707 commit date info |
687 </dd> |
708 </dd> |
688 <dt><i>subject</i></dt> |
709 <dt><i>subject</i> (str)</dt> |
689 <dd> |
710 <dd> |
690 subject of the log entry (string) |
711 subject of the log entry |
691 </dd> |
712 </dd> |
692 <dt><i>message</i></dt> |
713 <dt><i>message</i> (list of str)</dt> |
693 <dd> |
714 <dd> |
694 text of the log message (list of strings) |
715 text of the log message |
695 </dd> |
716 </dd> |
696 <dt><i>commitId</i></dt> |
717 <dt><i>commitId</i> (str)</dt> |
697 <dd> |
718 <dd> |
698 commit id info (string) |
719 commit id info |
699 </dd> |
720 </dd> |
700 <dt><i>fullCommitId</i></dt> |
721 <dt><i>fullCommitId</i> (str)</dt> |
701 <dd> |
722 <dd> |
702 unabbreviated commit id info (string) |
723 unabbreviated commit id info |
703 </dd> |
724 </dd> |
704 <dt><i>changedPaths</i></dt> |
725 <dt><i>changedPaths</i> (list of dict)</dt> |
705 <dd> |
726 <dd> |
706 list of dictionary objects containing |
727 list of dictionary objects containing |
707 info about the changed files/directories |
728 info about the changed files/directories |
708 </dd> |
729 </dd> |
709 <dt><i>parents</i></dt> |
730 <dt><i>parents</i> (list of int)</dt> |
710 <dd> |
731 <dd> |
711 list of parent revisions (list of integers) |
732 list of parent revisions |
712 </dd> |
733 </dd> |
713 <dt><i>refnames</i></dt> |
734 <dt><i>refnames</i> (str)</dt> |
714 <dd> |
735 <dd> |
715 tags and branches of the commit (string) |
736 tags and branches of the commit |
716 </dd> |
737 </dd> |
717 <dt><i>authorMail</i></dt> |
738 <dt><i>authorMail</i> (str)</dt> |
718 <dd> |
739 <dd> |
719 author's email address (string) |
740 author's email address |
720 </dd> |
741 </dd> |
721 <dt><i>committerMail</i></dt> |
742 <dt><i>committerMail</i> (str)</dt> |
722 <dd> |
743 <dd> |
723 committer's email address (string) |
744 committer's email address |
724 </dd> |
745 </dd> |
725 </dl> |
746 </dl> |
726 <dl> |
747 <dl> |
727 <dt>Return:</dt> |
748 <dt>Return:</dt> |
728 <dd> |
749 <dd> |
729 reference to the generated item (QTreeWidgetItem) |
750 reference to the generated item |
|
751 </dd> |
|
752 </dl> |
|
753 <dl> |
|
754 <dt>Return Type:</dt> |
|
755 <dd> |
|
756 QTreeWidgetItem |
730 </dd> |
757 </dd> |
731 </dl> |
758 </dl> |
732 <a NAME="GitLogBrowserDialog.__generatorFinished" ID="GitLogBrowserDialog.__generatorFinished"></a> |
759 <a NAME="GitLogBrowserDialog.__generatorFinished" ID="GitLogBrowserDialog.__generatorFinished"></a> |
733 <h4>GitLogBrowserDialog.__generatorFinished</h4> |
760 <h4>GitLogBrowserDialog.__generatorFinished</h4> |
734 <b>__generatorFinished</b>(<i></i>) |
761 <b>__generatorFinished</b>(<i></i>) |
796 <p> |
823 <p> |
797 Private method to get the commit id for a tag. |
824 Private method to get the commit id for a tag. |
798 </p> |
825 </p> |
799 <dl> |
826 <dl> |
800 |
827 |
801 <dt><i>tag</i></dt> |
828 <dt><i>tag</i> (str)</dt> |
802 <dd> |
829 <dd> |
803 tag name (string) |
830 tag name |
804 </dd> |
831 </dd> |
805 </dl> |
832 </dl> |
806 <dl> |
833 <dl> |
807 <dt>Return:</dt> |
834 <dt>Return:</dt> |
808 <dd> |
835 <dd> |
809 commit id shortened to 10 characters (string) |
836 commit id shortened to 10 characters |
|
837 </dd> |
|
838 </dl> |
|
839 <dl> |
|
840 <dt>Return Type:</dt> |
|
841 <dd> |
|
842 str |
810 </dd> |
843 </dd> |
811 </dl> |
844 </dl> |
812 <a NAME="GitLogBrowserDialog.__getLogEntries" ID="GitLogBrowserDialog.__getLogEntries"></a> |
845 <a NAME="GitLogBrowserDialog.__getLogEntries" ID="GitLogBrowserDialog.__getLogEntries"></a> |
813 <h4>GitLogBrowserDialog.__getLogEntries</h4> |
846 <h4>GitLogBrowserDialog.__getLogEntries</h4> |
814 <b>__getLogEntries</b>(<i>skip=0, noEntries=0</i>) |
847 <b>__getLogEntries</b>(<i>skip=0, noEntries=0</i>) |
816 <p> |
849 <p> |
817 Private method to retrieve log entries from the repository. |
850 Private method to retrieve log entries from the repository. |
818 </p> |
851 </p> |
819 <dl> |
852 <dl> |
820 |
853 |
821 <dt><i>skip</i></dt> |
854 <dt><i>skip</i> (int)</dt> |
822 <dd> |
855 <dd> |
823 number of log entries to skip (integer) |
856 number of log entries to skip |
824 </dd> |
857 </dd> |
825 <dt><i>noEntries</i></dt> |
858 <dt><i>noEntries</i> (int)</dt> |
826 <dd> |
859 <dd> |
827 number of entries to get (0 = default) (int) |
860 number of entries to get (0 = default) |
828 </dd> |
861 </dd> |
829 </dl> |
862 </dl> |
830 <a NAME="GitLogBrowserDialog.__getTagsForCommit" ID="GitLogBrowserDialog.__getTagsForCommit"></a> |
863 <a NAME="GitLogBrowserDialog.__getTagsForCommit" ID="GitLogBrowserDialog.__getTagsForCommit"></a> |
831 <h4>GitLogBrowserDialog.__getTagsForCommit</h4> |
864 <h4>GitLogBrowserDialog.__getTagsForCommit</h4> |
832 <b>__getTagsForCommit</b>(<i>commitId</i>) |
865 <b>__getTagsForCommit</b>(<i>commitId</i>) |
889 <p> |
922 <p> |
890 Private method to merge the file separator entries. |
923 Private method to merge the file separator entries. |
891 </p> |
924 </p> |
892 <dl> |
925 <dl> |
893 |
926 |
894 <dt><i>fileSeparators</i></dt> |
927 <dt><i>fileSeparators</i> (list of str)</dt> |
895 <dd> |
928 <dd> |
896 list of file separator entries to be merged |
929 list of file separator entries to be merged |
897 </dd> |
930 </dd> |
898 </dl> |
931 </dl> |
899 <dl> |
932 <dl> |
900 <dt>Return:</dt> |
933 <dt>Return:</dt> |
901 <dd> |
934 <dd> |
902 merged list of file separator entries |
935 merged list of file separator entries |
|
936 </dd> |
|
937 </dl> |
|
938 <dl> |
|
939 <dt>Return Type:</dt> |
|
940 <dd> |
|
941 list of str |
903 </dd> |
942 </dd> |
904 </dl> |
943 </dl> |
905 <a NAME="GitLogBrowserDialog.__prepareFieldSearch" ID="GitLogBrowserDialog.__prepareFieldSearch"></a> |
944 <a NAME="GitLogBrowserDialog.__prepareFieldSearch" ID="GitLogBrowserDialog.__prepareFieldSearch"></a> |
906 <h4>GitLogBrowserDialog.__prepareFieldSearch</h4> |
945 <h4>GitLogBrowserDialog.__prepareFieldSearch</h4> |
907 <b>__prepareFieldSearch</b>(<i></i>) |
946 <b>__prepareFieldSearch</b>(<i></i>) |
911 </p> |
950 </p> |
912 <dl> |
951 <dl> |
913 <dt>Return:</dt> |
952 <dt>Return:</dt> |
914 <dd> |
953 <dd> |
915 tuple of field index, search expression and flag indicating |
954 tuple of field index, search expression and flag indicating |
916 that the field index is a data role (integer, string, boolean) |
955 that the field index is a data role |
|
956 </dd> |
|
957 </dl> |
|
958 <dl> |
|
959 <dt>Return Type:</dt> |
|
960 <dd> |
|
961 tuple of (int, str, bool) |
917 </dd> |
962 </dd> |
918 </dl> |
963 </dl> |
919 <a NAME="GitLogBrowserDialog.__procFinished" ID="GitLogBrowserDialog.__procFinished"></a> |
964 <a NAME="GitLogBrowserDialog.__procFinished" ID="GitLogBrowserDialog.__procFinished"></a> |
920 <h4>GitLogBrowserDialog.__procFinished</h4> |
965 <h4>GitLogBrowserDialog.__procFinished</h4> |
921 <b>__procFinished</b>(<i>exitCode, exitStatus</i>) |
966 <b>__procFinished</b>(<i>exitCode, exitStatus</i>) |
923 <p> |
968 <p> |
924 Private slot connected to the finished signal. |
969 Private slot connected to the finished signal. |
925 </p> |
970 </p> |
926 <dl> |
971 <dl> |
927 |
972 |
928 <dt><i>exitCode</i></dt> |
973 <dt><i>exitCode</i> (int)</dt> |
929 <dd> |
974 <dd> |
930 exit code of the process (integer) |
975 exit code of the process |
931 </dd> |
976 </dd> |
932 <dt><i>exitStatus</i></dt> |
977 <dt><i>exitStatus</i> (QProcess.ExitStatus)</dt> |
933 <dd> |
978 <dd> |
934 exit status of the process (QProcess.ExitStatus) |
979 exit status of the process |
935 </dd> |
980 </dd> |
936 </dl> |
981 </dl> |
937 <a NAME="GitLogBrowserDialog.__processBuffer" ID="GitLogBrowserDialog.__processBuffer"></a> |
982 <a NAME="GitLogBrowserDialog.__processBuffer" ID="GitLogBrowserDialog.__processBuffer"></a> |
938 <h4>GitLogBrowserDialog.__processBuffer</h4> |
983 <h4>GitLogBrowserDialog.__processBuffer</h4> |
939 <b>__processBuffer</b>(<i></i>) |
984 <b>__processBuffer</b>(<i></i>) |
1032 <p> |
1077 <p> |
1033 Private slot to show/hide the committer columns. |
1078 Private slot to show/hide the committer columns. |
1034 </p> |
1079 </p> |
1035 <dl> |
1080 <dl> |
1036 |
1081 |
1037 <dt><i>on</i></dt> |
1082 <dt><i>on</i> (bool)</dt> |
1038 <dd> |
1083 <dd> |
1039 flag indicating the selection state (boolean) |
1084 flag indicating the selection state |
1040 </dd> |
1085 </dd> |
1041 </dl> |
1086 </dl> |
1042 <a NAME="GitLogBrowserDialog.__showBranchesColumn" ID="GitLogBrowserDialog.__showBranchesColumn"></a> |
1087 <a NAME="GitLogBrowserDialog.__showBranchesColumn" ID="GitLogBrowserDialog.__showBranchesColumn"></a> |
1043 <h4>GitLogBrowserDialog.__showBranchesColumn</h4> |
1088 <h4>GitLogBrowserDialog.__showBranchesColumn</h4> |
1044 <b>__showBranchesColumn</b>(<i>on</i>) |
1089 <b>__showBranchesColumn</b>(<i>on</i>) |
1046 <p> |
1091 <p> |
1047 Private slot to show/hide the branches column. |
1092 Private slot to show/hide the branches column. |
1048 </p> |
1093 </p> |
1049 <dl> |
1094 <dl> |
1050 |
1095 |
1051 <dt><i>on</i></dt> |
1096 <dt><i>on</i> (bool)</dt> |
1052 <dd> |
1097 <dd> |
1053 flag indicating the selection state (boolean) |
1098 flag indicating the selection state |
1054 </dd> |
1099 </dd> |
1055 </dl> |
1100 </dl> |
1056 <a NAME="GitLogBrowserDialog.__showCommitIdColumn" ID="GitLogBrowserDialog.__showCommitIdColumn"></a> |
1101 <a NAME="GitLogBrowserDialog.__showCommitIdColumn" ID="GitLogBrowserDialog.__showCommitIdColumn"></a> |
1057 <h4>GitLogBrowserDialog.__showCommitIdColumn</h4> |
1102 <h4>GitLogBrowserDialog.__showCommitIdColumn</h4> |
1058 <b>__showCommitIdColumn</b>(<i>on</i>) |
1103 <b>__showCommitIdColumn</b>(<i>on</i>) |
1060 <p> |
1105 <p> |
1061 Private slot to show/hide the commit ID column. |
1106 Private slot to show/hide the commit ID column. |
1062 </p> |
1107 </p> |
1063 <dl> |
1108 <dl> |
1064 |
1109 |
1065 <dt><i>on</i></dt> |
1110 <dt><i>on</i> (bool)</dt> |
1066 <dd> |
1111 <dd> |
1067 flag indicating the selection state (boolean) |
1112 flag indicating the selection state |
1068 </dd> |
1113 </dd> |
1069 </dl> |
1114 </dl> |
1070 <a NAME="GitLogBrowserDialog.__showCommitterColumns" ID="GitLogBrowserDialog.__showCommitterColumns"></a> |
1115 <a NAME="GitLogBrowserDialog.__showCommitterColumns" ID="GitLogBrowserDialog.__showCommitterColumns"></a> |
1071 <h4>GitLogBrowserDialog.__showCommitterColumns</h4> |
1116 <h4>GitLogBrowserDialog.__showCommitterColumns</h4> |
1072 <b>__showCommitterColumns</b>(<i>on</i>) |
1117 <b>__showCommitterColumns</b>(<i>on</i>) |
1074 <p> |
1119 <p> |
1075 Private slot to show/hide the committer columns. |
1120 Private slot to show/hide the committer columns. |
1076 </p> |
1121 </p> |
1077 <dl> |
1122 <dl> |
1078 |
1123 |
1079 <dt><i>on</i></dt> |
1124 <dt><i>on</i> (bool)</dt> |
1080 <dd> |
1125 <dd> |
1081 flag indicating the selection state (boolean) |
1126 flag indicating the selection state |
1082 </dd> |
1127 </dd> |
1083 </dl> |
1128 </dl> |
1084 <a NAME="GitLogBrowserDialog.__showError" ID="GitLogBrowserDialog.__showError"></a> |
1129 <a NAME="GitLogBrowserDialog.__showError" ID="GitLogBrowserDialog.__showError"></a> |
1085 <h4>GitLogBrowserDialog.__showError</h4> |
1130 <h4>GitLogBrowserDialog.__showError</h4> |
1086 <b>__showError</b>(<i>out</i>) |
1131 <b>__showError</b>(<i>out</i>) |
1102 <p> |
1147 <p> |
1103 Private slot to show/hide the tags column. |
1148 Private slot to show/hide the tags column. |
1104 </p> |
1149 </p> |
1105 <dl> |
1150 <dl> |
1106 |
1151 |
1107 <dt><i>on</i></dt> |
1152 <dt><i>on</i> (bool)</dt> |
1108 <dd> |
1153 <dd> |
1109 flag indicating the selection state (boolean) |
1154 flag indicating the selection state |
1110 </dd> |
1155 </dd> |
1111 </dl> |
1156 </dl> |
1112 <a NAME="GitLogBrowserDialog.__switchActTriggered" ID="GitLogBrowserDialog.__switchActTriggered"></a> |
1157 <a NAME="GitLogBrowserDialog.__switchActTriggered" ID="GitLogBrowserDialog.__switchActTriggered"></a> |
1113 <h4>GitLogBrowserDialog.__switchActTriggered</h4> |
1158 <h4>GitLogBrowserDialog.__switchActTriggered</h4> |
1114 <b>__switchActTriggered</b>(<i></i>) |
1159 <b>__switchActTriggered</b>(<i></i>) |
1181 <p> |
1226 <p> |
1182 Local function to calculate a x-position for a column. |
1227 Local function to calculate a x-position for a column. |
1183 </p> |
1228 </p> |
1184 <dl> |
1229 <dl> |
1185 |
1230 |
1186 <dt><i>col</i></dt> |
1231 <dt><i>col</i> (int)</dt> |
1187 <dd> |
1232 <dd> |
1188 column number (integer) |
1233 column number |
1189 </dd> |
1234 </dd> |
1190 <dt><i>radius</i></dt> |
1235 <dt><i>radius</i> (int)</dt> |
1191 <dd> |
1236 <dd> |
1192 radius of the indicator circle (integer) |
1237 radius of the indicator circle |
1193 </dd> |
1238 </dd> |
1194 </dl> |
1239 </dl> |
1195 <a NAME="GitLogBrowserDialog.keyPressEvent" ID="GitLogBrowserDialog.keyPressEvent"></a> |
1240 <a NAME="GitLogBrowserDialog.keyPressEvent" ID="GitLogBrowserDialog.keyPressEvent"></a> |
1196 <h4>GitLogBrowserDialog.keyPressEvent</h4> |
1241 <h4>GitLogBrowserDialog.keyPressEvent</h4> |
1197 <b>keyPressEvent</b>(<i>evt</i>) |
1242 <b>keyPressEvent</b>(<i>evt</i>) |
1213 <p> |
1258 <p> |
1214 Private slot called by a button of the button box clicked. |
1259 Private slot called by a button of the button box clicked. |
1215 </p> |
1260 </p> |
1216 <dl> |
1261 <dl> |
1217 |
1262 |
1218 <dt><i>button</i></dt> |
1263 <dt><i>button</i> (QAbstractButton)</dt> |
1219 <dd> |
1264 <dd> |
1220 button that was clicked (QAbstractButton) |
1265 button that was clicked |
1221 </dd> |
1266 </dd> |
1222 </dl> |
1267 </dl> |
1223 <a NAME="GitLogBrowserDialog.on_diffSelectLabel_linkActivated" ID="GitLogBrowserDialog.on_diffSelectLabel_linkActivated"></a> |
1268 <a NAME="GitLogBrowserDialog.on_diffSelectLabel_linkActivated" ID="GitLogBrowserDialog.on_diffSelectLabel_linkActivated"></a> |
1224 <h4>GitLogBrowserDialog.on_diffSelectLabel_linkActivated</h4> |
1269 <h4>GitLogBrowserDialog.on_diffSelectLabel_linkActivated</h4> |
1225 <b>on_diffSelectLabel_linkActivated</b>(<i>link</i>) |
1270 <b>on_diffSelectLabel_linkActivated</b>(<i>link</i>) |
1262 <p> |
1307 <p> |
1263 Private slot called, when the current item of the files tree changes. |
1308 Private slot called, when the current item of the files tree changes. |
1264 </p> |
1309 </p> |
1265 <dl> |
1310 <dl> |
1266 |
1311 |
1267 <dt><i>current</i></dt> |
1312 <dt><i>current</i> (QTreeWidgetItem)</dt> |
1268 <dd> |
1313 <dd> |
1269 reference to the new current item (QTreeWidgetItem) |
1314 reference to the new current item |
1270 </dd> |
1315 </dd> |
1271 <dt><i>previous</i></dt> |
1316 <dt><i>previous</i> (QTreeWidgetItem)</dt> |
1272 <dd> |
1317 <dd> |
1273 reference to the old current item (QTreeWidgetItem) |
1318 reference to the old current item |
1274 </dd> |
1319 </dd> |
1275 </dl> |
1320 </dl> |
1276 <a NAME="GitLogBrowserDialog.on_findNextButton_clicked" ID="GitLogBrowserDialog.on_findNextButton_clicked"></a> |
1321 <a NAME="GitLogBrowserDialog.on_findNextButton_clicked" ID="GitLogBrowserDialog.on_findNextButton_clicked"></a> |
1277 <h4>GitLogBrowserDialog.on_findNextButton_clicked</h4> |
1322 <h4>GitLogBrowserDialog.on_findNextButton_clicked</h4> |
1278 <b>on_findNextButton_clicked</b>(<i></i>) |
1323 <b>on_findNextButton_clicked</b>(<i></i>) |
1294 <p> |
1339 <p> |
1295 Private slot called, when the from date changes. |
1340 Private slot called, when the from date changes. |
1296 </p> |
1341 </p> |
1297 <dl> |
1342 <dl> |
1298 |
1343 |
1299 <dt><i>date</i></dt> |
1344 <dt><i>date</i> (QDate)</dt> |
1300 <dd> |
1345 <dd> |
1301 new date (QDate) |
1346 new date |
1302 </dd> |
1347 </dd> |
1303 </dl> |
1348 </dl> |
1304 <a NAME="GitLogBrowserDialog.on_input_returnPressed" ID="GitLogBrowserDialog.on_input_returnPressed"></a> |
1349 <a NAME="GitLogBrowserDialog.on_input_returnPressed" ID="GitLogBrowserDialog.on_input_returnPressed"></a> |
1305 <h4>GitLogBrowserDialog.on_input_returnPressed</h4> |
1350 <h4>GitLogBrowserDialog.on_input_returnPressed</h4> |
1306 <b>on_input_returnPressed</b>(<i></i>) |
1351 <b>on_input_returnPressed</b>(<i></i>) |
1315 <p> |
1360 <p> |
1316 Private slot called, when the current item of the log tree changes. |
1361 Private slot called, when the current item of the log tree changes. |
1317 </p> |
1362 </p> |
1318 <dl> |
1363 <dl> |
1319 |
1364 |
1320 <dt><i>current</i></dt> |
1365 <dt><i>current</i> (QTreeWidgetItem)</dt> |
1321 <dd> |
1366 <dd> |
1322 reference to the new current item (QTreeWidgetItem) |
1367 reference to the new current item |
1323 </dd> |
1368 </dd> |
1324 <dt><i>previous</i></dt> |
1369 <dt><i>previous</i> (QTreeWidgetItem)</dt> |
1325 <dd> |
1370 <dd> |
1326 reference to the old current item (QTreeWidgetItem) |
1371 reference to the old current item |
1327 </dd> |
1372 </dd> |
1328 </dl> |
1373 </dl> |
1329 <a NAME="GitLogBrowserDialog.on_logTree_customContextMenuRequested" ID="GitLogBrowserDialog.on_logTree_customContextMenuRequested"></a> |
1374 <a NAME="GitLogBrowserDialog.on_logTree_customContextMenuRequested" ID="GitLogBrowserDialog.on_logTree_customContextMenuRequested"></a> |
1330 <h4>GitLogBrowserDialog.on_logTree_customContextMenuRequested</h4> |
1375 <h4>GitLogBrowserDialog.on_logTree_customContextMenuRequested</h4> |
1331 <b>on_logTree_customContextMenuRequested</b>(<i>pos</i>) |
1376 <b>on_logTree_customContextMenuRequested</b>(<i>pos</i>) |
1333 <p> |
1378 <p> |
1334 Private slot to show the context menu of the log tree. |
1379 Private slot to show the context menu of the log tree. |
1335 </p> |
1380 </p> |
1336 <dl> |
1381 <dl> |
1337 |
1382 |
1338 <dt><i>pos</i></dt> |
1383 <dt><i>pos</i> (QPoint)</dt> |
1339 <dd> |
1384 <dd> |
1340 position of the mouse pointer (QPoint) |
1385 position of the mouse pointer |
1341 </dd> |
1386 </dd> |
1342 </dl> |
1387 </dl> |
1343 <a NAME="GitLogBrowserDialog.on_logTree_itemSelectionChanged" ID="GitLogBrowserDialog.on_logTree_itemSelectionChanged"></a> |
1388 <a NAME="GitLogBrowserDialog.on_logTree_itemSelectionChanged" ID="GitLogBrowserDialog.on_logTree_itemSelectionChanged"></a> |
1344 <h4>GitLogBrowserDialog.on_logTree_itemSelectionChanged</h4> |
1389 <h4>GitLogBrowserDialog.on_logTree_itemSelectionChanged</h4> |
1345 <b>on_logTree_itemSelectionChanged</b>(<i></i>) |
1390 <b>on_logTree_itemSelectionChanged</b>(<i></i>) |
1354 <p> |
1399 <p> |
1355 Private slot to react on mode changes. |
1400 Private slot to react on mode changes. |
1356 </p> |
1401 </p> |
1357 <dl> |
1402 <dl> |
1358 |
1403 |
1359 <dt><i>index</i></dt> |
1404 <dt><i>index</i> (int)</dt> |
1360 <dd> |
1405 <dd> |
1361 index of the selected entry (integer) |
1406 index of the selected entry |
1362 </dd> |
1407 </dd> |
1363 </dl> |
1408 </dl> |
1364 <a NAME="GitLogBrowserDialog.on_nextButton_clicked" ID="GitLogBrowserDialog.on_nextButton_clicked"></a> |
1409 <a NAME="GitLogBrowserDialog.on_nextButton_clicked" ID="GitLogBrowserDialog.on_nextButton_clicked"></a> |
1365 <h4>GitLogBrowserDialog.on_nextButton_clicked</h4> |
1410 <h4>GitLogBrowserDialog.on_nextButton_clicked</h4> |
1366 <b>on_nextButton_clicked</b>(<i></i>) |
1411 <b>on_nextButton_clicked</b>(<i></i>) |
1375 <p> |
1420 <p> |
1376 Private slot to handle the password checkbox toggled. |
1421 Private slot to handle the password checkbox toggled. |
1377 </p> |
1422 </p> |
1378 <dl> |
1423 <dl> |
1379 |
1424 |
1380 <dt><i>isOn</i></dt> |
1425 <dt><i>isOn</i> (bool)</dt> |
1381 <dd> |
1426 <dd> |
1382 flag indicating the status of the check box (boolean) |
1427 flag indicating the status of the check box |
1383 </dd> |
1428 </dd> |
1384 </dl> |
1429 </dl> |
1385 <a NAME="GitLogBrowserDialog.on_refreshButton_clicked" ID="GitLogBrowserDialog.on_refreshButton_clicked"></a> |
1430 <a NAME="GitLogBrowserDialog.on_refreshButton_clicked" ID="GitLogBrowserDialog.on_refreshButton_clicked"></a> |
1386 <h4>GitLogBrowserDialog.on_refreshButton_clicked</h4> |
1431 <h4>GitLogBrowserDialog.on_refreshButton_clicked</h4> |
1387 <b>on_refreshButton_clicked</b>(<i></i>) |
1432 <b>on_refreshButton_clicked</b>(<i></i>) |
1403 <p> |
1448 <p> |
1404 Private slot called, when a filter expression is entered. |
1449 Private slot called, when a filter expression is entered. |
1405 </p> |
1450 </p> |
1406 <dl> |
1451 <dl> |
1407 |
1452 |
1408 <dt><i>txt</i></dt> |
1453 <dt><i>txt</i> (str)</dt> |
1409 <dd> |
1454 <dd> |
1410 filter expression (string) |
1455 filter expression |
1411 </dd> |
1456 </dd> |
1412 </dl> |
1457 </dl> |
1413 <a NAME="GitLogBrowserDialog.on_saveLabel_linkActivated" ID="GitLogBrowserDialog.on_saveLabel_linkActivated"></a> |
1458 <a NAME="GitLogBrowserDialog.on_saveLabel_linkActivated" ID="GitLogBrowserDialog.on_saveLabel_linkActivated"></a> |
1414 <h4>GitLogBrowserDialog.on_saveLabel_linkActivated</h4> |
1459 <h4>GitLogBrowserDialog.on_saveLabel_linkActivated</h4> |
1415 <b>on_saveLabel_linkActivated</b>(<i>link</i>) |
1460 <b>on_saveLabel_linkActivated</b>(<i>link</i>) |
1452 <p> |
1497 <p> |
1453 Private slot called, when the stop on copy/move checkbox is clicked. |
1498 Private slot called, when the stop on copy/move checkbox is clicked. |
1454 </p> |
1499 </p> |
1455 <dl> |
1500 <dl> |
1456 |
1501 |
1457 <dt><i>checked</i></dt> |
1502 <dt><i>checked</i> (bool)</dt> |
1458 <dd> |
1503 <dd> |
1459 flag indicating the state of the check box (boolean) |
1504 flag indicating the state of the check box |
1460 </dd> |
1505 </dd> |
1461 </dl> |
1506 </dl> |
1462 <a NAME="GitLogBrowserDialog.on_toDate_dateChanged" ID="GitLogBrowserDialog.on_toDate_dateChanged"></a> |
1507 <a NAME="GitLogBrowserDialog.on_toDate_dateChanged" ID="GitLogBrowserDialog.on_toDate_dateChanged"></a> |
1463 <h4>GitLogBrowserDialog.on_toDate_dateChanged</h4> |
1508 <h4>GitLogBrowserDialog.on_toDate_dateChanged</h4> |
1464 <b>on_toDate_dateChanged</b>(<i>date</i>) |
1509 <b>on_toDate_dateChanged</b>(<i>date</i>) |
1466 <p> |
1511 <p> |
1467 Private slot called, when the from date changes. |
1512 Private slot called, when the from date changes. |
1468 </p> |
1513 </p> |
1469 <dl> |
1514 <dl> |
1470 |
1515 |
1471 <dt><i>date</i></dt> |
1516 <dt><i>date</i> (QDate)</dt> |
1472 <dd> |
1517 <dd> |
1473 new date (QDate) |
1518 new date |
1474 </dd> |
1519 </dd> |
1475 </dl> |
1520 </dl> |
1476 <a NAME="GitLogBrowserDialog.on_upButton_clicked" ID="GitLogBrowserDialog.on_upButton_clicked"></a> |
1521 <a NAME="GitLogBrowserDialog.on_upButton_clicked" ID="GitLogBrowserDialog.on_upButton_clicked"></a> |
1477 <h4>GitLogBrowserDialog.on_upButton_clicked</h4> |
1522 <h4>GitLogBrowserDialog.on_upButton_clicked</h4> |
1478 <b>on_upButton_clicked</b>(<i></i>) |
1523 <b>on_upButton_clicked</b>(<i></i>) |
1494 <p> |
1539 <p> |
1495 Public slot to start the git log command. |
1540 Public slot to start the git log command. |
1496 </p> |
1541 </p> |
1497 <dl> |
1542 <dl> |
1498 |
1543 |
1499 <dt><i>fn</i></dt> |
1544 <dt><i>fn</i> (str)</dt> |
1500 <dd> |
1545 <dd> |
1501 filename to show the log for (string) |
1546 filename to show the log for |
1502 </dd> |
1547 </dd> |
1503 <dt><i>isFile</i></dt> |
1548 <dt><i>isFile</i> (bool)</dt> |
1504 <dd> |
1549 <dd> |
1505 flag indicating log for a file is to be shown |
1550 flag indicating log for a file is to be shown |
1506 (boolean) |
1551 </dd> |
1507 </dd> |
1552 <dt><i>noEntries</i> (int)</dt> |
1508 <dt><i>noEntries</i></dt> |
1553 <dd> |
1509 <dd> |
1554 number of entries to get (0 = default) |
1510 number of entries to get (0 = default) (int) |
|
1511 </dd> |
1555 </dd> |
1512 </dl> |
1556 </dl> |
1513 <div align="right"><a href="#top">Up</a></div> |
1557 <div align="right"><a href="#top">Up</a></div> |
1514 <hr /> |
1558 <hr /> |
1515 </body></html> |
1559 </body></html> |