diff options
| author | Remko Tronçon <git@el-tramo.be> | 2011-02-07 18:18:59 (GMT) | 
|---|---|---|
| committer | Remko Tronçon <git@el-tramo.be> | 2011-02-07 18:19:27 (GMT) | 
| commit | d1837d06c5d655de759bbfcc66711a71c92296ad (patch) | |
| tree | 31f93f55949efdc6047d707d5a32f14a392043e8 /Swift/Controllers/Roster/RosterController.h | |
| parent | 3db6fa2e985a286c3b53dc621ba164023272cb60 (diff) | |
| download | swift-contrib-d1837d06c5d655de759bbfcc66711a71c92296ad.zip swift-contrib-d1837d06c5d655de759bbfcc66711a71c92296ad.tar.bz2  | |
Moved Swift-specific roster code out of Swiften.
Diffstat (limited to 'Swift/Controllers/Roster/RosterController.h')
| -rw-r--r-- | Swift/Controllers/Roster/RosterController.h | 93 | 
1 files changed, 93 insertions, 0 deletions
diff --git a/Swift/Controllers/Roster/RosterController.h b/Swift/Controllers/Roster/RosterController.h new file mode 100644 index 0000000..b0641c3 --- /dev/null +++ b/Swift/Controllers/Roster/RosterController.h @@ -0,0 +1,93 @@ +/* + * Copyright (c) 2010 Kevin Smith + * Licensed under the GNU General Public License v3. + * See Documentation/Licenses/GPLv3.txt for more information. + */ + +#pragma once + +#include "Swiften/JID/JID.h" +#include "Swiften/Base/String.h" +#include "Swiften/Elements/Presence.h" +#include "Swiften/Elements/ErrorPayload.h" +#include "Swiften/Elements/RosterPayload.h" +#include "Swiften/Avatars/AvatarManager.h" +#include "Swift/Controllers/UIEvents/UIEvent.h" +#include "RosterGroupExpandinessPersister.h" + +#include "Swiften/Base/boost_bsignals.h" +#include <boost/shared_ptr.hpp> + +namespace Swift { +	class IQRouter; +	class Roster; +	class XMPPRoster; +	class XMPPRosterItem; +	class MainWindow; +	class MainWindowFactory; +	class OfflineRosterFilter; +	class NickResolver; +	class PresenceOracle; +	class SubscriptionManager; +	class EventController; +	class SubscriptionRequestEvent; +	class UIEventStream; +	class IQRouter; +	class SettingsProvider; +	class NickManager; + +	class RosterController { +		public: +			RosterController(const JID& jid, XMPPRoster* xmppRoster, AvatarManager* avatarManager, MainWindowFactory* mainWindowFactory, NickManager* nickManager, NickResolver* nickResolver, PresenceOracle* presenceOracle, SubscriptionManager* subscriptionManager, EventController* eventController, UIEventStream* uiEventStream, IQRouter* iqRouter_, SettingsProvider* settings); +			~RosterController(); +			void showRosterWindow(); +			MainWindow* getWindow() {return mainWindow_;}; +			boost::signal<void (StatusShow::Type, const String&)> onChangeStatusRequest; +			boost::signal<void ()> onSignOutRequest; +			void handleAvatarChanged(const JID& jid); +			void setEnabled(bool enabled); + +			boost::optional<XMPPRosterItem> getItem(const JID&) const; +			std::set<String> getGroups() const; + +			void setContactGroups(const JID& jid, const std::vector<String>& groups); +			void updateItem(const XMPPRosterItem&); + +		private: +			void handleOnJIDAdded(const JID &jid); +			void handleRosterCleared(); +			void handleOnJIDRemoved(const JID &jid); +			void handleOnJIDUpdated(const JID &jid, const String& oldName, const std::vector<String> oldGroups); +			void handleStartChatRequest(const JID& contact); +			void handleChangeStatusRequest(StatusShow::Type show, const String &statusText); +			void handleShowOfflineToggled(bool state); +			void handleIncomingPresence(boost::shared_ptr<Presence> newPresence); +			void handleSubscriptionRequest(const JID& jid, const String& message); +			void handleSubscriptionRequestAccepted(SubscriptionRequestEvent* event); +			void handleSubscriptionRequestDeclined(SubscriptionRequestEvent* event); +			void handleUIEvent(boost::shared_ptr<UIEvent> event); +			void handleRosterSetError(ErrorPayload::ref error, boost::shared_ptr<RosterPayload> rosterPayload); +			void applyAllPresenceTo(const JID& jid); +			void handleEditProfileRequest(); + +			JID myJID_; +			XMPPRoster* xmppRoster_; +			MainWindowFactory* mainWindowFactory_; +			MainWindow* mainWindow_; +			Roster* roster_; +			OfflineRosterFilter* offlineFilter_; +			AvatarManager* avatarManager_; +			NickManager* nickManager_; +			NickResolver* nickResolver_; +			PresenceOracle* presenceOracle_; +			SubscriptionManager* subscriptionManager_; +			EventController* eventController_; +			RosterGroupExpandinessPersister* expandiness_; +			IQRouter* iqRouter_; +			SettingsProvider* settings_; +			UIEventStream* uiEventStream_; +			boost::bsignals::scoped_connection changeStatusConnection_; +			boost::bsignals::scoped_connection signOutConnection_; +			boost::bsignals::scoped_connection uiEventConnection_; +	}; +}  | 
 Swift