diff -r 727a907b8305 -r a134031209be Documentation/Source/eric5.Cooperation.ChatWidget.html --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Documentation/Source/eric5.Cooperation.ChatWidget.html Sun Mar 21 19:34:15 2010 +0000 @@ -0,0 +1,198 @@ +<?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.Cooperation.ChatWidget</title> +<style> +body { + background:white; + margin: 0em 1em 10em 1em; + color: black; +} + +h1 { color: white; background: #4FA4FF; } +h2 { color: white; background: #4FA4FF; } +h3 { color: white; background: #00557F; } +h4 { color: white; background: #00557F; } + +a { color: #AA5500; } + +</style> +</head> +<body><a NAME="top" ID="top"></a> +<h1>eric5.Cooperation.ChatWidget</h1> +<p> +Module implementing the chat dialog. +</p> +<h3>Global Attributes</h3> +<table> +<tr><td>None</td></tr> +</table> +<h3>Classes</h3> +<table> +<tr> +<td><a href="#ChatWidget">ChatWidget</a></td> +<td>Class implementing the chat dialog.</td> +</tr> +</table> +<h3>Functions</h3> +<table> +<tr><td>None</td></tr> +</table> +<hr /><hr /> +<a NAME="ChatWidget" ID="ChatWidget"></a> +<h2>ChatWidget</h2> +<p> + Class implementing the chat dialog. +</p> +<h3>Derived from</h3> +QWidget, Ui_ChatWidget +<h3>Class Attributes</h3> +<table> +<tr><td>None</td></tr> +</table> +<h3>Methods</h3> +<table> +<tr> +<td><a href="#ChatWidget.__init__">ChatWidget</a></td> +<td>Constructor</td> +</tr><tr> +<td><a href="#ChatWidget.__handleMessage">__handleMessage</a></td> +<td>Private slot handling the Return key pressed in the message edit.</td> +</tr><tr> +<td><a href="#ChatWidget.__initialConnectionRefused">__initialConnectionRefused</a></td> +<td>Private slot to handle the refusal of the initial connection.</td> +</tr><tr> +<td><a href="#ChatWidget.__newParticipant">__newParticipant</a></td> +<td>Private slot handling a new participant joining.</td> +</tr><tr> +<td><a href="#ChatWidget.__participantLeft">__participantLeft</a></td> +<td>Private slot handling a participant leaving the session.</td> +</tr><tr> +<td><a href="#ChatWidget.__setConnected">__setConnected</a></td> +<td>Private slot to set the connected state.</td> +</tr><tr> +<td><a href="#ChatWidget.__showErrorMessage">__showErrorMessage</a></td> +<td>Private slot to show an error message.</td> +</tr><tr> +<td><a href="#ChatWidget.appendMessage">appendMessage</a></td> +<td>Public slot to append a message to the display.</td> +</tr><tr> +<td><a href="#ChatWidget.on_connectButton_clicked">on_connectButton_clicked</a></td> +<td>Private slot initiating the connection.</td> +</tr><tr> +<td><a href="#ChatWidget.on_hostEdit_textChanged">on_hostEdit_textChanged</a></td> +<td>Private slot handling the entry of a host to connect to.</td> +</tr><tr> +<td><a href="#ChatWidget.on_serverButton_clicked">on_serverButton_clicked</a></td> +<td>Private slot to start the server.</td> +</tr><tr> +<td><a href="#ChatWidget.preferencesChanged">preferencesChanged</a></td> +<td>Public slot to handle a change of preferences.</td> +</tr> +</table> +<a NAME="ChatWidget.__init__" ID="ChatWidget.__init__"></a> +<h4>ChatWidget (Constructor)</h4> +<b>ChatWidget</b>(<i>port = -1, parent = None</i>) +<p> + Constructor +</p><dl> +<dt><i>port</i></dt> +<dd> +port to be used for the cooperation server (integer) +</dd><dt><i>parent</i></dt> +<dd> +reference to the parent widget (QWidget) +</dd> +</dl><a NAME="ChatWidget.__handleMessage" ID="ChatWidget.__handleMessage"></a> +<h4>ChatWidget.__handleMessage</h4> +<b>__handleMessage</b>(<i></i>) +<p> + Private slot handling the Return key pressed in the message edit. +</p><a NAME="ChatWidget.__initialConnectionRefused" ID="ChatWidget.__initialConnectionRefused"></a> +<h4>ChatWidget.__initialConnectionRefused</h4> +<b>__initialConnectionRefused</b>(<i></i>) +<p> + Private slot to handle the refusal of the initial connection. +</p><a NAME="ChatWidget.__newParticipant" ID="ChatWidget.__newParticipant"></a> +<h4>ChatWidget.__newParticipant</h4> +<b>__newParticipant</b>(<i>nick</i>) +<p> + Private slot handling a new participant joining. +</p><dl> +<dt><i>nick</i></dt> +<dd> +nick name of the new participant (string) +</dd> +</dl><a NAME="ChatWidget.__participantLeft" ID="ChatWidget.__participantLeft"></a> +<h4>ChatWidget.__participantLeft</h4> +<b>__participantLeft</b>(<i>nick</i>) +<p> + Private slot handling a participant leaving the session. +</p><dl> +<dt><i>nick</i></dt> +<dd> +nick name of the participant (string) +</dd> +</dl><a NAME="ChatWidget.__setConnected" ID="ChatWidget.__setConnected"></a> +<h4>ChatWidget.__setConnected</h4> +<b>__setConnected</b>(<i>connected</i>) +<p> + Private slot to set the connected state. +</p><dl> +<dt><i>connected</i></dt> +<dd> +new connected state (boolean) +</dd> +</dl><a NAME="ChatWidget.__showErrorMessage" ID="ChatWidget.__showErrorMessage"></a> +<h4>ChatWidget.__showErrorMessage</h4> +<b>__showErrorMessage</b>(<i>message</i>) +<p> + Private slot to show an error message. +</p><dl> +<dt><i>message</i></dt> +<dd> +error message to show (string) +</dd> +</dl><a NAME="ChatWidget.appendMessage" ID="ChatWidget.appendMessage"></a> +<h4>ChatWidget.appendMessage</h4> +<b>appendMessage</b>(<i>from_, message</i>) +<p> + Public slot to append a message to the display. +</p><dl> +<dt><i>from_</i></dt> +<dd> +originator of the message (string) +</dd><dt><i>message</i></dt> +<dd> +message to be appended (string) +</dd> +</dl><a NAME="ChatWidget.on_connectButton_clicked" ID="ChatWidget.on_connectButton_clicked"></a> +<h4>ChatWidget.on_connectButton_clicked</h4> +<b>on_connectButton_clicked</b>(<i></i>) +<p> + Private slot initiating the connection. +</p><a NAME="ChatWidget.on_hostEdit_textChanged" ID="ChatWidget.on_hostEdit_textChanged"></a> +<h4>ChatWidget.on_hostEdit_textChanged</h4> +<b>on_hostEdit_textChanged</b>(<i>host</i>) +<p> + Private slot handling the entry of a host to connect to. +</p><dl> +<dt><i>host</i></dt> +<dd> +host to connect to (string) +</dd> +</dl><a NAME="ChatWidget.on_serverButton_clicked" ID="ChatWidget.on_serverButton_clicked"></a> +<h4>ChatWidget.on_serverButton_clicked</h4> +<b>on_serverButton_clicked</b>(<i></i>) +<p> + Private slot to start the server. +</p><a NAME="ChatWidget.preferencesChanged" ID="ChatWidget.preferencesChanged"></a> +<h4>ChatWidget.preferencesChanged</h4> +<b>preferencesChanged</b>(<i></i>) +<p> + Public slot to handle a change of preferences. +</p> +<div align="right"><a href="#top">Up</a></div> +<hr /> +</body></html> \ No newline at end of file