Represents a single MUC entry in the CL.
More...
#include "imucentry.h"
Represents a single MUC entry in the CL.
This class extends ICLEntry by providing methods and data specific to MUCs. A well-written plugin should implement this interface along with ICLEntry for MUC entries.
See IConfigurableMUC if the MUC supports being configured and IMUCPerms if the MUC supports adjusting permissions for its participants.
Definition at line 43 of file imucentry.h.
◆ MUCFeature
Enumerator |
---|
MUCFCanBeConfigured | This room has a configuration dialog and can be configured.
|
MUCFCanHaveSubject | Room can have a (possibly empty) subject which may be retrieved by GetMUCSubject().
|
MUCFCanInvite | Room supports invitations.
|
Definition at line 49 of file imucentry.h.
◆ ~IMUCEntry()
virtual LC::Azoth::IMUCEntry::~IMUCEntry |
( |
| ) |
|
|
inlinevirtual |
◆ beenBanned()
virtual void LC::Azoth::IMUCEntry::beenBanned |
( |
const QString & |
reason | ) |
|
|
pure virtual |
Notifies about participant being banned.
This signal should be emitted whenever our user gets banned from this room.
- Note
- This function is expected to be a signal.
- Parameters
-
[out] | reason | The optional reason message. |
◆ beenKicked()
virtual void LC::Azoth::IMUCEntry::beenKicked |
( |
const QString & |
reason | ) |
|
|
pure virtual |
Notifies about participant being kicked.
This signal should be emitted whenever our user gets kicked from this room.
- Note
- This function is expected to be a signal.
- Parameters
-
[out] | reason | The optional reason message. |
◆ CanChangeSubject()
virtual bool LC::Azoth::IMUCEntry::CanChangeSubject |
( |
| ) |
const |
|
pure virtual |
Returns whether MUC subject can be changed.
This function should return whether our user can change this MUC's subject.
- Returns
- Whether the MUC subject can be changed by the user.
◆ GetGroupName()
virtual QString LC::Azoth::IMUCEntry::GetGroupName |
( |
| ) |
const |
|
pure virtual |
Returns human-readable name of participants' group.
This function should return the human-readable name of the group which holds the participants of this room.
- Returns
- The human-readable name.
◆ GetIdentifyingData()
virtual QVariantMap LC::Azoth::IMUCEntry::GetIdentifyingData |
( |
| ) |
const |
|
pure virtual |
◆ GetMUCFeatures()
virtual MUCFeatures LC::Azoth::IMUCEntry::GetMUCFeatures |
( |
| ) |
const |
|
pure virtual |
The list of features of this MUC.
Returns the list of features supported by this MUC.
◆ GetMUCSubject()
virtual QString LC::Azoth::IMUCEntry::GetMUCSubject |
( |
| ) |
const |
|
pure virtual |
Returns subject of this MUC.
Returns the subject/topic of this MUC room, possibly empty. If the protocol or smth doesn't support subjects for MUCs, this function should return an empty string.
- Returns
- The subject of this MUC.
◆ GetNick()
virtual QString LC::Azoth::IMUCEntry::GetNick |
( |
| ) |
const |
|
pure virtual |
Returns the nick of our participant.
- Returns
- The nickname or null string if not applicable.
◆ GetParticipants()
virtual QList<QObject*> LC::Azoth::IMUCEntry::GetParticipants |
( |
| ) |
|
|
pure virtual |
The list of participants of this MUC.
If the protocol plugin chooses to return info about participants via the IAccount interface, the ICLEntry objects returned from this function and from IAccount should be the same for the same participants.
- Returns
- The list of participants of this MUC.
◆ GetRealID()
virtual QString LC::Azoth::IMUCEntry::GetRealID |
( |
QObject * |
participant | ) |
const |
|
pure virtual |
Returns the real ID of a participant.
This function should return a real protocol ID of the given participant (JID for XMPP protocol, for example), or a null string if the ID is unknown, or the given participant doesn't belong to this room.
- Parameters
-
[in] | participant | The participant for which to return the real JID. |
- Returns
- The real ID of a participant.
◆ gotNewParticipants()
virtual void LC::Azoth::IMUCEntry::gotNewParticipants |
( |
const QList< QObject * > & |
parts | ) |
|
|
pure virtual |
Notifies about new participants in the room.
This signal should emitted when new participants join this room.
- Note
- This function is expected to be a signal.
- Parameters
-
[out] | parts | The list of participants that joined. |
◆ InviteToMUC()
virtual void LC::Azoth::IMUCEntry::InviteToMUC |
( |
const QString & |
userId, |
|
|
const QString & |
msg |
|
) |
| |
|
pure virtual |
Invites the user to this MUC.
This function should invite the given user to this MUC by means of the protocol, if applicable, or by a plain message if not.
User is identified by its protocol-specific ID, as returned by ICLEntry::GetHumanReadableID().
The invitation may contain an optional message.
- Parameters
-
[in] | userId | The protocol-specific ID of the user to invite. |
[in] | msg | The optional message to send along with the invite. |
- See also
- ICLEntry::GetHumanReadableID()
◆ IsAutojoined()
virtual bool LC::Azoth::IMUCEntry::IsAutojoined |
( |
| ) |
const |
|
pure virtual |
Whether this MUC room was automatically joined.
Azoth uses this, for example, to avoid auto-opening MUCs that where joined as a result of bookmarks/autojoin list.
- Returns
- Whether the room was autojoined.
◆ Join()
virtual void LC::Azoth::IMUCEntry::Join |
( |
| ) |
|
|
pure virtual |
Requests to join the room.
If the we aren't joined to this MUC (for example, there was a nick conflict, or this entry represents a bookmark), the room should be tried to be joined.
◆ Leave()
virtual void LC::Azoth::IMUCEntry::Leave |
( |
const QString & |
msg = QString() | ) |
|
|
pure virtual |
Requests to leave the room.
The protocol implementation is expected to leave the room with the given leave message. If leaving is impossible for some reason, it's ok to stay.
If the room is successfully left, the parent account should take care of removing the contact list entries corresponding to its participants and the room itself.
- Parameters
-
[in] | msg | The leave message (if applicable). |
◆ mucSubjectChanged()
virtual void LC::Azoth::IMUCEntry::mucSubjectChanged |
( |
const QString & |
newSubj | ) |
|
|
pure virtual |
Notifies about subject change.
This signal should be emitted when room subject is changed to newSubj.
- Note
- This function is expected to be a signal.
- Parameters
-
[out] | newSubj | The new subject of this room. |
◆ nicknameConflict()
virtual void LC::Azoth::IMUCEntry::nicknameConflict |
( |
const QString & |
usedNick | ) |
|
|
pure virtual |
Notifies about nick conflict.
This signal should be emitted when room gets the error from the server that the nickname is already in use.
The signal handler could either call SetNick() with some other nickname (in this case the room should automatically try to rejoin) or do nothing it all (in this case the room should, well, do nothing as well).
This signal should be emitted only if the error arises while joining, not as result of SetNick().
- Note
- This function is expected to be a signal.
- Parameters
-
[out] | usedNick | The nickname that was used to join the room. |
◆ SetMUCSubject()
virtual void LC::Azoth::IMUCEntry::SetMUCSubject |
( |
const QString & |
subject | ) |
|
|
pure virtual |
Updates the subject of this MUC.
Sets the subject of the conference. If it fails for some reason, for example, due to insufficient rights, this function should do nothing.
- Parameters
-
[in] | subject | The new subject of this room to set. |
◆ SetNick()
virtual void LC::Azoth::IMUCEntry::SetNick |
( |
const QString & |
nick | ) |
|
|
pure virtual |
Changes the nick of our participant.
If changing nicks is not allowed or is not supported, nothing should be done.
- Parameters
-
[in] | nick | New nick for our participant in this room. |
The documentation for this class was generated from the following file:
- /home/d34df00d/leechcraft/src/plugins/azoth/interfaces/azoth/imucentry.h