src/eric7/Documentation/Source/eric7.ViewManager.ViewManager.html

branch
eric7
changeset 10382
708119d4377f
parent 10307
c685f4e12916
child 10436
f6881d10e995
equal deleted inserted replaced
10381:12a81f47b6aa 10382:708119d4377f
704 <tr> 704 <tr>
705 <td><a href="#ViewManager.__unhighlight">__unhighlight</a></td> 705 <td><a href="#ViewManager.__unhighlight">__unhighlight</a></td>
706 <td>Private slot to switch of all highlights.</td> 706 <td>Private slot to switch of all highlights.</td>
707 </tr> 707 </tr>
708 <tr> 708 <tr>
709 <td><a href="#ViewManager.__watchedFileChanged">__watchedFileChanged</a></td>
710 <td>Private slot handling a file has been modified, renamed or removed.</td>
711 </tr>
712 <tr>
709 <td><a href="#ViewManager.__zoom">__zoom</a></td> 713 <td><a href="#ViewManager.__zoom">__zoom</a></td>
710 <td>Private method to handle the zoom action.</td> 714 <td>Private method to handle the zoom action.</td>
711 </tr> 715 </tr>
712 <tr> 716 <tr>
713 <td><a href="#ViewManager.__zoomIn">__zoomIn</a></td> 717 <td><a href="#ViewManager.__zoomIn">__zoomIn</a></td>
780 <tr> 784 <tr>
781 <td><a href="#ViewManager.addToRecentList">addToRecentList</a></td> 785 <td><a href="#ViewManager.addToRecentList">addToRecentList</a></td>
782 <td>Public slot to add a filename to the list of recently opened files.</td> 786 <td>Public slot to add a filename to the list of recently opened files.</td>
783 </tr> 787 </tr>
784 <tr> 788 <tr>
789 <td><a href="#ViewManager.addWatchedFilePath">addWatchedFilePath</a></td>
790 <td>Public method to add a file to the list of monitored files.</td>
791 </tr>
792 <tr>
785 <td><a href="#ViewManager.appFocusChanged">appFocusChanged</a></td> 793 <td><a href="#ViewManager.appFocusChanged">appFocusChanged</a></td>
786 <td>Public method to handle the global change of focus.</td> 794 <td>Public method to handle the global change of focus.</td>
787 </tr> 795 </tr>
788 <tr> 796 <tr>
789 <td><a href="#ViewManager.canCascade">canCascade</a></td> 797 <td><a href="#ViewManager.canCascade">canCascade</a></td>
896 <tr> 904 <tr>
897 <td><a href="#ViewManager.getOpenEditorCount">getOpenEditorCount</a></td> 905 <td><a href="#ViewManager.getOpenEditorCount">getOpenEditorCount</a></td>
898 <td>Public method to return the count of editors displaying the given file.</td> 906 <td>Public method to return the count of editors displaying the given file.</td>
899 </tr> 907 </tr>
900 <tr> 908 <tr>
909 <td><a href="#ViewManager.getOpenEditorList">getOpenEditorList</a></td>
910 <td>Public method to return a list of all editors displaying the given file.</td>
911 </tr>
912 <tr>
901 <td><a href="#ViewManager.getOpenEditors">getOpenEditors</a></td> 913 <td><a href="#ViewManager.getOpenEditors">getOpenEditors</a></td>
902 <td>Public method to get references to all open editors.</td> 914 <td>Public method to get references to all open editors.</td>
903 </tr> 915 </tr>
904 <tr> 916 <tr>
905 <td><a href="#ViewManager.getOpenEditorsCount">getOpenEditorsCount</a></td> 917 <td><a href="#ViewManager.getOpenEditorsCount">getOpenEditorsCount</a></td>
1070 <td>Public slot to handle received editor commands.</td> 1082 <td>Public slot to handle received editor commands.</td>
1071 </tr> 1083 </tr>
1072 <tr> 1084 <tr>
1073 <td><a href="#ViewManager.removeSplit">removeSplit</a></td> 1085 <td><a href="#ViewManager.removeSplit">removeSplit</a></td>
1074 <td>Public method used to remove the current split view or a split view by index.</td> 1086 <td>Public method used to remove the current split view or a split view by index.</td>
1087 </tr>
1088 <tr>
1089 <td><a href="#ViewManager.removeWatchedFilePath">removeWatchedFilePath</a></td>
1090 <td>Public method to remove a file from the list of monitored files.</td>
1075 </tr> 1091 </tr>
1076 <tr> 1092 <tr>
1077 <td><a href="#ViewManager.saveAllEditors">saveAllEditors</a></td> 1093 <td><a href="#ViewManager.saveAllEditors">saveAllEditors</a></td>
1078 <td>Public slot to save the contents of all editors.</td> 1094 <td>Public slot to save the contents of all editors.</td>
1079 </tr> 1095 </tr>
2446 <b>__unhighlight</b>(<i></i>) 2462 <b>__unhighlight</b>(<i></i>)
2447 2463
2448 <p> 2464 <p>
2449 Private slot to switch of all highlights. 2465 Private slot to switch of all highlights.
2450 </p> 2466 </p>
2467 <a NAME="ViewManager.__watchedFileChanged" ID="ViewManager.__watchedFileChanged"></a>
2468 <h4>ViewManager.__watchedFileChanged</h4>
2469 <b>__watchedFileChanged</b>(<i>filePath</i>)
2470
2471 <p>
2472 Private slot handling a file has been modified, renamed or removed.
2473 </p>
2474 <dl>
2475
2476 <dt><i>filePath</i> (str)</dt>
2477 <dd>
2478 path of the file
2479 </dd>
2480 </dl>
2451 <a NAME="ViewManager.__zoom" ID="ViewManager.__zoom"></a> 2481 <a NAME="ViewManager.__zoom" ID="ViewManager.__zoom"></a>
2452 <h4>ViewManager.__zoom</h4> 2482 <h4>ViewManager.__zoom</h4>
2453 <b>__zoom</b>(<i></i>) 2483 <b>__zoom</b>(<i></i>)
2454 2484
2455 <p> 2485 <p>
2758 <dt><i>fn</i></dt> 2788 <dt><i>fn</i></dt>
2759 <dd> 2789 <dd>
2760 name of the file to be added 2790 name of the file to be added
2761 </dd> 2791 </dd>
2762 </dl> 2792 </dl>
2793 <a NAME="ViewManager.addWatchedFilePath" ID="ViewManager.addWatchedFilePath"></a>
2794 <h4>ViewManager.addWatchedFilePath</h4>
2795 <b>addWatchedFilePath</b>(<i>filePath</i>)
2796
2797 <p>
2798 Public method to add a file to the list of monitored files.
2799 </p>
2800 <dl>
2801
2802 <dt><i>filePath</i> (str)</dt>
2803 <dd>
2804 path of the file to be added
2805 </dd>
2806 </dl>
2763 <a NAME="ViewManager.appFocusChanged" ID="ViewManager.appFocusChanged"></a> 2807 <a NAME="ViewManager.appFocusChanged" ID="ViewManager.appFocusChanged"></a>
2764 <h4>ViewManager.appFocusChanged</h4> 2808 <h4>ViewManager.appFocusChanged</h4>
2765 <b>appFocusChanged</b>(<i>old, now</i>) 2809 <b>appFocusChanged</b>(<i>old, now</i>)
2766 2810
2767 <p> 2811 <p>
3280 <p> 3324 <p>
3281 Public method to return the editor displaying the given file. 3325 Public method to return the editor displaying the given file.
3282 </p> 3326 </p>
3283 <dl> 3327 <dl>
3284 3328
3285 <dt><i>fn</i></dt> 3329 <dt><i>fn</i> (str)</dt>
3286 <dd> 3330 <dd>
3287 filename to look for 3331 filename to look for
3288 </dd> 3332 </dd>
3289 </dl> 3333 </dl>
3290 <dl> 3334 <dl>
3291 <dt>Return:</dt> 3335 <dt>Return:</dt>
3292 <dd> 3336 <dd>
3293 a reference to the editor displaying this file or None, if 3337 a reference to the editor displaying this file or None, if
3294 no editor was found 3338 no editor was found
3339 </dd>
3340 </dl>
3341 <dl>
3342 <dt>Return Type:</dt>
3343 <dd>
3344 Editor or None
3295 </dd> 3345 </dd>
3296 </dl> 3346 </dl>
3297 <a NAME="ViewManager.getOpenEditorCount" ID="ViewManager.getOpenEditorCount"></a> 3347 <a NAME="ViewManager.getOpenEditorCount" ID="ViewManager.getOpenEditorCount"></a>
3298 <h4>ViewManager.getOpenEditorCount</h4> 3348 <h4>ViewManager.getOpenEditorCount</h4>
3299 <b>getOpenEditorCount</b>(<i>fn</i>) 3349 <b>getOpenEditorCount</b>(<i>fn</i>)
3310 </dl> 3360 </dl>
3311 <dl> 3361 <dl>
3312 <dt>Return:</dt> 3362 <dt>Return:</dt>
3313 <dd> 3363 <dd>
3314 count of editors displaying this file (integer) 3364 count of editors displaying this file (integer)
3365 </dd>
3366 </dl>
3367 <a NAME="ViewManager.getOpenEditorList" ID="ViewManager.getOpenEditorList"></a>
3368 <h4>ViewManager.getOpenEditorList</h4>
3369 <b>getOpenEditorList</b>(<i>fn</i>)
3370
3371 <p>
3372 Public method to return a list of all editors displaying the given file.
3373 </p>
3374 <dl>
3375
3376 <dt><i>fn</i> (str)</dt>
3377 <dd>
3378 filename to look for
3379 </dd>
3380 </dl>
3381 <dl>
3382 <dt>Return:</dt>
3383 <dd>
3384 list of references to the editors displaying this file
3315 </dd> 3385 </dd>
3316 </dl> 3386 </dl>
3317 <a NAME="ViewManager.getOpenEditors" ID="ViewManager.getOpenEditors"></a> 3387 <a NAME="ViewManager.getOpenEditors" ID="ViewManager.getOpenEditors"></a>
3318 <h4>ViewManager.getOpenEditors</h4> 3388 <h4>ViewManager.getOpenEditors</h4>
3319 <b>getOpenEditors</b>(<i></i>) 3389 <b>getOpenEditors</b>(<i></i>)
4058 <dt>Return Type:</dt> 4128 <dt>Return Type:</dt>
4059 <dd> 4129 <dd>
4060 bool 4130 bool
4061 </dd> 4131 </dd>
4062 </dl> 4132 </dl>
4133 <a NAME="ViewManager.removeWatchedFilePath" ID="ViewManager.removeWatchedFilePath"></a>
4134 <h4>ViewManager.removeWatchedFilePath</h4>
4135 <b>removeWatchedFilePath</b>(<i>filePath</i>)
4136
4137 <p>
4138 Public method to remove a file from the list of monitored files.
4139 </p>
4140 <dl>
4141
4142 <dt><i>filePath</i> (str)</dt>
4143 <dd>
4144 path of the file to be removed
4145 </dd>
4146 </dl>
4063 <a NAME="ViewManager.saveAllEditors" ID="ViewManager.saveAllEditors"></a> 4147 <a NAME="ViewManager.saveAllEditors" ID="ViewManager.saveAllEditors"></a>
4064 <h4>ViewManager.saveAllEditors</h4> 4148 <h4>ViewManager.saveAllEditors</h4>
4065 <b>saveAllEditors</b>(<i></i>) 4149 <b>saveAllEditors</b>(<i></i>)
4066 4150
4067 <p> 4151 <p>

eric ide

mercurial