The base class of all messages. More...
Inherits QObject.
Inherited by IrcAccountMessage, IrcAwayMessage, IrcCapabilityMessage, IrcErrorMessage, IrcHostChangeMessage, IrcInviteMessage, IrcJoinMessage, IrcKickMessage, IrcModeMessage, IrcMotdMessage, IrcNamesMessage, IrcNickMessage, IrcNoticeMessage, IrcNumericMessage, IrcPartMessage, IrcPingMessage, IrcPongMessage, IrcPrivateMessage, IrcQuitMessage, IrcTopicMessage, IrcWhoisMessage, IrcWhoReplyMessage, and IrcWhowasMessage.
Public Types | |
enum | Flag { None = 0x00, Own = 0x01, Identified = 0x02, Unidentified = 0x04, Playback = 0x08, Implicit = 0x10 } |
enum | Type { Unknown, Capability, Error, Invite, Join, Kick, Mode, Motd, Names, Nick, Notice, Numeric, Part, Ping, Pong, Private, Quit, Topic, WhoReply, Account, Away, Whois, Whowas, HostChange } |
Public Member Functions | |
Q_INVOKABLE | IrcMessage (IrcConnection *connection) |
virtual | ~IrcMessage () |
QByteArray | encoding () const |
Q_INVOKABLE QByteArray | toData () const |
Static Public Member Functions | |
static Q_INVOKABLE IrcMessage * | fromData (const QByteArray &data, IrcConnection *connection) |
static Q_INVOKABLE IrcMessage * | fromParameters (const QString &prefix, const QString &command, const QStringList ¶meters, IrcConnection *connection) |
Properties | |
QString | account |
QString | command |
IrcConnection | connection |
Flags | flags |
QString | host |
QString | ident |
IrcNetwork | network |
QString | nick |
bool | own |
QStringList | parameters |
QString | prefix |
QVariantMap | tags |
QDateTime | timeStamp |
Type | type |
bool | valid |
IRC messages are received from an IRC server. IrcConnection translates received messages into IrcMessage instances and emits the IrcConnection::messageReceived() signal upon message received.
Subclasses of IrcMessage contain specialized accessors for parameters that are specific to the particular type of message. See IrcMessage::Type for the list of supported message types.
enum IrcMessage::Flag |
This enum describes the supported message flags.
Enumerator | |
---|---|
None |
The message has no flags. |
Own |
The message is user's own message. |
Identified |
The message is identified.
|
Unidentified |
The message is unidentified.
|
Playback |
The message is playback.
|
Implicit |
The message is an implicit "reply" after joining a channel.
|
enum IrcMessage::Type |
This enum describes the supported message types.
Enumerator | |
---|---|
Unknown |
An unknown message (IrcMessage). |
Capability |
A capability message (IrcCapabilityMessage).
|
Error |
An error message (IrcErrorMessage). |
Invite |
An invite message (IrcInviteMessage). |
Join |
A join message (IrcJoinMessage). |
Kick |
A kick message (IrcKickMessage). |
Mode |
A mode message (IrcModeMessage). |
Motd |
A message of the day (IrcMotdMessage). |
Names |
A names message (IrcNamesMessage). |
Nick |
A nick message (IrcNickMessage). |
Notice |
A notice message (IrcNoticeMessage). |
Numeric |
A numeric message (IrcNumericMessage). |
Part |
A part message (IrcPartMessage). |
Ping |
A ping message (IrcPingMessage). |
Pong |
A pong message (IrcPongMessage). |
Private |
A private message (IrcPrivateMessage). |
Quit |
A quit message (IrcQuitMessage). |
Topic |
A topic message (IrcTopicMessage). |
WhoReply |
A who reply message (IrcWhoReplyMessage).
|
Account |
An account notify message (IrcAccountMessage).
|
Away |
An away message (IrcAwayMessage).
|
Whois |
A whois reply message (IrcWhoisMessage).
|
Whowas |
A whowas reply message (IrcWhowasMessage).
|
HostChange |
A host change message (IrcHostChangeMessage).
|
|
explicit |
Constructs a new IrcMessage with connection.
|
virtual |
Destructs the message.
QByteArray IrcMessage::encoding | ( | ) | const |
This property holds the FALLBACK encoding for the message.
The fallback encoding is used when the message is detected not to be valid UTF-8 and the consequent auto-detection of message encoding fails. See QTextCodec::availableCodes() for the list of supported encodings.
The default value is ISO-8859-15.
|
static |
Creates a new message from data and connection.
|
static |
Creates a new message from prefix, command and parameters with connection.
QByteArray IrcMessage::toData | ( | ) | const |
Returns the message as received from an IRC server.
|
read |
This property holds the services account of the message sender.
account-tag
capability is enabled and the user has identified with services.
|
read |
|
read |
This property holds the message connection.
|
read |
This property holds the message flags.
|
read |
|
read |
|
read |
This property holds the message network.
|
read |
|
read |
This property holds whether the message is user's own.
This property is provided for convenience. It is equivalent of testing for the IrcMessage::Own flag.
|
readwrite |
This property holds the message parameters.
|
readwrite |
|
readwrite |
This property holds the message tags.
|
readwrite |
This property holds the message time stamp.
server-time
capability is enabled, the time stamp is automatically set from the time
message tag.
|
read |
This property holds the message type.
|
read |
This property is true
if the message is valid; otherwise false
.
A message is considered valid if the prefix is not empty and the parameters match the message.