mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-01-10 06:59:42 -05:00
235 lines
8.2 KiB
C++
235 lines
8.2 KiB
C++
/*******************************************************************************
|
|
* retroshare-gui/src/gui/gxs/GxsGroupFrameDialog.h *
|
|
* *
|
|
* Copyright 2012-2013 by Robert Fernie <retroshare.project@gmail.com> *
|
|
* *
|
|
* This program is free software: you can redistribute it and/or modify *
|
|
* it under the terms of the GNU Affero General Public License as *
|
|
* published by the Free Software Foundation, either version 3 of the *
|
|
* License, or (at your option) any later version. *
|
|
* *
|
|
* This program 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 Affero General Public License for more details. *
|
|
* *
|
|
* You should have received a copy of the GNU Affero General Public License *
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>. *
|
|
* *
|
|
*******************************************************************************/
|
|
|
|
#ifndef _GXSGROUPFRAMEDIALOG_H
|
|
#define _GXSGROUPFRAMEDIALOG_H
|
|
|
|
#include "gui/gxs/RsGxsUpdateBroadcastPage.h"
|
|
#include "RsAutoUpdatePage.h"
|
|
#include "gui/RetroShareLink.h"
|
|
#include "gui/settings/rsharesettings.h"
|
|
#include "util/RsUserdata.h"
|
|
|
|
#include <inttypes.h>
|
|
|
|
#include "GxsIdTreeWidgetItem.h"
|
|
#include "GxsGroupDialog.h"
|
|
|
|
namespace Ui {
|
|
class GxsGroupFrameDialog;
|
|
}
|
|
|
|
class GroupTreeWidget;
|
|
class GroupItemInfo;
|
|
class GxsMessageFrameWidget;
|
|
class UIStateHelper;
|
|
struct RsGxsCommentService;
|
|
class GxsCommentDialog;
|
|
|
|
class GxsGroupFrameDialog : public MainPage
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
enum TextType {
|
|
TEXT_NAME,
|
|
TEXT_NEW,
|
|
TEXT_TODO,
|
|
TEXT_YOUR_GROUP,
|
|
TEXT_SUBSCRIBED_GROUP,
|
|
TEXT_POPULAR_GROUP,
|
|
TEXT_OTHER_GROUP
|
|
};
|
|
|
|
enum IconType {
|
|
ICON_NAME,
|
|
ICON_NEW,
|
|
ICON_YOUR_GROUP,
|
|
ICON_SUBSCRIBED_GROUP,
|
|
ICON_POPULAR_GROUP,
|
|
ICON_OTHER_GROUP,
|
|
ICON_SEARCH,
|
|
ICON_DEFAULT
|
|
};
|
|
|
|
public:
|
|
GxsGroupFrameDialog(RsGxsIfaceHelper *ifaceImpl, QWidget *parent = 0,bool allow_dist_sync=false);
|
|
virtual ~GxsGroupFrameDialog();
|
|
|
|
bool navigate(const RsGxsGroupId &groupId, const RsGxsMessageId& msgId);
|
|
|
|
virtual QString getHelpString() const =0;
|
|
|
|
virtual void getGroupList(std::map<RsGxsGroupId,RsGroupMetaData> &groups) ;
|
|
|
|
void getServiceStatistics(GxsServiceStatistic& stats) const ;
|
|
|
|
protected:
|
|
virtual void showEvent(QShowEvent *event) override;
|
|
virtual void paintEvent(QPaintEvent *pe) override;
|
|
virtual void updateDisplay(bool complete);
|
|
|
|
const RsGxsGroupId &groupId() { return mGroupId; }
|
|
void setSingleTab(bool singleTab);
|
|
void setHideTabBarWithOneTab(bool hideTabBarWithOneTab);
|
|
bool getCurrentGroupName(QString& name);
|
|
virtual RetroShareLink::enumType getLinkType() = 0;
|
|
virtual GroupFrameSettings::Type groupFrameSettingsType() { return GroupFrameSettings::Nothing; }
|
|
virtual void groupInfoToGroupItemInfo(const RsGxsGenericGroupData *groupInfo, GroupItemInfo &groupItemInfo);
|
|
virtual void checkRequestGroup(const RsGxsGroupId& /* grpId */) {} // overload this one in order to retrieve full group data when the group is browsed
|
|
|
|
void updateMessageSummaryList(RsGxsGroupId groupId);
|
|
void updateGroupStatistics(const RsGxsGroupId &groupId);
|
|
|
|
virtual const std::set<TurtleRequestId> getSearchRequests() const { return std::set<TurtleRequestId>(); } // overload this for subclasses that provide distant search
|
|
|
|
// These two need to be overloaded by subsclasses, possibly calling the blocking API, since they are used asynchroneously.
|
|
|
|
virtual bool getGroupData(std::list<RsGxsGenericGroupData*>& groupInfo) =0;
|
|
virtual bool getGroupStatistics(const RsGxsGroupId& groupId,GxsGroupStatistic& stat) =0;
|
|
|
|
private:
|
|
void updateGroupStatisticsReal(const RsGxsGroupId &groupId);
|
|
void updateMessageSummaryListReal(RsGxsGroupId groupId);
|
|
|
|
private slots:
|
|
void todo();
|
|
|
|
/** Create the context popup menu and it's submenus */
|
|
void groupTreeCustomPopupMenu(QPoint point);
|
|
void settingsChanged();
|
|
void setSyncPostsDelay();
|
|
void setStorePostsDelay();
|
|
|
|
void restoreGroupKeys();
|
|
void newGroup();
|
|
void distantRequestGroupData();
|
|
|
|
void changedCurrentGroup(const QString &groupId);
|
|
void groupTreeMiddleButtonClicked(QTreeWidgetItem *item);
|
|
void openInNewTab();
|
|
void messageTabCloseRequested(int index);
|
|
void messageTabChanged(int index);
|
|
void messageTabInfoChanged(QWidget *widget);
|
|
void messageTabWaitingChanged(QWidget *widget);
|
|
|
|
void copyGroupLink();
|
|
|
|
void subscribeGroup();
|
|
void unsubscribeGroup();
|
|
|
|
void showGroupDetails();
|
|
void editGroupDetails();
|
|
|
|
void markMsgAsRead();
|
|
void markMsgAsUnread();
|
|
|
|
void sharePublishKey();
|
|
|
|
void loadComment(const RsGxsGroupId &grpId, const QVector<RsGxsMessageId>& msg_versions,const RsGxsMessageId &most_recent_msgId, const QString &title);
|
|
|
|
void searchNetwork(const QString &search_string) ;
|
|
void removeAllSearches();
|
|
void removeCurrentSearch();
|
|
|
|
private:
|
|
virtual QString text(TextType type) = 0;
|
|
virtual QString icon(IconType type) = 0;
|
|
virtual QString settingsGroupName() = 0;
|
|
virtual TurtleRequestId distantSearch(const QString& search_string) ;
|
|
|
|
virtual GxsGroupDialog *createNewGroupDialog() = 0;
|
|
virtual GxsGroupDialog *createGroupDialog(GxsGroupDialog::Mode mode, RsGxsGroupId groupId) = 0;
|
|
virtual int shareKeyType() = 0;
|
|
virtual GxsMessageFrameWidget *createMessageFrameWidget(const RsGxsGroupId &groupId) = 0;
|
|
virtual void groupTreeCustomActions(RsGxsGroupId /*grpId*/, int /*subscribeFlags*/, QList<QAction*> &/*actions*/) {}
|
|
virtual RsGxsCommentService *getCommentService() { return NULL; }
|
|
virtual QWidget *createCommentHeaderWidget(const RsGxsGroupId &/*grpId*/, const RsGxsMessageId &/*msgId*/) { return NULL; }
|
|
virtual bool getDistantSearchResults(TurtleRequestId /* id */, std::map<RsGxsGroupId,RsGxsGroupSummary>& /* group_infos */){ return false ;}
|
|
|
|
void initUi();
|
|
|
|
void openGroupInNewTab(const RsGxsGroupId &groupId);
|
|
void groupSubscribe(bool subscribe);
|
|
|
|
void processSettings(bool load);
|
|
|
|
// New Request/Response Loading Functions.
|
|
void insertGroupsData(const std::list<RsGxsGenericGroupData *> &groupList);
|
|
|
|
//void requestGroupSummary();
|
|
void updateGroupSummary();
|
|
void loadGroupSummary(const std::list<RsGxsGenericGroupData *> &groupInfo);
|
|
|
|
virtual uint32_t requestGroupSummaryType() { return GXS_REQUEST_TYPE_GROUP_META; } // request only meta data
|
|
|
|
// subscribe/unsubscribe ack.
|
|
|
|
GxsMessageFrameWidget *messageWidget(const RsGxsGroupId &groupId, bool ownTab);
|
|
GxsMessageFrameWidget *createMessageWidget(const RsGxsGroupId &groupId);
|
|
|
|
GxsCommentDialog *commentWidget(const RsGxsMessageId &msgId);
|
|
|
|
protected:
|
|
void updateSearchResults();
|
|
|
|
bool mCountChildMsgs; // Count unread child messages?
|
|
|
|
private:
|
|
bool mInitialized;
|
|
bool mInFill;
|
|
bool mDistSyncAllowed;
|
|
QString mSettingsName;
|
|
RsGxsGroupId mGroupId;
|
|
RsGxsIfaceHelper *mInterface;
|
|
GxsMessageFrameWidget *mMessageWidget;
|
|
|
|
QTreeWidgetItem *mYourGroups;
|
|
QTreeWidgetItem *mSubscribedGroups;
|
|
QTreeWidgetItem *mPopularGroups;
|
|
QTreeWidgetItem *mOtherGroups;
|
|
|
|
RsGxsGroupId mNavigatePendingGroupId;
|
|
RsGxsMessageId mNavigatePendingMsgId;
|
|
|
|
// Message summary list update
|
|
|
|
bool mShouldUpdateMessageSummaryList ; // whether we should update the counting for groups. This takes some CPU so we only do it when needed.
|
|
std::set<RsGxsGroupId> mGroupIdsSummaryToUpdate;
|
|
|
|
// GroupStatistics update
|
|
bool mShouldUpdateGroupStatistics;
|
|
rstime_t mLastGroupStatisticsUpdateTs;
|
|
std::set<RsGxsGroupId> mGroupStatisticsToUpdate;
|
|
|
|
UIStateHelper *mStateHelper;
|
|
|
|
/** Qt Designer generated object */
|
|
Ui::GxsGroupFrameDialog *ui;
|
|
|
|
std::map<RsGxsGroupId,RsGroupMetaData> mCachedGroupMetas;
|
|
std::map<RsGxsGroupId,GxsGroupStatistic> mCachedGroupStats;
|
|
|
|
std::map<uint32_t,QTreeWidgetItem*> mSearchGroupsItems ;
|
|
std::map<uint32_t,std::set<RsGxsGroupId> > mKnownGroups;
|
|
};
|
|
|
|
#endif
|