2018-12-23 12:03:08 -05:00
|
|
|
/*******************************************************************************
|
|
|
|
* gui/settings/ServicePermissionPage.cpp *
|
|
|
|
* *
|
|
|
|
* Copyright (c) 2014 Retroshare Team <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/>. *
|
|
|
|
* *
|
|
|
|
*******************************************************************************/
|
2014-03-07 08:48:33 -05:00
|
|
|
|
|
|
|
#include "ServicePermissionsPage.h"
|
|
|
|
|
|
|
|
#include "rshare.h"
|
2014-03-22 07:12:10 -04:00
|
|
|
#include <retroshare/rspeers.h>
|
|
|
|
#include <retroshare/rsservicecontrol.h>
|
2014-03-07 08:48:33 -05:00
|
|
|
|
|
|
|
#include <iostream>
|
|
|
|
#include <QTimer>
|
|
|
|
|
2015-08-09 16:07:24 -04:00
|
|
|
ServicePermissionsPage::ServicePermissionsPage(QWidget * parent, Qt::WindowFlags flags) :
|
|
|
|
ConfigPage(parent, flags)
|
2014-03-07 08:48:33 -05:00
|
|
|
{
|
2017-01-31 17:07:59 -05:00
|
|
|
/* Invoke the Qt Designer generated object setup routine */
|
|
|
|
ui.setupUi(this);
|
2014-03-07 08:48:33 -05:00
|
|
|
|
2017-01-31 17:07:59 -05:00
|
|
|
ui.cb_hideOffline->setChecked(true);
|
2015-08-09 16:07:24 -04:00
|
|
|
|
2017-01-31 17:07:59 -05:00
|
|
|
connect(ui.cb_hideOffline, SIGNAL(toggled(bool)), ui.frame, SLOT(setHideOffline(bool)));
|
|
|
|
//QObject::connect(ui.tableWidget,SIGNAL(itemChanged(QTableWidgetItem *)), this, SLOT(tableItemChanged(QTableWidgetItem *)));
|
2015-08-09 16:07:24 -04:00
|
|
|
|
2017-01-31 17:07:59 -05:00
|
|
|
ui.frame->setHideOffline(ui.cb_hideOffline->isChecked());
|
|
|
|
|
|
|
|
// Not implemented?
|
|
|
|
ui.pushButton->hide();
|
2014-03-07 08:48:33 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
QString ServicePermissionsPage::helpText() const
|
|
|
|
{
|
2015-06-30 12:44:58 -04:00
|
|
|
return tr("<h1><img width=\"24\" src=\":/icons/help_64.png\"> Permissions</h1> \
|
2015-09-10 05:29:15 -04:00
|
|
|
<p>Permissions allow you to control which services are available to which friends.</p>\
|
2015-02-02 16:42:41 -05:00
|
|
|
<p>Each interruptor shows two lights, indicating whether you or your friend has enabled\
|
2015-09-10 05:29:15 -04:00
|
|
|
that service. Both need to be ON (showing <img height=20 src=\":/images/switch11.png\"/>) to\
|
2015-02-02 16:42:41 -05:00
|
|
|
let information transfer for a specific service/friend combination.</p>\
|
|
|
|
<p>For each service, the global switch <img height=20 src=\":/images/global_switch_on.png\"> / <img height=20 src=\":/images/global_switch_off.png\">\
|
2015-09-10 05:29:15 -04:00
|
|
|
allows you to turn a service ON/OFF for all friends at once.</p>\
|
2015-02-02 16:42:41 -05:00
|
|
|
<p>Be very careful: Some services depend on each other. For instance turning turtle OFF will also\
|
|
|
|
stop all anonymous transfer, distant chat and distant messaging.</p>");
|
2014-03-07 08:48:33 -05:00
|
|
|
}
|