src/eric7/Documentation/Source/eric7.EricWidgets.EricPathPicker.html

branch
eric7
changeset 10784
521fd465b048
parent 10479
856476537696
child 10938
2a7e115e2198
--- a/src/eric7/Documentation/Source/eric7.EricWidgets.EricPathPicker.html	Fri Jun 14 11:18:10 2024 +0200
+++ b/src/eric7/Documentation/Source/eric7.EricWidgets.EricPathPicker.html	Fri Jun 14 11:23:45 2024 +0200
@@ -76,6 +76,10 @@
 <td><a href="#EricComboPathPicker.getPathLibItems">getPathLibItems</a></td>
 <td>Public method to get the list of remembered paths.</td>
 </tr>
+<tr>
+<td><a href="#EricComboPathPicker.getRemotePathItems">getRemotePathItems</a></td>
+<td>Public method to get the list of remembered remote paths.</td>
+</tr>
 </table>
 
 <h3>Static Methods</h3>
@@ -136,6 +140,25 @@
 list of pathlib.Path
 </dd>
 </dl>
+<a NAME="EricComboPathPicker.getRemotePathItems" ID="EricComboPathPicker.getRemotePathItems"></a>
+<h4>EricComboPathPicker.getRemotePathItems</h4>
+<b>getRemotePathItems</b>(<i></i>)
+<p>
+        Public method to get the list of remembered remote paths.
+</p>
+
+<dl>
+<dt>Return:</dt>
+<dd>
+list of remembered paths
+</dd>
+</dl>
+<dl>
+<dt>Return Type:</dt>
+<dd>
+list of str
+</dd>
+</dl>
 <div align="right"><a href="#top">Up</a></div>
 <hr />
 <hr />
@@ -307,6 +330,10 @@
 <td>Public method to get the first path of a list of entered paths.</td>
 </tr>
 <tr>
+<td><a href="#EricPathPickerBase.firstStrPath">firstStrPath</a></td>
+<td>Public method to get the first path of a list of entered paths as a string.</td>
+</tr>
+<tr>
 <td><a href="#EricPathPickerBase.isPickerEnabled">isPickerEnabled</a></td>
 <td>Public method to get the file dialog button enabled state.</td>
 </tr>
@@ -315,10 +342,18 @@
 <td>Public method to check the path picker for read only mode.</td>
 </tr>
 <tr>
+<td><a href="#EricPathPickerBase.isRemote">isRemote</a></td>
+<td>Public method to get the path picker remote mode.</td>
+</tr>
+<tr>
 <td><a href="#EricPathPickerBase.lastPath">lastPath</a></td>
 <td>Public method to get the last path of a list of entered paths.</td>
 </tr>
 <tr>
+<td><a href="#EricPathPickerBase.lastStrPath">lastStrPath</a></td>
+<td>Public method to get the last path of a list of entered paths as a string.</td>
+</tr>
+<tr>
 <td><a href="#EricPathPickerBase.mode">mode</a></td>
 <td>Public method to get the path picker mode.</td>
 </tr>
@@ -395,6 +430,10 @@
 <td>Public method to set the path picker to read only mode.</td>
 </tr>
 <tr>
+<td><a href="#EricPathPickerBase.setRemote">setRemote</a></td>
+<td>Public method to set the remote mode of the path picker.</td>
+</tr>
+<tr>
 <td><a href="#EricPathPickerBase.setSizeAdjustPolicy">setSizeAdjustPolicy</a></td>
 <td>Public method to set the size adjust policy of the combo box.</td>
 </tr>
@@ -407,6 +446,10 @@
 <td>Public method to set the path picker dialog window title.</td>
 </tr>
 <tr>
+<td><a href="#EricPathPickerBase.strPaths">strPaths</a></td>
+<td>Public method to get the list of entered paths as strings.</td>
+</tr>
+<tr>
 <td><a href="#EricPathPickerBase.text">text</a></td>
 <td>Public method to get the current path.</td>
 </tr>
@@ -696,6 +739,25 @@
 pathlib.Path
 </dd>
 </dl>
+<a NAME="EricPathPickerBase.firstStrPath" ID="EricPathPickerBase.firstStrPath"></a>
+<h4>EricPathPickerBase.firstStrPath</h4>
+<b>firstStrPath</b>(<i></i>)
+<p>
+        Public method to get the first path of a list of entered paths as a string.
+</p>
+
+<dl>
+<dt>Return:</dt>
+<dd>
+first path
+</dd>
+</dl>
+<dl>
+<dt>Return Type:</dt>
+<dd>
+pathlib.Path
+</dd>
+</dl>
 <a NAME="EricPathPickerBase.isPickerEnabled" ID="EricPathPickerBase.isPickerEnabled"></a>
 <h4>EricPathPickerBase.isPickerEnabled</h4>
 <b>isPickerEnabled</b>(<i></i>)
@@ -734,6 +796,25 @@
 bool
 </dd>
 </dl>
+<a NAME="EricPathPickerBase.isRemote" ID="EricPathPickerBase.isRemote"></a>
+<h4>EricPathPickerBase.isRemote</h4>
+<b>isRemote</b>(<i></i>)
+<p>
+        Public method to get the path picker remote mode.
+</p>
+
+<dl>
+<dt>Return:</dt>
+<dd>
+flag indicating the remote mode
+</dd>
+</dl>
+<dl>
+<dt>Return Type:</dt>
+<dd>
+bool
+</dd>
+</dl>
 <a NAME="EricPathPickerBase.lastPath" ID="EricPathPickerBase.lastPath"></a>
 <h4>EricPathPickerBase.lastPath</h4>
 <b>lastPath</b>(<i></i>)
@@ -753,6 +834,25 @@
 pathlib.Path
 </dd>
 </dl>
+<a NAME="EricPathPickerBase.lastStrPath" ID="EricPathPickerBase.lastStrPath"></a>
+<h4>EricPathPickerBase.lastStrPath</h4>
+<b>lastStrPath</b>(<i></i>)
+<p>
+        Public method to get the last path of a list of entered paths as a string.
+</p>
+
+<dl>
+<dt>Return:</dt>
+<dd>
+last path
+</dd>
+</dl>
+<dl>
+<dt>Return Type:</dt>
+<dd>
+pathlib.Path
+</dd>
+</dl>
 <a NAME="EricPathPickerBase.mode" ID="EricPathPickerBase.mode"></a>
 <h4>EricPathPickerBase.mode</h4>
 <b>mode</b>(<i></i>)
@@ -1049,6 +1149,20 @@
 flag indicating read only mode
 </dd>
 </dl>
+<a NAME="EricPathPickerBase.setRemote" ID="EricPathPickerBase.setRemote"></a>
+<h4>EricPathPickerBase.setRemote</h4>
+<b>setRemote</b>(<i>remote</i>)
+<p>
+        Public method to set the remote mode of the path picker.
+</p>
+
+<dl>
+
+<dt><i>remote</i> (bool)</dt>
+<dd>
+flag indicating the remote mode
+</dd>
+</dl>
 <a NAME="EricPathPickerBase.setSizeAdjustPolicy" ID="EricPathPickerBase.setSizeAdjustPolicy"></a>
 <h4>EricPathPickerBase.setSizeAdjustPolicy</h4>
 <b>setSizeAdjustPolicy</b>(<i>policy</i>)
@@ -1096,6 +1210,25 @@
 window title
 </dd>
 </dl>
+<a NAME="EricPathPickerBase.strPaths" ID="EricPathPickerBase.strPaths"></a>
+<h4>EricPathPickerBase.strPaths</h4>
+<b>strPaths</b>(<i></i>)
+<p>
+        Public method to get the list of entered paths as strings.
+</p>
+
+<dl>
+<dt>Return:</dt>
+<dd>
+entered paths
+</dd>
+</dl>
+<dl>
+<dt>Return Type:</dt>
+<dd>
+list of str
+</dd>
+</dl>
 <a NAME="EricPathPickerBase.text" ID="EricPathPickerBase.text"></a>
 <h4>EricPathPickerBase.text</h4>
 <b>text</b>(<i>toNative=True</i>)

eric ide

mercurial