2012-07-01 19:05:03 -04:00
|
|
|
/*
|
|
|
|
* 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
|
|
|
|
|
2012-11-25 16:50:45 -05:00
|
|
|
|
2012-07-27 11:41:52 -04:00
|
|
|
#include "retroshare-gui/mainpage.h"
|
2012-07-01 19:05:03 -04:00
|
|
|
#include "ui_PostedListDialog.h"
|
|
|
|
|
2012-10-21 15:45:35 -04:00
|
|
|
#include <retroshare/rsposted.h>
|
2012-07-01 19:05:03 -04:00
|
|
|
|
|
|
|
#include <map>
|
|
|
|
|
|
|
|
#include "gui/Posted/PostedItem.h"
|
|
|
|
#include "gui/common/GroupTreeWidget.h"
|
|
|
|
|
2012-10-21 15:45:35 -04:00
|
|
|
#include "util/TokenQueue.h"
|
2012-07-27 11:41:52 -04:00
|
|
|
#include "retroshare-gui/RsAutoUpdatePage.h"
|
2012-12-05 17:45:44 -05:00
|
|
|
#include "PostedUserTypes.h"
|
2012-07-01 19:05:03 -04:00
|
|
|
|
2012-11-22 17:40:31 -05:00
|
|
|
|
|
|
|
class CommentHolder;
|
|
|
|
|
2012-10-29 18:41:41 -04:00
|
|
|
/*********************** **** **** **** ***********************/
|
|
|
|
/** Request / Response of Data ********************************/
|
|
|
|
/*********************** **** **** **** ***********************/
|
|
|
|
|
|
|
|
#define POSTEDDIALOG_LISTING 1
|
|
|
|
#define POSTEDDIALOG_CURRENTFORUM 2
|
|
|
|
#define POSTEDDIALOG_INSERTTHREADS 3
|
|
|
|
#define POSTEDDIALOG_INSERTCHILD 4
|
|
|
|
#define POSTEDDIALOG_INSERT_POST 5
|
|
|
|
#define POSTEDDIALOG_REPLY_MESSAGE 6
|
|
|
|
|
2012-10-21 15:45:35 -04:00
|
|
|
class PostedListDialog : public RsAutoUpdatePage, public PostedHolder, public TokenResponse
|
2012-07-01 19:05:03 -04:00
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2012-11-22 17:40:31 -05:00
|
|
|
PostedListDialog(CommentHolder* commentHolder, QWidget *parent = 0);
|
2012-07-01 19:05:03 -04:00
|
|
|
|
2012-11-25 16:50:45 -05:00
|
|
|
void showComments(const RsPostedPost& post);
|
2012-07-01 19:05:03 -04:00
|
|
|
|
|
|
|
private slots:
|
|
|
|
|
2012-11-17 16:43:21 -05:00
|
|
|
void groupListCustomPopupMenu( QPoint /*point*/ );
|
|
|
|
void changedTopic(const QString &id);
|
2012-07-01 19:05:03 -04:00
|
|
|
|
2012-11-17 16:43:21 -05:00
|
|
|
void newTopic();
|
|
|
|
void showGroupDetails();
|
|
|
|
void newPost();
|
2012-12-05 17:45:44 -05:00
|
|
|
void refreshTopics();
|
|
|
|
|
|
|
|
void submitVote(const RsGxsGrpMsgIdPair& msgId, bool up);
|
2012-07-30 19:55:21 -04:00
|
|
|
|
2012-12-15 19:43:15 -05:00
|
|
|
void getRankings();
|
2012-12-11 17:26:11 -05:00
|
|
|
|
2012-07-01 19:05:03 -04:00
|
|
|
private:
|
|
|
|
|
2012-11-17 16:43:21 -05:00
|
|
|
void clearPosts();
|
2012-07-01 19:05:03 -04:00
|
|
|
|
2012-12-11 17:26:11 -05:00
|
|
|
/*!
|
|
|
|
* Only removes it from layout
|
|
|
|
*/
|
|
|
|
void shallowClearPosts();
|
|
|
|
|
2012-11-17 16:43:21 -05:00
|
|
|
void updateDisplay();
|
|
|
|
void loadPost(const RsPostedPost &post);
|
2012-07-01 19:05:03 -04:00
|
|
|
|
2012-11-17 16:43:21 -05:00
|
|
|
void insertGroups();
|
|
|
|
void requestGroupSummary();
|
|
|
|
void acknowledgeGroup(const uint32_t &token);
|
|
|
|
void loadGroupSummary(const uint32_t &token);
|
2012-07-01 19:05:03 -04:00
|
|
|
|
2012-11-17 16:43:21 -05:00
|
|
|
void requestGroupSummary_CurrentForum(const std::string &forumId);
|
|
|
|
void loadGroupSummary_CurrentForum(const uint32_t &token);
|
2012-07-01 19:05:03 -04:00
|
|
|
|
|
|
|
|
2012-12-05 17:45:44 -05:00
|
|
|
// posts
|
|
|
|
void acknowledgePostMsg(const uint32_t &token);
|
2012-11-17 16:43:21 -05:00
|
|
|
void loadPostData(const uint32_t &token);
|
|
|
|
void insertThreads();
|
|
|
|
void loadCurrentTopicThreads(const std::string &forumId);
|
|
|
|
void requestGroupThreadData_InsertThreads(const std::string &forumId);
|
|
|
|
void loadGroupThreadData_InsertThreads(const uint32_t &token);
|
2012-07-01 19:05:03 -04:00
|
|
|
|
2012-12-05 17:45:44 -05:00
|
|
|
// votes
|
|
|
|
|
|
|
|
void acknowledgeVoteMsg(const uint32_t& token);
|
|
|
|
void loadVoteData(const uint32_t &token);
|
|
|
|
|
2012-12-11 17:26:11 -05:00
|
|
|
// ranking
|
|
|
|
|
|
|
|
void loadRankings(const uint32_t& token);
|
|
|
|
void applyRanking(const PostedRanking& ranks);
|
|
|
|
|
2012-12-05 17:45:44 -05:00
|
|
|
|
2012-12-09 17:38:49 -05:00
|
|
|
// update displayed item
|
|
|
|
|
|
|
|
void updateDisplayedItems(const std::vector<RsGxsMessageId>& msgIds);
|
|
|
|
void updateCurrentDisplayComplete(const uint32_t& token);
|
2012-07-01 19:05:03 -04:00
|
|
|
|
2012-11-17 16:43:21 -05:00
|
|
|
void insertGroupData(const std::list<RsGroupMetaData> &groupList);
|
|
|
|
void groupInfoToGroupItemInfo(const RsGroupMetaData &groupInfo, GroupItemInfo &groupItemInfo);
|
2012-07-01 19:05:03 -04:00
|
|
|
|
2012-11-17 16:43:21 -05:00
|
|
|
void loadRequest(const TokenQueue *queue, const TokenRequest &req);
|
2012-07-01 19:05:03 -04:00
|
|
|
|
2012-11-17 16:43:21 -05:00
|
|
|
private:
|
|
|
|
|
|
|
|
QTreeWidgetItem *yourTopics;
|
|
|
|
QTreeWidgetItem *subscribedTopics;
|
|
|
|
QTreeWidgetItem *popularTopics;
|
|
|
|
QTreeWidgetItem *otherTopics;
|
2012-07-01 19:05:03 -04:00
|
|
|
|
2012-07-30 19:55:21 -04:00
|
|
|
|
2012-11-17 16:43:21 -05:00
|
|
|
bool mThreadLoading;
|
|
|
|
RsGxsGroupId mCurrTopicId;
|
2012-07-01 19:05:03 -04:00
|
|
|
|
2012-11-17 16:43:21 -05:00
|
|
|
QMap<RsGxsGroupId, RsPostedGroup> mGroups;
|
2012-12-09 17:38:49 -05:00
|
|
|
QMap<RsGxsMessageId, PostedItem*> mPosts;
|
2012-11-17 16:43:21 -05:00
|
|
|
TokenQueue *mPostedQueue;
|
2012-07-01 19:05:03 -04:00
|
|
|
|
2012-11-22 17:40:31 -05:00
|
|
|
CommentHolder* mCommentHolder;
|
|
|
|
|
2012-11-17 16:43:21 -05:00
|
|
|
/* UI - from Designer */
|
|
|
|
Ui::PostedListDialog ui;
|
2012-07-01 19:05:03 -04:00
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|