Documentation/Source/eric5.QScintilla.Editor.html

changeset 3325
d2d6dda86d32
parent 3206
f516fc427551
child 3327
1338767b5315
equal deleted inserted replaced
3322:d7118434250d 3325:d2d6dda86d32
729 <td>Public method called when the editor loses focus.</td> 729 <td>Public method called when the editor loses focus.</td>
730 </tr><tr> 730 </tr><tr>
731 <td><a href="#Editor.gestureEvent">gestureEvent</a></td> 731 <td><a href="#Editor.gestureEvent">gestureEvent</a></td>
732 <td>Protected method handling gesture events.</td> 732 <td>Protected method handling gesture events.</td>
733 </tr><tr> 733 </tr><tr>
734 <td><a href="#Editor.getBookmarkLines">getBookmarkLines</a></td>
735 <td>Public method to get the lines containing a bookmark.</td>
736 </tr><tr>
734 <td><a href="#Editor.getBookmarks">getBookmarks</a></td> 737 <td><a href="#Editor.getBookmarks">getBookmarks</a></td>
735 <td>Public method to retrieve the bookmarks.</td> 738 <td>Public method to retrieve the bookmarks.</td>
736 </tr><tr> 739 </tr><tr>
740 <td><a href="#Editor.getBreakpointLines">getBreakpointLines</a></td>
741 <td>Public method to get the lines containing a breakpoint.</td>
742 </tr><tr>
743 <td><a href="#Editor.getChangeLines">getChangeLines</a></td>
744 <td>Public method to get the lines containing a change.</td>
745 </tr><tr>
737 <td><a href="#Editor.getCompleter">getCompleter</a></td> 746 <td><a href="#Editor.getCompleter">getCompleter</a></td>
738 <td>Public method to retrieve a reference to the completer object.</td> 747 <td>Public method to retrieve a reference to the completer object.</td>
739 </tr><tr> 748 </tr><tr>
749 <td><a href="#Editor.getCoverageLines">getCoverageLines</a></td>
750 <td>Public method to get the lines containing a coverage marker.</td>
751 </tr><tr>
740 <td><a href="#Editor.getCurrentWord">getCurrentWord</a></td> 752 <td><a href="#Editor.getCurrentWord">getCurrentWord</a></td>
741 <td>Public method to get the word at the current position.</td> 753 <td>Public method to get the word at the current position.</td>
742 </tr><tr> 754 </tr><tr>
743 <td><a href="#Editor.getCurrentWordBoundaries">getCurrentWordBoundaries</a></td> 755 <td><a href="#Editor.getCurrentWordBoundaries">getCurrentWordBoundaries</a></td>
744 <td>Public method to get the word boundaries at the current position.</td> 756 <td>Public method to get the word boundaries at the current position.</td>
774 <td>Public method to determine the selection or the current word for the next search operation.</td> 786 <td>Public method to determine the selection or the current word for the next search operation.</td>
775 </tr><tr> 787 </tr><tr>
776 <td><a href="#Editor.getSharingStatus">getSharingStatus</a></td> 788 <td><a href="#Editor.getSharingStatus">getSharingStatus</a></td>
777 <td>Public method to get some share status info.</td> 789 <td>Public method to get some share status info.</td>
778 </tr><tr> 790 </tr><tr>
791 <td><a href="#Editor.getSyntaxErrorLines">getSyntaxErrorLines</a></td>
792 <td>Public method to get the lines containing a syntax error.</td>
793 </tr><tr>
779 <td><a href="#Editor.getSyntaxErrors">getSyntaxErrors</a></td> 794 <td><a href="#Editor.getSyntaxErrors">getSyntaxErrors</a></td>
780 <td>Public method to retrieve the syntax error markers.</td> 795 <td>Public method to retrieve the syntax error markers.</td>
796 </tr><tr>
797 <td><a href="#Editor.getTaskLines">getTaskLines</a></td>
798 <td>Public method to get the lines containing a task.</td>
799 </tr><tr>
800 <td><a href="#Editor.getWarningLines">getWarningLines</a></td>
801 <td>Public method to get the lines containing a warning.</td>
781 </tr><tr> 802 </tr><tr>
782 <td><a href="#Editor.getWarnings">getWarnings</a></td> 803 <td><a href="#Editor.getWarnings">getWarnings</a></td>
783 <td>Public method to retrieve the warning markers.</td> 804 <td>Public method to retrieve the warning markers.</td>
784 </tr><tr> 805 </tr><tr>
785 <td><a href="#Editor.getWord">getWord</a></td> 806 <td><a href="#Editor.getWord">getWord</a></td>
2803 </p><dl> 2824 </p><dl>
2804 <dt><i>evt</i></dt> 2825 <dt><i>evt</i></dt>
2805 <dd> 2826 <dd>
2806 reference to the gesture event (QGestureEvent 2827 reference to the gesture event (QGestureEvent
2807 </dd> 2828 </dd>
2829 </dl><a NAME="Editor.getBookmarkLines" ID="Editor.getBookmarkLines"></a>
2830 <h4>Editor.getBookmarkLines</h4>
2831 <b>getBookmarkLines</b>(<i></i>)
2832 <p>
2833 Public method to get the lines containing a bookmark.
2834 </p><dl>
2835 <dt>Returns:</dt>
2836 <dd>
2837 list of lines containing a bookmark (list of integer)
2838 </dd>
2808 </dl><a NAME="Editor.getBookmarks" ID="Editor.getBookmarks"></a> 2839 </dl><a NAME="Editor.getBookmarks" ID="Editor.getBookmarks"></a>
2809 <h4>Editor.getBookmarks</h4> 2840 <h4>Editor.getBookmarks</h4>
2810 <b>getBookmarks</b>(<i></i>) 2841 <b>getBookmarks</b>(<i></i>)
2811 <p> 2842 <p>
2812 Public method to retrieve the bookmarks. 2843 Public method to retrieve the bookmarks.
2814 <dt>Returns:</dt> 2845 <dt>Returns:</dt>
2815 <dd> 2846 <dd>
2816 sorted list of all lines containing a bookmark 2847 sorted list of all lines containing a bookmark
2817 (list of integer) 2848 (list of integer)
2818 </dd> 2849 </dd>
2850 </dl><a NAME="Editor.getBreakpointLines" ID="Editor.getBreakpointLines"></a>
2851 <h4>Editor.getBreakpointLines</h4>
2852 <b>getBreakpointLines</b>(<i></i>)
2853 <p>
2854 Public method to get the lines containing a breakpoint.
2855 </p><dl>
2856 <dt>Returns:</dt>
2857 <dd>
2858 list of lines containing a breakpoint (list of integer)
2859 </dd>
2860 </dl><a NAME="Editor.getChangeLines" ID="Editor.getChangeLines"></a>
2861 <h4>Editor.getChangeLines</h4>
2862 <b>getChangeLines</b>(<i></i>)
2863 <p>
2864 Public method to get the lines containing a change.
2865 </p><dl>
2866 <dt>Returns:</dt>
2867 <dd>
2868 list of lines containing a change (list of integer)
2869 </dd>
2819 </dl><a NAME="Editor.getCompleter" ID="Editor.getCompleter"></a> 2870 </dl><a NAME="Editor.getCompleter" ID="Editor.getCompleter"></a>
2820 <h4>Editor.getCompleter</h4> 2871 <h4>Editor.getCompleter</h4>
2821 <b>getCompleter</b>(<i></i>) 2872 <b>getCompleter</b>(<i></i>)
2822 <p> 2873 <p>
2823 Public method to retrieve a reference to the completer object. 2874 Public method to retrieve a reference to the completer object.
2824 </p><dl> 2875 </p><dl>
2825 <dt>Returns:</dt> 2876 <dt>Returns:</dt>
2826 <dd> 2877 <dd>
2827 the completer object (CompleterBase) 2878 the completer object (CompleterBase)
2879 </dd>
2880 </dl><a NAME="Editor.getCoverageLines" ID="Editor.getCoverageLines"></a>
2881 <h4>Editor.getCoverageLines</h4>
2882 <b>getCoverageLines</b>(<i></i>)
2883 <p>
2884 Public method to get the lines containing a coverage marker.
2885 </p><dl>
2886 <dt>Returns:</dt>
2887 <dd>
2888 list of lines containing a coverage marker (list of integer)
2828 </dd> 2889 </dd>
2829 </dl><a NAME="Editor.getCurrentWord" ID="Editor.getCurrentWord"></a> 2890 </dl><a NAME="Editor.getCurrentWord" ID="Editor.getCurrentWord"></a>
2830 <h4>Editor.getCurrentWord</h4> 2891 <h4>Editor.getCurrentWord</h4>
2831 <b>getCurrentWord</b>(<i></i>) 2892 <b>getCurrentWord</b>(<i></i>)
2832 <p> 2893 <p>
2982 tuple indicating, if the editor is sharable, the sharing 3043 tuple indicating, if the editor is sharable, the sharing
2983 status, if it is inside a locally initiated shared edit session 3044 status, if it is inside a locally initiated shared edit session
2984 and if it is inside a remotely initiated shared edit session 3045 and if it is inside a remotely initiated shared edit session
2985 (boolean, boolean, boolean, boolean) 3046 (boolean, boolean, boolean, boolean)
2986 </dd> 3047 </dd>
3048 </dl><a NAME="Editor.getSyntaxErrorLines" ID="Editor.getSyntaxErrorLines"></a>
3049 <h4>Editor.getSyntaxErrorLines</h4>
3050 <b>getSyntaxErrorLines</b>(<i></i>)
3051 <p>
3052 Public method to get the lines containing a syntax error.
3053 </p><dl>
3054 <dt>Returns:</dt>
3055 <dd>
3056 list of lines containing a syntax error (list of integer)
3057 </dd>
2987 </dl><a NAME="Editor.getSyntaxErrors" ID="Editor.getSyntaxErrors"></a> 3058 </dl><a NAME="Editor.getSyntaxErrors" ID="Editor.getSyntaxErrors"></a>
2988 <h4>Editor.getSyntaxErrors</h4> 3059 <h4>Editor.getSyntaxErrors</h4>
2989 <b>getSyntaxErrors</b>(<i></i>) 3060 <b>getSyntaxErrors</b>(<i></i>)
2990 <p> 3061 <p>
2991 Public method to retrieve the syntax error markers. 3062 Public method to retrieve the syntax error markers.
2992 </p><dl> 3063 </p><dl>
2993 <dt>Returns:</dt> 3064 <dt>Returns:</dt>
2994 <dd> 3065 <dd>
2995 sorted list of all lines containing a syntax error 3066 sorted list of all lines containing a syntax error
2996 (list of integer) 3067 (list of integer)
3068 </dd>
3069 </dl><a NAME="Editor.getTaskLines" ID="Editor.getTaskLines"></a>
3070 <h4>Editor.getTaskLines</h4>
3071 <b>getTaskLines</b>(<i></i>)
3072 <p>
3073 Public method to get the lines containing a task.
3074 </p><dl>
3075 <dt>Returns:</dt>
3076 <dd>
3077 list of lines containing a task (list of integer)
3078 </dd>
3079 </dl><a NAME="Editor.getWarningLines" ID="Editor.getWarningLines"></a>
3080 <h4>Editor.getWarningLines</h4>
3081 <b>getWarningLines</b>(<i></i>)
3082 <p>
3083 Public method to get the lines containing a warning.
3084 </p><dl>
3085 <dt>Returns:</dt>
3086 <dd>
3087 list of lines containing a warning (list of integer)
2997 </dd> 3088 </dd>
2998 </dl><a NAME="Editor.getWarnings" ID="Editor.getWarnings"></a> 3089 </dl><a NAME="Editor.getWarnings" ID="Editor.getWarnings"></a>
2999 <h4>Editor.getWarnings</h4> 3090 <h4>Editor.getWarnings</h4>
3000 <b>getWarnings</b>(<i></i>) 3091 <b>getWarnings</b>(<i></i>)
3001 <p> 3092 <p>

eric ide

mercurial