summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRemko Tronçon <git@el-tramo.be>2009-06-10 17:23:57 (GMT)
committerRemko Tronçon <git@el-tramo.be>2009-06-10 17:38:05 (GMT)
commite2f5588d089e4d2148762ea092e032976254a467 (patch)
tree851946c7a36ffa96e0f3ab54bc72f233f8b2c746 /Swiften/Controllers/MUCController.h
parent7214d768dca85a6d43892169d5008898249dce73 (diff)
downloadswift-e2f5588d089e4d2148762ea092e032976254a467.zip
swift-e2f5588d089e4d2148762ea092e032976254a467.tar.bz2
Moved Swiften/Controllers to Swift/Controllers.
Diffstat (limited to 'Swiften/Controllers/MUCController.h')
-rw-r--r--Swiften/Controllers/MUCController.h43
1 files changed, 0 insertions, 43 deletions
diff --git a/Swiften/Controllers/MUCController.h b/Swiften/Controllers/MUCController.h
deleted file mode 100644
index a7859cf..0000000
--- a/Swiften/Controllers/MUCController.h
+++ /dev/null
@@ -1,43 +0,0 @@
-#ifndef SWIFTEN_MUCController_H
-#define SWIFTEN_MUCController_H
-
-#include <boost/shared_ptr.hpp>
-
-#include "Swiften/Base/String.h"
-#include "Swiften/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 MUCController : public ChatControllerBase {
- public:
- MUCController(const JID &muc, const String &nick, StanzaChannel* stanzaChannel, IQRouter* iqRouter, ChatWindowFactory* chatWindowFactory, TreeWidgetFactory *treeWidgetFactory, PresenceOracle* presenceOracle);
- ~MUCController();
-
- protected:
- void preSendMessageRequest(boost::shared_ptr<Message> message);
- bool isIncomingMessageFromMe(boost::shared_ptr<Message> message);
- String senderDisplayNameFromMessage(JID from);
- private:
- void handleWindowClosed();
- void handleOccupantJoined(const MUCOccupant& occupant);
- void handleOccupantLeft(const MUCOccupant& occupant, MUC::LeavingType type, const String& reason);
- void handleOccupantPresenceChange(boost::shared_ptr<Presence> presence);
- MUC *muc_;
- String nick_;
- TreeWidgetFactory *treeWidgetFactory_;
- Roster *roster_;
- };
-}
-#endif
-