aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJeremy Lainé <jeremy.laine@m4x.org>2010-11-25 16:55:02 +0000
committerJeremy Lainé <jeremy.laine@m4x.org>2010-11-25 16:55:02 +0000
commit179bc9f2d43b3db90f35f581fd848a18541978c9 (patch)
treed02747a8160e35e9c552a04bc20d03a38a5ec83f /src
parentb7e6d83721884fd147129c968c7aaeeb0b192a91 (diff)
downloadqxmpp-179bc9f2d43b3db90f35f581fd848a18541978c9.tar.gz
document chat states
Diffstat (limited to 'src')
-rw-r--r--src/QXmppMessage.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/QXmppMessage.h b/src/QXmppMessage.h
index 8503f86f..9444e59a 100644
--- a/src/QXmppMessage.h
+++ b/src/QXmppMessage.h
@@ -50,12 +50,12 @@ public:
/// XEP-0085 : Chat State Notifications.
enum State
{
- None = 0,
- Active,
- Inactive,
- Gone,
- Composing,
- Paused,
+ None = 0, ///< The message does not contain any chat state information.
+ Active, ///< User is actively participating in the chat session.
+ Inactive, ///< User has not been actively participating in the chat session.
+ Gone, ///< User has effectively ended their participation in the chat session.
+ Composing, ///< User is composing a message.
+ Paused, ///< User had been composing but now has stopped.
};
QXmppMessage(const QString& from = "", const QString& to = "",