eric6/Documentation/Source/eric6.CondaInterface.CondaNewEnvironmentDataDialog.html

changeset 7273
391d6b7b1eff
parent 6942
2602857055c5
child 7989
a21d673a8f99
diff -r 1779dc278077 -r 391d6b7b1eff eric6/Documentation/Source/eric6.CondaInterface.CondaNewEnvironmentDataDialog.html
--- a/eric6/Documentation/Source/eric6.CondaInterface.CondaNewEnvironmentDataDialog.html	Wed Sep 25 19:40:31 2019 +0200
+++ b/eric6/Documentation/Source/eric6.CondaInterface.CondaNewEnvironmentDataDialog.html	Wed Sep 25 19:42:44 2019 +0200
@@ -18,132 +18,174 @@
 
 </style>
 </head>
-<body><a NAME="top" ID="top"></a>
+<body>
+<a NAME="top" ID="top"></a>
 <h1>eric6.CondaInterface.CondaNewEnvironmentDataDialog</h1>
+
 <p>
 Module implementing a dialog to enter data for a new conda environment.
 </p>
 <h3>Global Attributes</h3>
+
 <table>
 <tr><td>None</td></tr>
 </table>
 <h3>Classes</h3>
+
 <table>
+
 <tr>
 <td><a href="#CondaNewEnvironmentDataDialog">CondaNewEnvironmentDataDialog</a></td>
 <td>Class implementing a dialog to enter data for a new conda environment.</td>
 </tr>
 </table>
 <h3>Functions</h3>
+
 <table>
 <tr><td>None</td></tr>
 </table>
-<hr /><hr />
+<hr />
+<hr />
 <a NAME="CondaNewEnvironmentDataDialog" ID="CondaNewEnvironmentDataDialog"></a>
 <h2>CondaNewEnvironmentDataDialog</h2>
+
 <p>
     Class implementing a dialog to enter data for a new conda environment.
 </p>
 <h3>Derived from</h3>
 QDialog, Ui_CondaNewEnvironmentDataDialog
 <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="#CondaNewEnvironmentDataDialog.__init__">CondaNewEnvironmentDataDialog</a></td>
 <td>Constructor</td>
-</tr><tr>
+</tr>
+<tr>
 <td><a href="#CondaNewEnvironmentDataDialog.__updateOK">__updateOK</a></td>
 <td>Private method to update the enabled state of the OK button.</td>
-</tr><tr>
+</tr>
+<tr>
 <td><a href="#CondaNewEnvironmentDataDialog.getData">getData</a></td>
 <td>Public method to get the entered data.</td>
-</tr><tr>
+</tr>
+<tr>
 <td><a href="#CondaNewEnvironmentDataDialog.on_condaNameEdit_textChanged">on_condaNameEdit_textChanged</a></td>
 <td>Private slot to handle changes of the conda name.</td>
-</tr><tr>
+</tr>
+<tr>
 <td><a href="#CondaNewEnvironmentDataDialog.on_nameEdit_textChanged">on_nameEdit_textChanged</a></td>
 <td>Private slot to handle changes of the logical name.</td>
-</tr><tr>
+</tr>
+<tr>
 <td><a href="#CondaNewEnvironmentDataDialog.on_requirementsFilePicker_textChanged">on_requirementsFilePicker_textChanged</a></td>
 <td>Private slot to handle changes of the requirements file name.</td>
 </tr>
 </table>
 <h3>Static Methods</h3>
+
 <table>
 <tr><td>None</td></tr>
 </table>
+
 <a NAME="CondaNewEnvironmentDataDialog.__init__" ID="CondaNewEnvironmentDataDialog.__init__"></a>
 <h4>CondaNewEnvironmentDataDialog (Constructor)</h4>
 <b>CondaNewEnvironmentDataDialog</b>(<i>title, showRequirements, parent=None</i>)
+
 <p>
         Constructor
-</p><dl>
+</p>
+<dl>
+
 <dt><i>title</i> (str)</dt>
 <dd>
 tirle of the dialog
-</dd><dt><i>showRequirements</i> (bool)</dt>
+</dd>
+<dt><i>showRequirements</i> (bool)</dt>
 <dd>
 flag indicating to show the requirements
             file input widget
-</dd><dt><i>parent</i> (QWidget)</dt>
+</dd>
+<dt><i>parent</i> (QWidget)</dt>
 <dd>
 reference to the parent widget
 </dd>
-</dl><a NAME="CondaNewEnvironmentDataDialog.__updateOK" ID="CondaNewEnvironmentDataDialog.__updateOK"></a>
+</dl>
+<a NAME="CondaNewEnvironmentDataDialog.__updateOK" ID="CondaNewEnvironmentDataDialog.__updateOK"></a>
 <h4>CondaNewEnvironmentDataDialog.__updateOK</h4>
 <b>__updateOK</b>(<i></i>)
+
 <p>
         Private method to update the enabled state of the OK button.
-</p><a NAME="CondaNewEnvironmentDataDialog.getData" ID="CondaNewEnvironmentDataDialog.getData"></a>
+</p>
+<a NAME="CondaNewEnvironmentDataDialog.getData" ID="CondaNewEnvironmentDataDialog.getData"></a>
 <h4>CondaNewEnvironmentDataDialog.getData</h4>
 <b>getData</b>(<i></i>)
+
 <p>
         Public method to get the entered data.
-</p><dl>
+</p>
+<dl>
 <dt>Returns:</dt>
 <dd>
 tuple with the logical name of the new environment, the conda
             name and the requirements file name
 </dd>
-</dl><dl>
+</dl>
+<dl>
 <dt>Return Type:</dt>
 <dd>
 tuple of (str, str, str)
 </dd>
-</dl><a NAME="CondaNewEnvironmentDataDialog.on_condaNameEdit_textChanged" ID="CondaNewEnvironmentDataDialog.on_condaNameEdit_textChanged"></a>
+</dl>
+<a NAME="CondaNewEnvironmentDataDialog.on_condaNameEdit_textChanged" ID="CondaNewEnvironmentDataDialog.on_condaNameEdit_textChanged"></a>
 <h4>CondaNewEnvironmentDataDialog.on_condaNameEdit_textChanged</h4>
 <b>on_condaNameEdit_textChanged</b>(<i>txt</i>)
+
 <p>
         Private slot to handle changes of the conda name.
-</p><dl>
+</p>
+<dl>
+
 <dt><i>txt</i> (str)</dt>
 <dd>
 current text of the conda name entry
 </dd>
-</dl><a NAME="CondaNewEnvironmentDataDialog.on_nameEdit_textChanged" ID="CondaNewEnvironmentDataDialog.on_nameEdit_textChanged"></a>
+</dl>
+<a NAME="CondaNewEnvironmentDataDialog.on_nameEdit_textChanged" ID="CondaNewEnvironmentDataDialog.on_nameEdit_textChanged"></a>
 <h4>CondaNewEnvironmentDataDialog.on_nameEdit_textChanged</h4>
 <b>on_nameEdit_textChanged</b>(<i>txt</i>)
+
 <p>
         Private slot to handle changes of the logical name.
-</p><dl>
+</p>
+<dl>
+
 <dt><i>txt</i> (str)</dt>
 <dd>
 current text of the logical name entry
 </dd>
-</dl><a NAME="CondaNewEnvironmentDataDialog.on_requirementsFilePicker_textChanged" ID="CondaNewEnvironmentDataDialog.on_requirementsFilePicker_textChanged"></a>
+</dl>
+<a NAME="CondaNewEnvironmentDataDialog.on_requirementsFilePicker_textChanged" ID="CondaNewEnvironmentDataDialog.on_requirementsFilePicker_textChanged"></a>
 <h4>CondaNewEnvironmentDataDialog.on_requirementsFilePicker_textChanged</h4>
 <b>on_requirementsFilePicker_textChanged</b>(<i>txt</i>)
+
 <p>
         Private slot to handle changes of the requirements file name.
-</p><dl>
+</p>
+<dl>
+
 <dt><i>txt</i> (str)</dt>
 <dd>
 current text of the requirements file name entry

eric ide

mercurial