src/eric7/Documentation/Source/eric7.UI.Browser.html

branch
eric7
changeset 10784
521fd465b048
parent 10677
6ee2e475490c
child 10951
8a7e3a26fe36
equal deleted inserted replaced
10783:ccf28bec1227 10784:521fd465b048
146 <td><a href="#Browser.__init__">Browser</a></td> 146 <td><a href="#Browser.__init__">Browser</a></td>
147 <td>Constructor</td> 147 <td>Constructor</td>
148 </tr> 148 </tr>
149 <tr> 149 <tr>
150 <td><a href="#Browser.__addAsToplevelDir">__addAsToplevelDir</a></td> 150 <td><a href="#Browser.__addAsToplevelDir">__addAsToplevelDir</a></td>
151 <td>Private slot to handle the Add as toplevel directory popup menu entry.</td> 151 <td>Private slot to handle the Add as top level directory popup menu entry.</td>
152 </tr> 152 </tr>
153 <tr> 153 <tr>
154 <td><a href="#Browser.__createPopupMenus">__createPopupMenus</a></td> 154 <td><a href="#Browser.__createPopupMenus">__createPopupMenus</a></td>
155 <td>Private method to generate the various popup menus.</td> 155 <td>Private method to generate the various popup menus.</td>
156 </tr> 156 </tr>
169 <tr> 169 <tr>
170 <td><a href="#Browser.__findInDirectory">__findInDirectory</a></td> 170 <td><a href="#Browser.__findInDirectory">__findInDirectory</a></td>
171 <td>Private slot to handle the Find in directory popup menu entry.</td> 171 <td>Private slot to handle the Find in directory popup menu entry.</td>
172 </tr> 172 </tr>
173 <tr> 173 <tr>
174 <td><a href="#Browser.__newToplevelDir">__newToplevelDir</a></td> 174 <td><a href="#Browser.__newRemoteTopLevelDir">__newRemoteTopLevelDir</a></td>
175 <td>Private slot to handle the New toplevel directory popup menu entry.</td> 175 <td>Private slot to handle the New Remote Top Level Directory popup menu entry.</td>
176 </tr>
177 <tr>
178 <td><a href="#Browser.__newTopLevelDir">__newTopLevelDir</a></td>
179 <td>Private slot to handle the New Top Level Directory popup menu entry.</td>
176 </tr> 180 </tr>
177 <tr> 181 <tr>
178 <td><a href="#Browser.__refreshDirectory">__refreshDirectory</a></td> 182 <td><a href="#Browser.__refreshDirectory">__refreshDirectory</a></td>
179 <td>Private slot to refresh a directory entry.</td> 183 <td>Private slot to refresh a directory entry.</td>
180 </tr> 184 </tr>
182 <td><a href="#Browser.__refreshSource">__refreshSource</a></td> 186 <td><a href="#Browser.__refreshSource">__refreshSource</a></td>
183 <td>Private slot to refresh the structure of a source file.</td> 187 <td>Private slot to refresh the structure of a source file.</td>
184 </tr> 188 </tr>
185 <tr> 189 <tr>
186 <td><a href="#Browser.__removeToplevel">__removeToplevel</a></td> 190 <td><a href="#Browser.__removeToplevel">__removeToplevel</a></td>
187 <td>Private slot to handle the Remove from toplevel popup menu entry.</td> 191 <td>Private slot to handle the Remove from top level popup menu entry.</td>
188 </tr> 192 </tr>
189 <tr> 193 <tr>
190 <td><a href="#Browser.__replaceInDirectory">__replaceInDirectory</a></td> 194 <td><a href="#Browser.__replaceInDirectory">__replaceInDirectory</a></td>
191 <td>Private slot to handle the Find&Replace in directory popup menu entry.</td> 195 <td>Private slot to handle the Find&Replace in directory popup menu entry.</td>
192 </tr> 196 </tr>
194 <td><a href="#Browser.__showMimeType">__showMimeType</a></td> 198 <td><a href="#Browser.__showMimeType">__showMimeType</a></td>
195 <td>Private slot to show the mime type of the selected entry.</td> 199 <td>Private slot to show the mime type of the selected entry.</td>
196 </tr> 200 </tr>
197 <tr> 201 <tr>
198 <td><a href="#Browser._contextMenuRequested">_contextMenuRequested</a></td> 202 <td><a href="#Browser._contextMenuRequested">_contextMenuRequested</a></td>
199 <td>Protected slot to show the context menu of the listview.</td> 203 <td>Protected slot to show the context menu of the list view.</td>
200 </tr> 204 </tr>
201 <tr> 205 <tr>
202 <td><a href="#Browser._copyToClipboard">_copyToClipboard</a></td> 206 <td><a href="#Browser._copyToClipboard">_copyToClipboard</a></td>
203 <td>Protected method to copy the text shown for an entry to the clipboard.</td> 207 <td>Protected method to copy the text shown for an entry to the clipboard.</td>
204 </tr> 208 </tr>
322 </table> 326 </table>
323 327
324 328
325 <a NAME="Browser.__init__" ID="Browser.__init__"></a> 329 <a NAME="Browser.__init__" ID="Browser.__init__"></a>
326 <h4>Browser (Constructor)</h4> 330 <h4>Browser (Constructor)</h4>
327 <b>Browser</b>(<i>parent=None</i>) 331 <b>Browser</b>(<i>serverInterface, parent=None</i>)
328 <p> 332 <p>
329 Constructor 333 Constructor
330 </p> 334 </p>
331 335
332 <dl> 336 <dl>
333 337
338 <dt><i>serverInterface</i> (EricServerInterface)</dt>
339 <dd>
340 reference to the 'eric-ide' server interface object
341 </dd>
334 <dt><i>parent</i> (QWidget)</dt> 342 <dt><i>parent</i> (QWidget)</dt>
335 <dd> 343 <dd>
336 parent widget 344 parent widget
337 </dd> 345 </dd>
338 </dl> 346 </dl>
339 <a NAME="Browser.__addAsToplevelDir" ID="Browser.__addAsToplevelDir"></a> 347 <a NAME="Browser.__addAsToplevelDir" ID="Browser.__addAsToplevelDir"></a>
340 <h4>Browser.__addAsToplevelDir</h4> 348 <h4>Browser.__addAsToplevelDir</h4>
341 <b>__addAsToplevelDir</b>(<i></i>) 349 <b>__addAsToplevelDir</b>(<i></i>)
342 <p> 350 <p>
343 Private slot to handle the Add as toplevel directory popup menu entry. 351 Private slot to handle the Add as top level directory popup menu entry.
344 </p> 352 </p>
345 353
346 <a NAME="Browser.__createPopupMenus" ID="Browser.__createPopupMenus"></a> 354 <a NAME="Browser.__createPopupMenus" ID="Browser.__createPopupMenus"></a>
347 <h4>Browser.__createPopupMenus</h4> 355 <h4>Browser.__createPopupMenus</h4>
348 <b>__createPopupMenus</b>(<i></i>) 356 <b>__createPopupMenus</b>(<i></i>)
394 <b>__findInDirectory</b>(<i></i>) 402 <b>__findInDirectory</b>(<i></i>)
395 <p> 403 <p>
396 Private slot to handle the Find in directory popup menu entry. 404 Private slot to handle the Find in directory popup menu entry.
397 </p> 405 </p>
398 406
399 <a NAME="Browser.__newToplevelDir" ID="Browser.__newToplevelDir"></a> 407 <a NAME="Browser.__newRemoteTopLevelDir" ID="Browser.__newRemoteTopLevelDir"></a>
400 <h4>Browser.__newToplevelDir</h4> 408 <h4>Browser.__newRemoteTopLevelDir</h4>
401 <b>__newToplevelDir</b>(<i></i>) 409 <b>__newRemoteTopLevelDir</b>(<i></i>)
402 <p> 410 <p>
403 Private slot to handle the New toplevel directory popup menu entry. 411 Private slot to handle the New Remote Top Level Directory popup menu entry.
412 </p>
413
414 <a NAME="Browser.__newTopLevelDir" ID="Browser.__newTopLevelDir"></a>
415 <h4>Browser.__newTopLevelDir</h4>
416 <b>__newTopLevelDir</b>(<i></i>)
417 <p>
418 Private slot to handle the New Top Level Directory popup menu entry.
404 </p> 419 </p>
405 420
406 <a NAME="Browser.__refreshDirectory" ID="Browser.__refreshDirectory"></a> 421 <a NAME="Browser.__refreshDirectory" ID="Browser.__refreshDirectory"></a>
407 <h4>Browser.__refreshDirectory</h4> 422 <h4>Browser.__refreshDirectory</h4>
408 <b>__refreshDirectory</b>(<i></i>) 423 <b>__refreshDirectory</b>(<i></i>)
419 434
420 <a NAME="Browser.__removeToplevel" ID="Browser.__removeToplevel"></a> 435 <a NAME="Browser.__removeToplevel" ID="Browser.__removeToplevel"></a>
421 <h4>Browser.__removeToplevel</h4> 436 <h4>Browser.__removeToplevel</h4>
422 <b>__removeToplevel</b>(<i></i>) 437 <b>__removeToplevel</b>(<i></i>)
423 <p> 438 <p>
424 Private slot to handle the Remove from toplevel popup menu entry. 439 Private slot to handle the Remove from top level popup menu entry.
425 </p> 440 </p>
426 441
427 <a NAME="Browser.__replaceInDirectory" ID="Browser.__replaceInDirectory"></a> 442 <a NAME="Browser.__replaceInDirectory" ID="Browser.__replaceInDirectory"></a>
428 <h4>Browser.__replaceInDirectory</h4> 443 <h4>Browser.__replaceInDirectory</h4>
429 <b>__replaceInDirectory</b>(<i></i>) 444 <b>__replaceInDirectory</b>(<i></i>)
440 455
441 <a NAME="Browser._contextMenuRequested" ID="Browser._contextMenuRequested"></a> 456 <a NAME="Browser._contextMenuRequested" ID="Browser._contextMenuRequested"></a>
442 <h4>Browser._contextMenuRequested</h4> 457 <h4>Browser._contextMenuRequested</h4>
443 <b>_contextMenuRequested</b>(<i>coord</i>) 458 <b>_contextMenuRequested</b>(<i>coord</i>)
444 <p> 459 <p>
445 Protected slot to show the context menu of the listview. 460 Protected slot to show the context menu of the list view.
446 </p> 461 </p>
447 462
448 <dl> 463 <dl>
449 464
450 <dt><i>coord</i> (QPoint)</dt> 465 <dt><i>coord</i> (QPoint)</dt>

eric ide

mercurial