summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKevin Smith <git@kismith.co.uk>2009-11-26 14:26:18 (GMT)
committerKevin Smith <git@kismith.co.uk>2009-11-26 14:26:18 (GMT)
commit808a8047237d663e770cb8aec45c7978862b09ac (patch)
tree899a2217b2615876cae5ab9342894422f93df0a0 /Swift/Controllers/MUCController.h
parent7b1df614ebfdbdb7d12c1d5618a74b8cdc308133 (diff)
downloadswift-808a8047237d663e770cb8aec45c7978862b09ac.zip
swift-808a8047237d663e770cb8aec45c7978862b09ac.tar.bz2
Plugin Avatars into MUCs.
Provides the extra plumbing needed for the MUC faux-roster to be populated with Avatars. This is adding yet another linear time roster operation, and these are going to start adding up eventually. Resolves: #251
Diffstat (limited to 'Swift/Controllers/MUCController.h')
-rw-r--r--Swift/Controllers/MUCController.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/Swift/Controllers/MUCController.h b/Swift/Controllers/MUCController.h
index 7ee6e81..aa5a274 100644
--- a/Swift/Controllers/MUCController.h
+++ b/Swift/Controllers/MUCController.h
@@ -1,47 +1,48 @@
#ifndef SWIFTEN_MUCController_H
#define SWIFTEN_MUCController_H
#include <boost/shared_ptr.hpp>
#include "Swiften/Base/String.h"
#include "Swift/Controllers/ChatControllerBase.h"
#include "Swiften/Elements/Message.h"
#include "Swiften/Elements/DiscoInfo.h"
#include "Swiften/JID/JID.h"
#include "Swiften/MUC/MUC.h"
#include "Swiften/MUC/MUCOccupant.h"
namespace Swift {
class StanzaChannel;
class IQRouter;
class ChatWindow;
class ChatWindowFactory;
class Roster;
class TreeWidgetFactory;
class AvatarManager;
class MUCController : public ChatControllerBase {
public:
MUCController(const JID& self, const JID &muc, const String &nick, StanzaChannel* stanzaChannel, PresenceSender* presenceSender, IQRouter* iqRouter, ChatWindowFactory* chatWindowFactory, TreeWidgetFactory *treeWidgetFactory, PresenceOracle* presenceOracle, AvatarManager* avatarManager);
~MUCController();
protected:
void preSendMessageRequest(boost::shared_ptr<Message> message);
bool isIncomingMessageFromMe(boost::shared_ptr<Message> message);
String senderDisplayNameFromMessage(const JID& from);
private:
void handleWindowClosed();
+ void handleAvatarChanged(const JID& jid, const String&);
void handleOccupantJoined(const MUCOccupant& occupant);
void handleOccupantLeft(const MUCOccupant& occupant, MUC::LeavingType type, const String& reason);
void handleOccupantPresenceChange(boost::shared_ptr<Presence> presence);
private:
MUC *muc_;
String nick_;
TreeWidgetFactory *treeWidgetFactory_;
Roster *roster_;
};
}
#endif