Documentation/Source/eric6.VirtualEnv.VirtualenvAddEditDialog.html

changeset 6716
1c9d3b369ea8
parent 6576
ea60ea85067a
equal deleted inserted replaced
6711:a3aec8edaef5 6716:1c9d3b369ea8
76 <td>Private slot to handle changes of the logical name.</td> 76 <td>Private slot to handle changes of the logical name.</td>
77 </tr><tr> 77 </tr><tr>
78 <td><a href="#VirtualenvAddEditDialog.on_pythonExecPicker_textChanged">on_pythonExecPicker_textChanged</a></td> 78 <td><a href="#VirtualenvAddEditDialog.on_pythonExecPicker_textChanged">on_pythonExecPicker_textChanged</a></td>
79 <td>Private slot to handle changes of the virtual environment interpreter.</td> 79 <td>Private slot to handle changes of the virtual environment interpreter.</td>
80 </tr><tr> 80 </tr><tr>
81 <td><a href="#VirtualenvAddEditDialog.on_remoteCheckBox_toggled">on_remoteCheckBox_toggled</a></td>
82 <td>Private slot handling a change of the remote check box state.</td>
83 </tr><tr>
81 <td><a href="#VirtualenvAddEditDialog.on_targetDirectoryPicker_textChanged">on_targetDirectoryPicker_textChanged</a></td> 84 <td><a href="#VirtualenvAddEditDialog.on_targetDirectoryPicker_textChanged">on_targetDirectoryPicker_textChanged</a></td>
82 <td>Private slot to handle changes of the virtual environment directory.</td> 85 <td>Private slot to handle changes of the virtual environment directory.</td>
83 </tr> 86 </tr>
84 </table> 87 </table>
85 <h3>Static Methods</h3> 88 <h3>Static Methods</h3>
86 <table> 89 <table>
87 <tr><td>None</td></tr> 90 <tr><td>None</td></tr>
88 </table> 91 </table>
89 <a NAME="VirtualenvAddEditDialog.__init__" ID="VirtualenvAddEditDialog.__init__"></a> 92 <a NAME="VirtualenvAddEditDialog.__init__" ID="VirtualenvAddEditDialog.__init__"></a>
90 <h4>VirtualenvAddEditDialog (Constructor)</h4> 93 <h4>VirtualenvAddEditDialog (Constructor)</h4>
91 <b>VirtualenvAddEditDialog</b>(<i>manager, venvName="", venvDirectory="", venvInterpreter="", venvVariant=3, isGlobal=False, isConda=False, execPath="", parent=None</i>) 94 <b>VirtualenvAddEditDialog</b>(<i>manager, venvName="", venvDirectory="", venvInterpreter="", venvVariant=3, isGlobal=False, isConda=False, isRemote=False, execPath="", parent=None</i>)
92 <p> 95 <p>
93 Constructor 96 Constructor
94 </p><dl> 97 </p><dl>
95 <dt><i>manager</i> (VirtualenvManager)</dt> 98 <dt><i>manager</i> (VirtualenvManager)</dt>
96 <dd> 99 <dd>
111 <dd> 114 <dd>
112 flag indicating a global environment 115 flag indicating a global environment
113 </dd><dt><i>isConda</i> (bool)</dt> 116 </dd><dt><i>isConda</i> (bool)</dt>
114 <dd> 117 <dd>
115 flag indicating an Anaconda virtual environment 118 flag indicating an Anaconda virtual environment
119 </dd><dt><i>isRemote</i> (bool)</dt>
120 <dd>
121 flag indicating a remotely accessed environment
116 </dd><dt><i>execPath</i> (str)</dt> 122 </dd><dt><i>execPath</i> (str)</dt>
117 <dd> 123 <dd>
118 search path string to be prepended to the PATH 124 search path string to be prepended to the PATH
119 environment variable 125 environment variable
120 </dd><dt><i>parent</i> (QWidget)</dt> 126 </dd><dt><i>parent</i> (QWidget)</dt>
135 <dt>Returns:</dt> 141 <dt>Returns:</dt>
136 <dd> 142 <dd>
137 tuple containing the logical name, the directory, the 143 tuple containing the logical name, the directory, the
138 interpreter of the virtual environment, the Python variant, 144 interpreter of the virtual environment, the Python variant,
139 a flag indicating a global environment, a flag indicating an 145 a flag indicating a global environment, a flag indicating an
140 Anaconda environment and a string to be prepended to the PATH 146 Anaconda environment, aflag indicating a remotely accessed
141 environment variable 147 environment and a string to be prepended to the PATH environment
148 variable
142 </dd> 149 </dd>
143 </dl><dl> 150 </dl><dl>
144 <dt>Return Type:</dt> 151 <dt>Return Type:</dt>
145 <dd> 152 <dd>
146 tuple of (str, str, str, int, bool,bool, str) 153 tuple of (str, str, str, int, bool, bool, bool, str)
147 </dd> 154 </dd>
148 </dl><a NAME="VirtualenvAddEditDialog.on_anacondaCheckBox_clicked" ID="VirtualenvAddEditDialog.on_anacondaCheckBox_clicked"></a> 155 </dl><a NAME="VirtualenvAddEditDialog.on_anacondaCheckBox_clicked" ID="VirtualenvAddEditDialog.on_anacondaCheckBox_clicked"></a>
149 <h4>VirtualenvAddEditDialog.on_anacondaCheckBox_clicked</h4> 156 <h4>VirtualenvAddEditDialog.on_anacondaCheckBox_clicked</h4>
150 <b>on_anacondaCheckBox_clicked</b>(<i>checked</i>) 157 <b>on_anacondaCheckBox_clicked</b>(<i>checked</i>)
151 <p> 158 <p>
182 Private slot to handle changes of the virtual environment interpreter. 189 Private slot to handle changes of the virtual environment interpreter.
183 </p><dl> 190 </p><dl>
184 <dt><i>txt</i> (str)</dt> 191 <dt><i>txt</i> (str)</dt>
185 <dd> 192 <dd>
186 virtual environment interpreter 193 virtual environment interpreter
194 </dd>
195 </dl><a NAME="VirtualenvAddEditDialog.on_remoteCheckBox_toggled" ID="VirtualenvAddEditDialog.on_remoteCheckBox_toggled"></a>
196 <h4>VirtualenvAddEditDialog.on_remoteCheckBox_toggled</h4>
197 <b>on_remoteCheckBox_toggled</b>(<i>checked</i>)
198 <p>
199 Private slot handling a change of the remote check box state.
200 </p><dl>
201 <dt><i>checked</i> (bool)</dt>
202 <dd>
203 state of the check box
187 </dd> 204 </dd>
188 </dl><a NAME="VirtualenvAddEditDialog.on_targetDirectoryPicker_textChanged" ID="VirtualenvAddEditDialog.on_targetDirectoryPicker_textChanged"></a> 205 </dl><a NAME="VirtualenvAddEditDialog.on_targetDirectoryPicker_textChanged" ID="VirtualenvAddEditDialog.on_targetDirectoryPicker_textChanged"></a>
189 <h4>VirtualenvAddEditDialog.on_targetDirectoryPicker_textChanged</h4> 206 <h4>VirtualenvAddEditDialog.on_targetDirectoryPicker_textChanged</h4>
190 <b>on_targetDirectoryPicker_textChanged</b>(<i>txt</i>) 207 <b>on_targetDirectoryPicker_textChanged</b>(<i>txt</i>)
191 <p> 208 <p>

eric ide

mercurial