/* * Retroshare Posted List * * Copyright 2012-2012 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 MRK_POSTED_LIST_DIALOG_H #define MRK_POSTED_LIST_DIALOG_H #include "retroshare-gui/mainpage.h" #include "ui_PostedListDialog.h" #include #include #include "gui/Posted/PostedItem.h" #include "gui/common/GroupTreeWidget.h" #include "util/TokenQueueVEG.h" #include "retroshare-gui/RsAutoUpdatePage.h" class PostedListDialog : public RsAutoUpdatePage, public PostedHolder, public TokenResponseVEG { Q_OBJECT public: PostedListDialog(QWidget *parent = 0); virtual void deletePostedItem(PostedItem *, uint32_t ptype) { return; } virtual void notifySelection(PostedItem *item, int ptype) { return; } virtual void requestComments(std::string threadId); signals: void loadComments( std::string ); private slots: void groupListCustomPopupMenu( QPoint /*point*/ ); void changedTopic(const QString &id); void sortButtonClicked( QAbstractButton *button ); void sortButtonPressed(); void periodChanged( int index ); void newGroup(); void showGroupDetails(); void editGroupDetails(); private: void clearPosts(); void updateDisplay(); void loadPost(const RsPostedPost &post); void insertGroups(); void requestGroupSummary(); void loadGroupSummary(const uint32_t &token); void requestGroupSummary_CurrentForum(const std::string &forumId); void loadGroupSummary_CurrentForum(const uint32_t &token); void insertThreads(); void loadCurrentForumThreads(const std::string &forumId); void requestGroupThreadData_InsertThreads(const std::string &forumId); void loadGroupThreadData_InsertThreads(const uint32_t &token); void insertGroupData(const std::list &groupList); void groupInfoToGroupItemInfo(const RsGroupMetaData &groupInfo, GroupItemInfo &groupItemInfo); void loadRequest(const TokenQueueVEG *queue, const TokenRequestVEG &req); QTreeWidgetItem *yourTopics; QTreeWidgetItem *subscribedTopics; QTreeWidgetItem *popularTopics; QTreeWidgetItem *otherTopics; QAbstractButton *mSortButton; bool mThreadLoading; std::string mCurrTopicId; TokenQueueVEG *mPostedQueue; /* UI - from Designer */ Ui::PostedListDialog ui; }; #endif