2013-03-11 20:53:15 +00:00
|
|
|
/****************************************************************
|
|
|
|
* RetroShare is distributed under the following license:
|
|
|
|
*
|
|
|
|
* Copyright (C) 2008 Robert Fernie
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2
|
|
|
|
* 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 General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
|
|
|
* Boston, MA 02110-1301, USA.
|
|
|
|
****************************************************************/
|
|
|
|
|
|
|
|
#ifndef _GXS_CHANNEL_DIALOG_H
|
|
|
|
#define _GXS_CHANNEL_DIALOG_H
|
|
|
|
|
2014-05-04 22:59:06 +00:00
|
|
|
#include "gui/gxs/GxsGroupFrameDialog.h"
|
2013-03-11 20:53:15 +00:00
|
|
|
|
2014-05-10 02:38:47 +00:00
|
|
|
#define IMAGE_GXSCHANNELS ":/images/channels.png"
|
|
|
|
|
2014-05-08 00:00:21 +00:00
|
|
|
class GxsChannelDialog : public GxsGroupFrameDialog
|
2013-03-11 20:53:15 +00:00
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
/** Default Constructor */
|
|
|
|
GxsChannelDialog(QWidget *parent = 0);
|
|
|
|
/** Default Destructor */
|
|
|
|
~GxsChannelDialog();
|
|
|
|
|
2014-05-10 02:38:47 +00:00
|
|
|
virtual QIcon iconPixmap() const { return QIcon(IMAGE_GXSCHANNELS) ; } //MainPage
|
|
|
|
virtual QString pageName() const { return tr("Channels") ; } //MainPage
|
|
|
|
virtual QString helpText() const { return ""; } //MainPage
|
|
|
|
|
2014-07-06 10:32:13 +00:00
|
|
|
virtual UserNotify *getUserNotify(QObject *parent);
|
|
|
|
|
2014-05-27 21:14:05 +00:00
|
|
|
protected:
|
2014-09-11 22:07:06 +00:00
|
|
|
/* GxsGroupFrameDialog */
|
2014-07-24 14:54:23 +00:00
|
|
|
virtual RetroShareLink::enumType getLinkType() { return RetroShareLink::TYPE_CHANNEL; }
|
|
|
|
virtual GroupFrameSettings::Type groupFrameSettingsType() { return GroupFrameSettings::Channel; }
|
2014-09-10 21:38:43 +00:00
|
|
|
virtual QString getHelpString() const ;
|
2014-09-11 22:07:06 +00:00
|
|
|
virtual void groupInfoToGroupItemInfo(const RsGroupMetaData &groupInfo, GroupItemInfo &groupItemInfo, const RsUserdata *userdata);
|
2014-07-24 14:54:23 +00:00
|
|
|
|
2013-03-11 20:53:15 +00:00
|
|
|
private slots:
|
|
|
|
void toggleAutoDownload();
|
|
|
|
|
|
|
|
private:
|
2014-05-04 22:59:06 +00:00
|
|
|
/* GxsGroupFrameDialog */
|
|
|
|
virtual QString text(TextType type);
|
|
|
|
virtual QString icon(IconType type);
|
2014-07-24 16:52:11 +00:00
|
|
|
virtual QString settingsGroupName() { return "ChannelDialog"; }
|
2014-05-04 22:59:06 +00:00
|
|
|
virtual GxsGroupDialog *createNewGroupDialog(TokenQueue *tokenQueue);
|
|
|
|
virtual GxsGroupDialog *createGroupDialog(TokenQueue *tokenQueue, RsTokenService *tokenService, GxsGroupDialog::Mode mode, RsGxsGroupId groupId);
|
|
|
|
virtual int shareKeyType();
|
|
|
|
virtual GxsMessageFrameWidget *createMessageFrameWidget(const RsGxsGroupId &groupId);
|
|
|
|
virtual void groupTreeCustomActions(RsGxsGroupId grpId, int subscribeFlags, QList<QAction*> &actions);
|
2014-05-08 00:00:21 +00:00
|
|
|
virtual RsGxsCommentService *getCommentService();
|
|
|
|
virtual QWidget *createCommentHeaderWidget(const RsGxsGroupId &grpId, const RsGxsMessageId &msgId);
|
2014-09-11 22:07:06 +00:00
|
|
|
virtual uint32_t requestGroupSummaryType() { return GXS_REQUEST_TYPE_GROUP_DATA; } // request complete group data
|
|
|
|
virtual void loadGroupSummaryToken(const uint32_t &token, std::list<RsGroupMetaData> &groupInfo, RsUserdata* &userdata);
|
2013-03-11 20:53:15 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|