mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-10-01 02:35:48 -04:00
d9e1473533
git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@8421 b45a01b8-16f6-495d-af2f-9b41ad6348cc
190 lines
6.5 KiB
C++
190 lines
6.5 KiB
C++
/****************************************************************
|
|
* RetroShare is distributed under the following license:
|
|
*
|
|
* Copyright (C) 2006- 2010 RetroShare Team
|
|
*
|
|
* 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 "ShareDialog.h"
|
|
|
|
#include <retroshare/rsfiles.h>
|
|
#include <retroshare/rstypes.h>
|
|
|
|
#include <QContextMenuEvent>
|
|
#include <QFileDialog>
|
|
#include <QMessageBox>
|
|
#include <QLayout>
|
|
#include <QTextEdit>
|
|
#include <QComboBox>
|
|
#include <QSizePolicy>
|
|
#include <QGroupBox>
|
|
|
|
#include <gui/common/GroupSelectionBox.h>
|
|
#include <gui/common/GroupFlagsWidget.h>
|
|
|
|
/** Default constructor */
|
|
ShareDialog::ShareDialog(std::string filename, QWidget *parent)
|
|
: QDialog(parent, Qt::WindowSystemMenuHint | Qt::WindowTitleHint | Qt::WindowCloseButtonHint)
|
|
{
|
|
/* Invoke Qt Designer generated QObject setup routine */
|
|
ui.setupUi(this);
|
|
|
|
ui.headerFrame->setHeaderImage(QPixmap(":/images/fileshare64.png"));
|
|
ui.headerFrame->setHeaderText(tr("Share Folder"));
|
|
|
|
connect(ui.browseButton, SIGNAL(clicked( bool ) ), this , SLOT( browseDirectory() ) );
|
|
connect(ui.buttonBox, SIGNAL(accepted()), this , SLOT( addDirectory() ) );
|
|
connect(ui.buttonBox, SIGNAL(rejected()), this, SLOT(close()));
|
|
|
|
ui.buttonBox->button(QDialogButtonBox::Ok)->setEnabled(false);
|
|
|
|
QVBoxLayout *vbox = new QVBoxLayout() ;
|
|
|
|
QHBoxLayout *hb2 = new QHBoxLayout() ;
|
|
hb2->addWidget(new QLabel(tr("Share flags and groups:")+" ")) ;
|
|
|
|
groupflagsbox = new GroupFlagsWidget(ui.shareflags_GB) ;
|
|
groupflagsbox->setFlags(DIR_FLAGS_NETWORK_WIDE_OTHERS) ; // default value
|
|
|
|
messageBox = new QTextEdit(ui.shareflags_GB) ;
|
|
messageBox->setReadOnly(true) ;
|
|
messageBox->setSizePolicy(QSizePolicy(QSizePolicy::MinimumExpanding,QSizePolicy::Preferred)) ;
|
|
|
|
hb2->addWidget(groupflagsbox) ;
|
|
|
|
vbox->addLayout(hb2) ;
|
|
vbox->addWidget(messageBox) ;
|
|
|
|
QHBoxLayout *hbox = new QHBoxLayout() ;
|
|
groupselectionbox = new GroupSelectionBox(ui.shareflags_GB);
|
|
hbox->addLayout(vbox) ;
|
|
hbox->addWidget(groupselectionbox) ;
|
|
|
|
ui.shareflags_GB->setLayout(hbox) ;
|
|
updateInfoMessage() ;
|
|
|
|
connect(groupselectionbox,SIGNAL(itemChanged(QListWidgetItem*)),this,SLOT(updateInfoMessage())) ;
|
|
connect(groupflagsbox,SIGNAL(flagsChanged(FileStorageFlags)),this,SLOT(updateInfoMessage())) ;
|
|
|
|
if (!filename.empty())
|
|
{
|
|
std::list<SharedDirInfo> dirs;
|
|
rsFiles->getSharedDirectories(dirs);
|
|
|
|
std::list<SharedDirInfo>::const_iterator it;
|
|
for (it = dirs.begin(); it != dirs.end(); ++it) {
|
|
if (it->filename == filename)
|
|
{
|
|
/* fill dialog */
|
|
ui.buttonBox->button(QDialogButtonBox::Ok)->setEnabled(true);
|
|
|
|
ui.localpath_lineEdit->setText(QString::fromUtf8(it->filename.c_str()));
|
|
ui.localpath_lineEdit->setDisabled(true);
|
|
ui.browseButton->setDisabled(true);
|
|
ui.virtualpath_lineEdit->setText(QString::fromUtf8(it->virtualname.c_str()));
|
|
|
|
groupflagsbox->setFlags(it->shareflags) ;
|
|
groupselectionbox->setSelectedGroupIds(it->parent_groups) ;
|
|
|
|
ui.headerFrame->setHeaderText(tr("Edit Shared Folder"));
|
|
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
void ShareDialog::groupSelectionChanged()
|
|
{
|
|
rsFiles->updateSinceGroupPermissionsChanged() ;
|
|
}
|
|
|
|
void ShareDialog::updateInfoMessage()
|
|
{
|
|
QList<QString> selectedGroupNames;
|
|
groupselectionbox->selectedGroupNames(selectedGroupNames);
|
|
messageBox->setText(GroupFlagsWidget::groupInfoString(groupflagsbox->flags(), selectedGroupNames)) ;
|
|
}
|
|
|
|
void ShareDialog::browseDirectory()
|
|
{
|
|
/* select a dir*/
|
|
QString qdir = QFileDialog::getExistingDirectory(this, tr("Select A Folder To Share"), "", QFileDialog::ShowDirsOnly | QFileDialog::DontResolveSymlinks);
|
|
|
|
/* add it to the server */
|
|
if (qdir.isEmpty()) {
|
|
ui.buttonBox->button(QDialogButtonBox::Ok)->setEnabled(false);
|
|
return;
|
|
}
|
|
ui.buttonBox->button(QDialogButtonBox::Ok)->setEnabled(true);
|
|
ui.localpath_lineEdit->setText(qdir);
|
|
}
|
|
|
|
void ShareDialog::addDirectory()
|
|
{
|
|
SharedDirInfo sdi ;
|
|
sdi.filename = ui.localpath_lineEdit->text().toUtf8().constData();
|
|
sdi.virtualname = ui.virtualpath_lineEdit->text().toUtf8().constData();
|
|
sdi.shareflags = groupflagsbox->flags() ;
|
|
groupselectionbox->selectedGroupIds(sdi.parent_groups);
|
|
|
|
if (ui.localpath_lineEdit->isEnabled())
|
|
{
|
|
/* add new share */
|
|
rsFiles->addSharedDirectory(sdi);
|
|
}
|
|
else
|
|
{
|
|
/* edit exisiting share */
|
|
bool found = false;
|
|
|
|
std::list<SharedDirInfo> dirs;
|
|
rsFiles->getSharedDirectories(dirs);
|
|
|
|
std::list<SharedDirInfo>::iterator it;
|
|
for (it = dirs.begin(); it != dirs.end(); ++it) {
|
|
if (it->filename == sdi.filename) {
|
|
found = true;
|
|
|
|
if (it->virtualname != sdi.virtualname) {
|
|
/* virtual name changed, remove shared directory and add it again */
|
|
|
|
rsFiles->removeSharedDirectory(it->filename);
|
|
rsFiles->addSharedDirectory(sdi);
|
|
break;
|
|
}
|
|
if (it->shareflags != sdi.shareflags || it->parent_groups != sdi.parent_groups) {
|
|
/* modifies the flags */
|
|
it->shareflags = sdi.shareflags;
|
|
it->parent_groups = sdi.parent_groups;
|
|
rsFiles->updateShareFlags(*it);
|
|
break;
|
|
}
|
|
|
|
/* nothing changed */
|
|
break;
|
|
}
|
|
}
|
|
|
|
if (found == false) {
|
|
/* not modified, add share directory instead */
|
|
rsFiles->addSharedDirectory(sdi);
|
|
}
|
|
}
|
|
|
|
close();
|
|
}
|