📄 privacymanager.h
字号:
/* Copyright (c) 2005-2008 by Jakob Schroeter <js@camaya.net> This file is part of the gloox library. http://camaya.net/gloox This software is distributed under a license. The full license agreement can be found in the file LICENSE in this distribution. This software may not be copied, modified, sold or distributed other than expressed in the named license agreement. This software is distributed without any warranty.*/#ifndef PRIVACYMANAGER_H__#define PRIVACYMANAGER_H__#include "iqhandler.h"#include "privacylisthandler.h"#include <string>namespace gloox{ class ClientBase; /** * @brief This class implements a manager for privacy lists as defined in section 10 of RFC 3921. * * @author Jakob Schroeter <js@camaya.net> * @since 0.3 */ class GLOOX_API PrivacyManager : public IqHandler { public: /** * Constructs a new PrivacyManager. * @param parent The ClientBase to use for communication. */ PrivacyManager( ClientBase *parent ); /** * Virtual destructor. */ virtual ~PrivacyManager(); /** * Triggers the request of the privacy lists currently stored on the server. */ std::string requestListNames(); /** * Triggers the retrieval of the named privacy lists. * @param name The name of the list to retrieve. */ std::string requestList( const std::string& name ); /** * Stores the given list on the server. If a list with the given name * exists, the existing list is overwritten. * @param name The list's name. * @param list A list of privacy items which describe the list. */ std::string store( const std::string& name, const PrivacyListHandler::PrivacyList& list ); /** * Removes a list by its name. * @param name The name of the list to remove. */ std::string removeList( const std::string& name ); /** * Sets the named list as the default list, i.e. active by default after login. * @param name The name of the list to set as default. */ std::string setDefault( const std::string& name ); /** * This function declines the use of any default list. */ std::string unsetDefault(); /** * Sets the named list as active, i.e. active for this session * @param name The name of the list to set active. */ std::string setActive( const std::string& name ); /** * This function declines the use of any active list. */ std::string unsetActive(); /** * Use this function to register an object as PrivacyListHandler. * Only one PrivacyListHandler at a time is possible. * @param plh The object to register as handler for privacy list related events. */ void registerPrivacyListHandler( PrivacyListHandler *plh ); /** * Use this function to clear the registered PrivacyListHandler. */ void removePrivacyListHandler(); // reimplemented from IqHandler virtual bool handleIq( Stanza *stanza ); // reimplemented from IqHandler virtual bool handleIqID( Stanza *stanza, int context ); private: enum IdType { PLRequestNames, PLRequestList, PLActivate, PLDefault, PLUnsetActivate, PLUnsetDefault, PLRemove, PLStore }; ClientBase *m_parent; PrivacyListHandler *m_privacyListHandler; };}#endif // PRIVACYMANAGER_H__
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -