Documentation/Source/eric6.Plugins.UiExtensionPlugins.VirtualenvInterface.VirtualenvExecDialog.html

changeset 6337
c6af560e0039
parent 6336
a04ac8bd014b
child 6338
104ee21d765d
--- a/Documentation/Source/eric6.Plugins.UiExtensionPlugins.VirtualenvInterface.VirtualenvExecDialog.html	Sat Jun 09 12:09:21 2018 +0200
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,226 +0,0 @@
-<!DOCTYPE html>
-<html><head>
-<title>eric6.Plugins.UiExtensionPlugins.VirtualenvInterface.VirtualenvExecDialog</title>
-<meta charset="UTF-8">
-<style>
-body {
-    background: #EDECE6;
-    margin: 0em 1em 10em 1em;
-    color: black;
-}
-
-h1 { color: white; background: #85774A; }
-h2 { color: white; background: #85774A; }
-h3 { color: white; background: #9D936E; }
-h4 { color: white; background: #9D936E; }
-    
-a { color: #BA6D36; }
-
-</style>
-</head>
-<body><a NAME="top" ID="top"></a>
-<h1>eric6.Plugins.UiExtensionPlugins.VirtualenvInterface.VirtualenvExecDialog</h1>
-<p>
-Module implementing the virtualenv execution dialog.
-</p>
-<h3>Global Attributes</h3>
-<table>
-<tr><td>None</td></tr>
-</table>
-<h3>Classes</h3>
-<table>
-<tr>
-<td><a href="#VirtualenvExecDialog">VirtualenvExecDialog</a></td>
-<td>Class implementing the virtualenv execution dialog.</td>
-</tr>
-</table>
-<h3>Functions</h3>
-<table>
-<tr><td>None</td></tr>
-</table>
-<hr /><hr />
-<a NAME="VirtualenvExecDialog" ID="VirtualenvExecDialog"></a>
-<h2>VirtualenvExecDialog</h2>
-<p>
-    Class implementing the virtualenv execution dialog.
-</p><p>
-    This class starts a QProcess and displays a dialog that
-    shows the output of the virtualenv or pyvenv process.
-</p>
-<h3>Derived from</h3>
-QDialog, Ui_VirtualenvExecDialog
-<h3>Class Attributes</h3>
-<table>
-<tr><td>None</td></tr>
-</table>
-<h3>Class Methods</h3>
-<table>
-<tr><td>None</td></tr>
-</table>
-<h3>Methods</h3>
-<table>
-<tr>
-<td><a href="#VirtualenvExecDialog.__init__">VirtualenvExecDialog</a></td>
-<td>Constructor</td>
-</tr><tr>
-<td><a href="#VirtualenvExecDialog.__finish">__finish</a></td>
-<td>Private slot called when the process finished.</td>
-</tr><tr>
-<td><a href="#VirtualenvExecDialog.__logError">__logError</a></td>
-<td>Private method to log an error.</td>
-</tr><tr>
-<td><a href="#VirtualenvExecDialog.__logOutput">__logOutput</a></td>
-<td>Private method to log some output.</td>
-</tr><tr>
-<td><a href="#VirtualenvExecDialog.__nextAttempt">__nextAttempt</a></td>
-<td>Private method to start another attempt.</td>
-</tr><tr>
-<td><a href="#VirtualenvExecDialog.__readStderr">__readStderr</a></td>
-<td>Private slot to handle the readyReadStandardError signal.</td>
-</tr><tr>
-<td><a href="#VirtualenvExecDialog.__readStdout">__readStdout</a></td>
-<td>Private slot to handle the readyReadStandardOutput signal.</td>
-</tr><tr>
-<td><a href="#VirtualenvExecDialog.__writeLogFile">__writeLogFile</a></td>
-<td>Private method to write a log file to the virtualenv directory.</td>
-</tr><tr>
-<td><a href="#VirtualenvExecDialog.__writeScriptFile">__writeScriptFile</a></td>
-<td>Private method to write a script file to the virtualenv directory.</td>
-</tr><tr>
-<td><a href="#VirtualenvExecDialog.on_buttonBox_clicked">on_buttonBox_clicked</a></td>
-<td>Private slot called by a button of the button box clicked.</td>
-</tr><tr>
-<td><a href="#VirtualenvExecDialog.start">start</a></td>
-<td>Public slot to start the virtualenv command.</td>
-</tr>
-</table>
-<h3>Static Methods</h3>
-<table>
-<tr><td>None</td></tr>
-</table>
-<a NAME="VirtualenvExecDialog.__init__" ID="VirtualenvExecDialog.__init__"></a>
-<h4>VirtualenvExecDialog (Constructor)</h4>
-<b>VirtualenvExecDialog</b>(<i>pyvenv, targetDir, openTarget, createLog, createScript, interpreter, parent=None</i>)
-<p>
-        Constructor
-</p><dl>
-<dt><i>pyvenv</i></dt>
-<dd>
-flag indicating the use of 'pyvenv' (boolean)
-</dd><dt><i>targetDir</i></dt>
-<dd>
-name of the virtualenv directory (string)
-</dd><dt><i>openTarget</i></dt>
-<dd>
-flag indicating to open the virtualenv directory
-            in a file manager (boolean)
-</dd><dt><i>createLog</i></dt>
-<dd>
-flag indicating to create a log file of the
-            creation process (boolean)
-</dd><dt><i>createScript</i></dt>
-<dd>
-flag indicating to create a script to recreate
-            the virtual environment (boolean)
-</dd><dt><i>interpreter</i></dt>
-<dd>
-name of the python interpreter to use (string)
-</dd><dt><i>parent</i></dt>
-<dd>
-reference to the parent widget (QWidget)
-</dd>
-</dl><a NAME="VirtualenvExecDialog.__finish" ID="VirtualenvExecDialog.__finish"></a>
-<h4>VirtualenvExecDialog.__finish</h4>
-<b>__finish</b>(<i>exitCode, exitStatus, giveUp=False</i>)
-<p>
-        Private slot called when the process finished.
-</p><p>
-        It is called when the process finished or
-        the user pressed the button.
-</p><dl>
-<dt><i>exitCode</i></dt>
-<dd>
-exit code of the process (integer)
-</dd><dt><i>exitStatus</i></dt>
-<dd>
-exit status of the process (QProcess.ExitStatus)
-</dd><dt><i>giveUp=</i></dt>
-<dd>
-flag indicating to not start another attempt (boolean)
-</dd>
-</dl><a NAME="VirtualenvExecDialog.__logError" ID="VirtualenvExecDialog.__logError"></a>
-<h4>VirtualenvExecDialog.__logError</h4>
-<b>__logError</b>(<i>s</i>)
-<p>
-        Private method to log an error.
-</p><dl>
-<dt><i>s</i></dt>
-<dd>
-error string to log (string)
-</dd>
-</dl><a NAME="VirtualenvExecDialog.__logOutput" ID="VirtualenvExecDialog.__logOutput"></a>
-<h4>VirtualenvExecDialog.__logOutput</h4>
-<b>__logOutput</b>(<i>s</i>)
-<p>
-        Private method to log some output.
-</p><dl>
-<dt><i>s</i></dt>
-<dd>
-output sstring to log (string)
-</dd>
-</dl><a NAME="VirtualenvExecDialog.__nextAttempt" ID="VirtualenvExecDialog.__nextAttempt"></a>
-<h4>VirtualenvExecDialog.__nextAttempt</h4>
-<b>__nextAttempt</b>(<i></i>)
-<p>
-        Private method to start another attempt.
-</p><a NAME="VirtualenvExecDialog.__readStderr" ID="VirtualenvExecDialog.__readStderr"></a>
-<h4>VirtualenvExecDialog.__readStderr</h4>
-<b>__readStderr</b>(<i></i>)
-<p>
-        Private slot to handle the readyReadStandardError signal.
-</p><p>
-        It reads the error output of the process and inserts it into the
-        error pane.
-</p><a NAME="VirtualenvExecDialog.__readStdout" ID="VirtualenvExecDialog.__readStdout"></a>
-<h4>VirtualenvExecDialog.__readStdout</h4>
-<b>__readStdout</b>(<i></i>)
-<p>
-        Private slot to handle the readyReadStandardOutput signal.
-</p><p>
-        It reads the output of the process, formats it and inserts it into
-        the contents pane.
-</p><a NAME="VirtualenvExecDialog.__writeLogFile" ID="VirtualenvExecDialog.__writeLogFile"></a>
-<h4>VirtualenvExecDialog.__writeLogFile</h4>
-<b>__writeLogFile</b>(<i></i>)
-<p>
-        Private method to write a log file to the virtualenv directory.
-</p><a NAME="VirtualenvExecDialog.__writeScriptFile" ID="VirtualenvExecDialog.__writeScriptFile"></a>
-<h4>VirtualenvExecDialog.__writeScriptFile</h4>
-<b>__writeScriptFile</b>(<i></i>)
-<p>
-        Private method to write a script file to the virtualenv directory.
-</p><a NAME="VirtualenvExecDialog.on_buttonBox_clicked" ID="VirtualenvExecDialog.on_buttonBox_clicked"></a>
-<h4>VirtualenvExecDialog.on_buttonBox_clicked</h4>
-<b>on_buttonBox_clicked</b>(<i>button</i>)
-<p>
-        Private slot called by a button of the button box clicked.
-</p><dl>
-<dt><i>button</i></dt>
-<dd>
-button that was clicked (QAbstractButton)
-</dd>
-</dl><a NAME="VirtualenvExecDialog.start" ID="VirtualenvExecDialog.start"></a>
-<h4>VirtualenvExecDialog.start</h4>
-<b>start</b>(<i>arguments</i>)
-<p>
-        Public slot to start the virtualenv command.
-</p><dl>
-<dt><i>arguments</i></dt>
-<dd>
-commandline arguments for virtualenv/pyvenv program
-            (list of strings)
-</dd>
-</dl>
-<div align="right"><a href="#top">Up</a></div>
-<hr />
-</body></html>
\ No newline at end of file

eric ide

mercurial