/* * Copyright (c) 2010 Remko Tronçon * Licensed under the GNU General Public License v3. * See Documentation/Licenses/GPLv3.txt for more information. */ #pragma once #include #include #include #include #include namespace Swift { class JID; class ContactEditWindow { public: virtual ~ContactEditWindow() {}; virtual void setEnabled(bool b) = 0; virtual void setContact(const JID& jid, const String& name, const std::vector& groups, const std::set& allGroups) = 0; virtual void show() = 0; virtual void hide() = 0; boost::signal onRemoveContactRequest; boost::signal& /* groups */)> onChangeContactRequest; }; }