eric6/Documentation/Source/eric6.QScintilla.MiniEditor.html

changeset 7763
32d9af1cea79
parent 7693
a51f82458a1b
child 7776
4a8edf69dd64
--- a/eric6/Documentation/Source/eric6.QScintilla.MiniEditor.html	Tue Oct 06 18:16:00 2020 +0200
+++ b/eric6/Documentation/Source/eric6.QScintilla.MiniEditor.html	Tue Oct 06 19:10:28 2020 +0200
@@ -167,6 +167,10 @@
 <td>Private method to create the various toolbars.</td>
 </tr>
 <tr>
+<td><a href="#MiniEditor.__createViewActions">__createViewActions</a></td>
+<td>Private method to create the View actions.</td>
+</tr>
+<tr>
 <td><a href="#MiniEditor.__cursorPositionChanged">__cursorPositionChanged</a></td>
 <td>Private slot to handle the cursorPositionChanged signal.</td>
 </tr>
@@ -347,6 +351,10 @@
 <td>Private slot handling the aboutToShow signal of the languages context menu.</td>
 </tr>
 <tr>
+<td><a href="#MiniEditor.__showLanguagesMenu">__showLanguagesMenu</a></td>
+<td>Private slot to show the Languages menu of the status bar.</td>
+</tr>
+<tr>
 <td><a href="#MiniEditor.__strippedName">__strippedName</a></td>
 <td>Private method to return the filename part of the given path.</td>
 </tr>
@@ -371,6 +379,26 @@
 <td>Private method to write the settings for reuse.</td>
 </tr>
 <tr>
+<td><a href="#MiniEditor.__zoom">__zoom</a></td>
+<td>Private method to handle the zoom action.</td>
+</tr>
+<tr>
+<td><a href="#MiniEditor.__zoomIn">__zoomIn</a></td>
+<td>Private method to handle the zoom in action.</td>
+</tr>
+<tr>
+<td><a href="#MiniEditor.__zoomOut">__zoomOut</a></td>
+<td>Private method to handle the zoom out action.</td>
+</tr>
+<tr>
+<td><a href="#MiniEditor.__zoomReset">__zoomReset</a></td>
+<td>Private method to reset the zoom factor.</td>
+</tr>
+<tr>
+<td><a href="#MiniEditor.__zoomTo">__zoomTo</a></td>
+<td>Private slot to zoom to a given value.</td>
+</tr>
+<tr>
 <td><a href="#MiniEditor.activeWindow">activeWindow</a></td>
 <td>Public method to fulfill the ViewManager interface.</td>
 </tr>
@@ -614,6 +642,13 @@
 <p>
         Private method to create the various toolbars.
 </p>
+<a NAME="MiniEditor.__createViewActions" ID="MiniEditor.__createViewActions"></a>
+<h4>MiniEditor.__createViewActions</h4>
+<b>__createViewActions</b>(<i></i>)
+
+<p>
+        Private method to create the View actions.
+</p>
 <a NAME="MiniEditor.__cursorPositionChanged" ID="MiniEditor.__cursorPositionChanged"></a>
 <h4>MiniEditor.__cursorPositionChanged</h4>
 <b>__cursorPositionChanged</b>(<i>line, pos</i>)
@@ -1131,20 +1166,28 @@
 </dl>
 <a NAME="MiniEditor.__setSbFile" ID="MiniEditor.__setSbFile"></a>
 <h4>MiniEditor.__setSbFile</h4>
-<b>__setSbFile</b>(<i>line=None, pos=None</i>)
+<b>__setSbFile</b>(<i>line=None, pos=None, language=None, zoom=None</i>)
 
 <p>
         Private method to set the file info in the status bar.
 </p>
 <dl>
 
-<dt><i>line</i></dt>
+<dt><i>line</i> (int)</dt>
 <dd>
-line number to display (int)
+line number to display
+</dd>
+<dt><i>pos</i> (int)</dt>
+<dd>
+character position to display
 </dd>
-<dt><i>pos</i></dt>
+<dt><i>language</i> (str)</dt>
 <dd>
-character position to display (int)
+language to display
+</dd>
+<dt><i>zoom</i> (int)</dt>
+<dd>
+zoom value
 </dd>
 </dl>
 <a NAME="MiniEditor.__setTabAndIndent" ID="MiniEditor.__setTabAndIndent"></a>
@@ -1169,6 +1212,20 @@
         Private slot handling the aboutToShow signal of the languages context
         menu.
 </p>
+<a NAME="MiniEditor.__showLanguagesMenu" ID="MiniEditor.__showLanguagesMenu"></a>
+<h4>MiniEditor.__showLanguagesMenu</h4>
+<b>__showLanguagesMenu</b>(<i>pos</i>)
+
+<p>
+        Private slot to show the Languages menu of the status bar.
+</p>
+<dl>
+
+<dt><i>pos</i></dt>
+<dd>
+position the menu should be shown at (QPoint)
+</dd>
+</dl>
 <a NAME="MiniEditor.__strippedName" ID="MiniEditor.__strippedName"></a>
 <h4>MiniEditor.__strippedName</h4>
 <b>__strippedName</b>(<i>fullFileName</i>)
@@ -1250,6 +1307,48 @@
 <p>
         Private method to write the settings for reuse.
 </p>
+<a NAME="MiniEditor.__zoom" ID="MiniEditor.__zoom"></a>
+<h4>MiniEditor.__zoom</h4>
+<b>__zoom</b>(<i></i>)
+
+<p>
+        Private method to handle the zoom action.
+</p>
+<a NAME="MiniEditor.__zoomIn" ID="MiniEditor.__zoomIn"></a>
+<h4>MiniEditor.__zoomIn</h4>
+<b>__zoomIn</b>(<i></i>)
+
+<p>
+        Private method to handle the zoom in action.
+</p>
+<a NAME="MiniEditor.__zoomOut" ID="MiniEditor.__zoomOut"></a>
+<h4>MiniEditor.__zoomOut</h4>
+<b>__zoomOut</b>(<i></i>)
+
+<p>
+        Private method to handle the zoom out action.
+</p>
+<a NAME="MiniEditor.__zoomReset" ID="MiniEditor.__zoomReset"></a>
+<h4>MiniEditor.__zoomReset</h4>
+<b>__zoomReset</b>(<i></i>)
+
+<p>
+        Private method to reset the zoom factor.
+</p>
+<a NAME="MiniEditor.__zoomTo" ID="MiniEditor.__zoomTo"></a>
+<h4>MiniEditor.__zoomTo</h4>
+<b>__zoomTo</b>(<i>value</i>)
+
+<p>
+        Private slot to zoom to a given value.
+</p>
+<dl>
+
+<dt><i>value</i></dt>
+<dd>
+zoom value to be set (integer)
+</dd>
+</dl>
 <a NAME="MiniEditor.activeWindow" ID="MiniEditor.activeWindow"></a>
 <h4>MiniEditor.activeWindow</h4>
 <b>activeWindow</b>(<i></i>)

eric ide

mercurial