2013-03-11 16:53:15 -04:00
|
|
|
/****************************************************************
|
|
|
|
* RetroShare is distributed under the following license:
|
|
|
|
*
|
|
|
|
* Copyright (C) 2013 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.
|
|
|
|
****************************************************************/
|
|
|
|
|
|
|
|
#include "GxsChannelGroupDialog.h"
|
|
|
|
|
|
|
|
#include <retroshare/rsgxschannels.h>
|
|
|
|
#include <iostream>
|
|
|
|
|
|
|
|
// To start with we only have open forums - with distribution controls.
|
2013-07-19 05:48:51 -04:00
|
|
|
|
2013-03-11 16:53:15 -04:00
|
|
|
const uint32_t ChannelCreateEnabledFlags = ( GXS_GROUP_FLAGS_ICON |
|
|
|
|
GXS_GROUP_FLAGS_DESCRIPTION |
|
|
|
|
GXS_GROUP_FLAGS_DISTRIBUTION |
|
|
|
|
// GXS_GROUP_FLAGS_PUBLISHSIGN |
|
|
|
|
GXS_GROUP_FLAGS_SHAREKEYS |
|
|
|
|
// GXS_GROUP_FLAGS_PERSONALSIGN |
|
|
|
|
GXS_GROUP_FLAGS_COMMENTS |
|
|
|
|
0);
|
|
|
|
|
|
|
|
const uint32_t ChannelCreateDefaultsFlags = ( GXS_GROUP_DEFAULTS_DISTRIB_PUBLIC |
|
|
|
|
//GXS_GROUP_DEFAULTS_DISTRIB_GROUP |
|
|
|
|
//GXS_GROUP_DEFAULTS_DISTRIB_LOCAL |
|
2013-07-19 05:48:51 -04:00
|
|
|
|
2013-03-11 16:53:15 -04:00
|
|
|
GXS_GROUP_DEFAULTS_PUBLISH_OPEN |
|
|
|
|
//GXS_GROUP_DEFAULTS_PUBLISH_THREADS |
|
|
|
|
//GXS_GROUP_DEFAULTS_PUBLISH_REQUIRED |
|
|
|
|
//GXS_GROUP_DEFAULTS_PUBLISH_ENCRYPTED |
|
2013-07-19 05:48:51 -04:00
|
|
|
|
2013-03-11 16:53:15 -04:00
|
|
|
//GXS_GROUP_DEFAULTS_PERSONAL_GPG |
|
|
|
|
GXS_GROUP_DEFAULTS_PERSONAL_REQUIRED |
|
|
|
|
//GXS_GROUP_DEFAULTS_PERSONAL_IFNOPUB |
|
2013-07-19 05:48:51 -04:00
|
|
|
|
2013-03-11 16:53:15 -04:00
|
|
|
GXS_GROUP_DEFAULTS_COMMENTS_YES |
|
|
|
|
//GXS_GROUP_DEFAULTS_COMMENTS_NO |
|
|
|
|
0);
|
|
|
|
|
|
|
|
GxsChannelGroupDialog::GxsChannelGroupDialog(TokenQueue *tokenQueue, QWidget *parent)
|
|
|
|
:GxsGroupDialog(tokenQueue, ChannelCreateEnabledFlags, ChannelCreateDefaultsFlags, parent)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
GxsChannelGroupDialog::GxsChannelGroupDialog(const RsGxsChannelGroup &group, Mode mode, QWidget *parent)
|
|
|
|
:GxsGroupDialog(group.mMeta, mode, parent)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void GxsChannelGroupDialog::initUi()
|
|
|
|
{
|
|
|
|
switch (mode())
|
|
|
|
{
|
|
|
|
case MODE_CREATE:
|
|
|
|
setUiText(UITYPE_SERVICE_HEADER, tr("Create New Channel"));
|
|
|
|
break;
|
|
|
|
case MODE_SHOW:
|
|
|
|
setUiText(UITYPE_SERVICE_HEADER, tr("Channel"));
|
|
|
|
break;
|
|
|
|
case MODE_EDIT:
|
|
|
|
setUiText(UITYPE_SERVICE_HEADER, tr("Edit Channel"));
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
QPixmap GxsChannelGroupDialog::serviceImage()
|
|
|
|
{
|
|
|
|
return QPixmap(":/images/konversation64.png");
|
|
|
|
}
|
|
|
|
|
|
|
|
bool GxsChannelGroupDialog::service_CreateGroup(uint32_t &token, const RsGroupMetaData &meta)
|
|
|
|
{
|
|
|
|
// Specific Function.
|
|
|
|
RsGxsChannelGroup grp;
|
|
|
|
grp.mMeta = meta;
|
|
|
|
//grp.mDescription = std::string(desc.toUtf8());
|
|
|
|
|
|
|
|
rsGxsChannels->createGroup(token, grp);
|
|
|
|
return true;
|
|
|
|
}
|