/* * Copyright (c) 2010 Kevin Smith * Licensed under the GNU General Public License v3. * See Documentation/Licenses/GPLv3.txt for more information. */ #pragma once #include #include #include "Swift/Controllers/XMPPEvents/StanzaEvent.h" namespace Swift { class QtEvent { public: QtEvent(boost::shared_ptr event, bool active); QVariant data(int role); boost::shared_ptr getEvent() { return event_; }; enum EventRoles { SenderRole = Qt::UserRole }; private: QString text(); QString sender(); boost::shared_ptr event_; bool active_; }; }