mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-10-01 02:35:48 -04:00
c3c6480f4b
removed usage of "new QMouseEvent", it was a memory leak cleaned some includes git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@2910 b45a01b8-16f6-495d-af2f-9b41ad6348cc
120 lines
3.4 KiB
C++
120 lines
3.4 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 "rsiface/rsfiles.h"
|
|
|
|
#include <QContextMenuEvent>
|
|
|
|
#include <QMessageBox>
|
|
#include <QComboBox>
|
|
|
|
/** Default constructor */
|
|
ShareDialog::ShareDialog(QWidget *parent, Qt::WFlags flags)
|
|
: QDialog(parent, flags)
|
|
{
|
|
/* Invoke Qt Designer generated QObject setup routine */
|
|
ui.setupUi(this);
|
|
|
|
connect(ui.browseButton, SIGNAL(clicked( bool ) ), this , SLOT( browseDirectory() ) );
|
|
connect(ui.okButton, SIGNAL(clicked( bool ) ), this , SLOT( addDirectory() ) );
|
|
connect(ui.closeButton, SIGNAL(clicked()), this, SLOT(closedialog()));
|
|
|
|
load();
|
|
|
|
|
|
}
|
|
|
|
void ShareDialog::load()
|
|
{
|
|
|
|
ui.localpath_lineEdit->clear();
|
|
ui.anonymouscheckBox->setChecked(false);
|
|
ui.friendscheckBox->setChecked(false);
|
|
}
|
|
|
|
void ShareDialog::browseDirectory()
|
|
{
|
|
|
|
/* select a dir*/
|
|
QString qdir = QFileDialog::getExistingDirectory(this, tr("Select A Folder To Share"), "", QFileDialog::DontUseNativeDialog | QFileDialog::ShowDirsOnly | QFileDialog::DontResolveSymlinks);
|
|
|
|
/* add it to the server */
|
|
currentDir = qdir.toStdString();
|
|
if (currentDir != "")
|
|
{
|
|
ui.localpath_lineEdit->setText(QString::fromStdString(currentDir));
|
|
}
|
|
}
|
|
|
|
void ShareDialog::addDirectory()
|
|
{
|
|
|
|
SharedDirInfo sdi ;
|
|
sdi.filename = currentDir ;
|
|
|
|
if( ui.anonymouscheckBox->isChecked() && ui.friendscheckBox->isChecked())
|
|
{
|
|
sdi.shareflags = RS_FILE_HINTS_NETWORK_WIDE | RS_FILE_HINTS_BROWSABLE ;
|
|
}
|
|
if ( ui.anonymouscheckBox->isChecked() && !ui.friendscheckBox->isChecked() )
|
|
{
|
|
sdi.shareflags = RS_FILE_HINTS_NETWORK_WIDE;
|
|
}
|
|
if ( ui.friendscheckBox->isChecked() && !ui.anonymouscheckBox->isChecked())
|
|
{
|
|
sdi.shareflags = RS_FILE_HINTS_BROWSABLE ;
|
|
}
|
|
|
|
rsFiles->addSharedDirectory(sdi);
|
|
|
|
//messageBoxOk(tr("Shared Directory Added!"));
|
|
load();
|
|
close();
|
|
|
|
}
|
|
|
|
void ShareDialog::showEvent(QShowEvent *event)
|
|
{
|
|
if (!event->spontaneous())
|
|
{
|
|
load();
|
|
}
|
|
}
|
|
|
|
void ShareDialog::closedialog()
|
|
{
|
|
ui.localpath_lineEdit->clear();
|
|
ui.anonymouscheckBox->setChecked(false);
|
|
ui.friendscheckBox->setChecked(false);
|
|
|
|
close();
|
|
}
|
|
|
|
bool ShareDialog::messageBoxOk(QString msg)
|
|
{
|
|
QMessageBox mb("Share Manager InfoBox!",msg,QMessageBox::Information,QMessageBox::Ok,0,0);
|
|
mb.setButtonText( QMessageBox::Ok, "OK" );
|
|
mb.setWindowIcon(QIcon(QString::fromUtf8(":/images/rstray3.png")));
|
|
mb.exec();
|
|
return true;
|
|
}
|