diff -r 72e6f479987b -r f885a0bc2ccc Documentation/Source/eric5.Network.IRC.IrcNetworkListDialog.html --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Documentation/Source/eric5.Network.IRC.IrcNetworkListDialog.html Sat Dec 15 18:20:39 2012 +0100 @@ -0,0 +1,207 @@ +<?xml version="1.0" encoding="utf-8"?> +<!DOCTYPE html PUBLIC '-//W3C//DTD XHTML 1.0 Strict//EN' +'http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd'> +<html><head> +<title>eric5.Network.IRC.IrcNetworkListDialog</title> +<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>eric5.Network.IRC.IrcNetworkListDialog</h1> +<p> +Module implementing a dialog to list the configured IRC networks. +</p> +<h3>Global Attributes</h3> +<table> +<tr><td>None</td></tr> +</table> +<h3>Classes</h3> +<table> +<tr> +<td><a href="#IrcNetworkListDialog">IrcNetworkListDialog</a></td> +<td>Class implementing a dialog to list the configured IRC networks.</td> +</tr> +</table> +<h3>Functions</h3> +<table> +<tr><td>None</td></tr> +</table> +<hr /><hr /> +<a NAME="IrcNetworkListDialog" ID="IrcNetworkListDialog"></a> +<h2>IrcNetworkListDialog</h2> +<p> + Class implementing a dialog to list the configured IRC networks. +</p> +<h3>Derived from</h3> +QDialog, Ui_IrcNetworkListDialog +<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="#IrcNetworkListDialog.__init__">IrcNetworkListDialog</a></td> +<td>Constructor</td> +</tr><tr> +<td><a href="#IrcNetworkListDialog.__checkButtons">__checkButtons</a></td> +<td>Public slot to set the enabled state of the buttons.</td> +</tr><tr> +<td><a href="#IrcNetworkListDialog.__refreshNetworkEntry">__refreshNetworkEntry</a></td> +<td>Private method to (re-)set the data of a network entry.</td> +</tr><tr> +<td><a href="#IrcNetworkListDialog.__refreshNetworksList">__refreshNetworksList</a></td> +<td>Private method to refresh the complete networks list.</td> +</tr><tr> +<td><a href="#IrcNetworkListDialog.__resizeColumns">__resizeColumns</a></td> +<td>Private slot to resize all columns to their contents.</td> +</tr><tr> +<td><a href="#IrcNetworkListDialog.__setAutoConnectEntry">__setAutoConnectEntry</a></td> +<td>Private method to set the auto-connect entry of a network item.</td> +</tr><tr> +<td><a href="#IrcNetworkListDialog.on_autoConnectButton_clicked">on_autoConnectButton_clicked</a></td> +<td>Private slot handling the auto-connect selection.</td> +</tr><tr> +<td><a href="#IrcNetworkListDialog.on_deleteButton_clicked">on_deleteButton_clicked</a></td> +<td>Private slot to delete the selected entry.</td> +</tr><tr> +<td><a href="#IrcNetworkListDialog.on_editButton_clicked">on_editButton_clicked</a></td> +<td>Private slot to edit the selected network.</td> +</tr><tr> +<td><a href="#IrcNetworkListDialog.on_editIdentitiesButton_clicked">on_editIdentitiesButton_clicked</a></td> +<td>Private slot to edit the identities.</td> +</tr><tr> +<td><a href="#IrcNetworkListDialog.on_networksList_itemCollapsed">on_networksList_itemCollapsed</a></td> +<td>Private slot handling the collapse of a top level item.</td> +</tr><tr> +<td><a href="#IrcNetworkListDialog.on_networksList_itemExpanded">on_networksList_itemExpanded</a></td> +<td>Private slot handling the expansion of a top level item.</td> +</tr><tr> +<td><a href="#IrcNetworkListDialog.on_networksList_itemSelectionChanged">on_networksList_itemSelectionChanged</a></td> +<td>Privat slot to handle changes of the selection of networks.</td> +</tr><tr> +<td><a href="#IrcNetworkListDialog.on_newButton_clicked">on_newButton_clicked</a></td> +<td>Private slot to add a new network entry.</td> +</tr> +</table> +<h3>Static Methods</h3> +<table> +<tr><td>None</td></tr> +</table> +<a NAME="IrcNetworkListDialog.__init__" ID="IrcNetworkListDialog.__init__"></a> +<h4>IrcNetworkListDialog (Constructor)</h4> +<b>IrcNetworkListDialog</b>(<i>manager, parent=None</i>) +<p> + Constructor +</p><dl> +<dt><i>manager</i></dt> +<dd> +reference to the IRC network manager (IrcNetworkManager) +</dd><dt><i>parent</i></dt> +<dd> +reference to the parent widget (QWidget) +</dd> +</dl><a NAME="IrcNetworkListDialog.__checkButtons" ID="IrcNetworkListDialog.__checkButtons"></a> +<h4>IrcNetworkListDialog.__checkButtons</h4> +<b>__checkButtons</b>(<i></i>) +<p> + Public slot to set the enabled state of the buttons. +</p><a NAME="IrcNetworkListDialog.__refreshNetworkEntry" ID="IrcNetworkListDialog.__refreshNetworkEntry"></a> +<h4>IrcNetworkListDialog.__refreshNetworkEntry</h4> +<b>__refreshNetworkEntry</b>(<i>itm</i>) +<p> + Private method to (re-)set the data of a network entry. +</p><dl> +<dt><i>itm</i></dt> +<dd> +reference to the network entry (QTreeWidgetItem) +</dd> +</dl><a NAME="IrcNetworkListDialog.__refreshNetworksList" ID="IrcNetworkListDialog.__refreshNetworksList"></a> +<h4>IrcNetworkListDialog.__refreshNetworksList</h4> +<b>__refreshNetworksList</b>(<i></i>) +<p> + Private method to refresh the complete networks list. +</p><a NAME="IrcNetworkListDialog.__resizeColumns" ID="IrcNetworkListDialog.__resizeColumns"></a> +<h4>IrcNetworkListDialog.__resizeColumns</h4> +<b>__resizeColumns</b>(<i></i>) +<p> + Private slot to resize all columns to their contents. +</p><a NAME="IrcNetworkListDialog.__setAutoConnectEntry" ID="IrcNetworkListDialog.__setAutoConnectEntry"></a> +<h4>IrcNetworkListDialog.__setAutoConnectEntry</h4> +<b>__setAutoConnectEntry</b>(<i>itm, on</i>) +<p> + Private method to set the auto-connect entry of a network item. +</p><dl> +<dt><i>itm</i></dt> +<dd> +reference to the network item (QTreeWidgetItem) +</dd><dt><i>on</i></dt> +<dd> +flag indicating the auto-connect state (boolean) +</dd> +</dl><a NAME="IrcNetworkListDialog.on_autoConnectButton_clicked" ID="IrcNetworkListDialog.on_autoConnectButton_clicked"></a> +<h4>IrcNetworkListDialog.on_autoConnectButton_clicked</h4> +<b>on_autoConnectButton_clicked</b>(<i>checked</i>) +<p> + Private slot handling the auto-connect selection. +</p><dl> +<dt><i>checked</i></dt> +<dd> +flag indicating the state of the button (boolean) +</dd> +</dl><a NAME="IrcNetworkListDialog.on_deleteButton_clicked" ID="IrcNetworkListDialog.on_deleteButton_clicked"></a> +<h4>IrcNetworkListDialog.on_deleteButton_clicked</h4> +<b>on_deleteButton_clicked</b>(<i></i>) +<p> + Private slot to delete the selected entry. +</p><a NAME="IrcNetworkListDialog.on_editButton_clicked" ID="IrcNetworkListDialog.on_editButton_clicked"></a> +<h4>IrcNetworkListDialog.on_editButton_clicked</h4> +<b>on_editButton_clicked</b>(<i></i>) +<p> + Private slot to edit the selected network. +</p><a NAME="IrcNetworkListDialog.on_editIdentitiesButton_clicked" ID="IrcNetworkListDialog.on_editIdentitiesButton_clicked"></a> +<h4>IrcNetworkListDialog.on_editIdentitiesButton_clicked</h4> +<b>on_editIdentitiesButton_clicked</b>(<i></i>) +<p> + Private slot to edit the identities. +</p><a NAME="IrcNetworkListDialog.on_networksList_itemCollapsed" ID="IrcNetworkListDialog.on_networksList_itemCollapsed"></a> +<h4>IrcNetworkListDialog.on_networksList_itemCollapsed</h4> +<b>on_networksList_itemCollapsed</b>(<i>item</i>) +<p> + Private slot handling the collapse of a top level item. +</p><a NAME="IrcNetworkListDialog.on_networksList_itemExpanded" ID="IrcNetworkListDialog.on_networksList_itemExpanded"></a> +<h4>IrcNetworkListDialog.on_networksList_itemExpanded</h4> +<b>on_networksList_itemExpanded</b>(<i>item</i>) +<p> + Private slot handling the expansion of a top level item. +</p><a NAME="IrcNetworkListDialog.on_networksList_itemSelectionChanged" ID="IrcNetworkListDialog.on_networksList_itemSelectionChanged"></a> +<h4>IrcNetworkListDialog.on_networksList_itemSelectionChanged</h4> +<b>on_networksList_itemSelectionChanged</b>(<i></i>) +<p> + Privat slot to handle changes of the selection of networks. +</p><a NAME="IrcNetworkListDialog.on_newButton_clicked" ID="IrcNetworkListDialog.on_newButton_clicked"></a> +<h4>IrcNetworkListDialog.on_newButton_clicked</h4> +<b>on_newButton_clicked</b>(<i></i>) +<p> + Private slot to add a new network entry. +</p> +<div align="right"><a href="#top">Up</a></div> +<hr /> +</body></html> \ No newline at end of file