/* * Retroshare Gxs Feed Item * * Copyright 2012-2013 by Robert Fernie. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Library General Public * License Version 2.1 as published by the Free Software Foundation. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Library General Public License for more details. * * You should have received a copy of the GNU Library General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 * USA. * * Please report all bugs and problems to "retroshare@lunamutt.com". * */ #ifndef _GXS_CHANNEL_POST_ITEM_H #define _GXS_CHANNEL_POST_ITEM_H #include #include #include "gui/gxs/GxsFeedItem.h" namespace Ui { class GxsChannelPostItem; } class FeedHolder; class SubFileItem; class GxsChannelPostItem : public GxsFeedItem { Q_OBJECT public: GxsChannelPostItem(FeedHolder *feedHolder, uint32_t feedId, const RsGxsGroupId &groupId, const RsGxsMessageId &messageId, bool isHome, bool autoUpdate); GxsChannelPostItem(FeedHolder *feedHolder, uint32_t feedId, const RsGxsChannelGroup &group, const RsGxsChannelPost &post, bool isHome, bool autoUpdate); GxsChannelPostItem(FeedHolder *feedHolder, uint32_t feedId, const RsGxsChannelPost &post, bool isHome, bool autoUpdate); virtual ~GxsChannelPostItem(); bool setGroup(const RsGxsChannelGroup &group, bool doFill = true); bool setPost(const RsGxsChannelPost &post, bool doFill = true); void setFileCleanUpWarning(uint32_t time_left); QString getTitleLabel(); QString getMsgLabel(); const std::list &getFileItems() {return mFileItems; } bool isUnread() const ; protected: /* FeedItem */ virtual void doExpand(bool open); virtual void expandFill(bool first); /* GxsGroupFeedItem */ virtual QString groupName(); virtual void loadGroup(const uint32_t &token); virtual RetroShareLink::enumType getLinkType() { return RetroShareLink::TYPE_CHANNEL; } /* GxsFeedItem */ virtual void loadMessage(const uint32_t &token); virtual QString messageName(); private slots: /* default stuff */ void toggle(); void readAndClearItem(); void download(); void play(); void loadComments(); void readToggled(bool checked); void unsubscribeChannel(); void updateItem(); void makeUpVote(); void makeDownVote(); signals: void vote(const RsGxsGrpMsgIdPair& msgId, bool up); private: void setup(); void fill(); void fillExpandFrame(); void setReadStatus(bool isNew, bool isUnread); private: bool mInFill; bool mCloseOnRead; RsGxsChannelGroup mGroup; RsGxsChannelPost mPost; std::list mFileItems; /** Qt Designer generated object */ Ui::GxsChannelPostItem *ui; }; Q_DECLARE_METATYPE(RsGxsChannelPost) #endif