2010-01-27 15:24:49 -05:00
|
|
|
/****************************************************************
|
|
|
|
* 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.
|
|
|
|
****************************************************************/
|
|
|
|
|
|
|
|
#ifndef TRANSFERPAGE_H
|
|
|
|
# define TRANSFERPAGE_H
|
|
|
|
|
2013-10-18 17:10:33 -04:00
|
|
|
# include <QWidget>
|
2010-01-27 15:24:49 -05:00
|
|
|
|
2012-02-18 09:55:50 -05:00
|
|
|
#include <retroshare-gui/configpage.h>
|
2010-01-27 15:24:49 -05:00
|
|
|
#include "ui_TransferPage.h"
|
|
|
|
|
|
|
|
class TransferPage: public ConfigPage
|
|
|
|
{
|
2010-02-14 04:06:37 -05:00
|
|
|
Q_OBJECT
|
2010-01-27 15:24:49 -05:00
|
|
|
|
2010-02-14 04:06:37 -05:00
|
|
|
public:
|
2013-10-18 17:10:33 -04:00
|
|
|
TransferPage(QWidget * parent = 0, Qt::WindowFlags flags = 0);
|
2010-02-14 04:06:37 -05:00
|
|
|
~TransferPage() {}
|
2010-01-27 15:24:49 -05:00
|
|
|
|
2010-02-14 04:06:37 -05:00
|
|
|
/** Saves the changes on this page */
|
2011-08-12 10:06:29 -04:00
|
|
|
virtual bool save(QString &/*errmsg*/) { return true ; }
|
2010-02-14 04:06:37 -05:00
|
|
|
/** Loads the settings for this page */
|
2010-03-21 17:07:12 -04:00
|
|
|
virtual void load() {}
|
2010-01-27 15:24:49 -05:00
|
|
|
|
2012-02-18 09:55:50 -05:00
|
|
|
virtual QPixmap iconPixmap() const { return QPixmap(":/images/ktorrent32.png") ; }
|
2015-05-15 09:46:33 -04:00
|
|
|
virtual QString pageName() const { return tr("File transfer") ; }
|
2013-10-09 05:31:40 -04:00
|
|
|
virtual QString helpText() const { return ""; }
|
2012-02-18 09:55:50 -05:00
|
|
|
|
2010-02-14 04:06:37 -05:00
|
|
|
public slots:
|
2010-03-06 18:29:47 -05:00
|
|
|
void updateQueueSize(int) ;
|
2012-01-10 18:07:53 -05:00
|
|
|
void updateMinPrioritized(int) ;
|
2010-03-21 17:07:12 -04:00
|
|
|
void updateDefaultStrategy(int) ;
|
2010-05-21 16:49:48 -04:00
|
|
|
void updateDiskSizeLimit(int) ;
|
2015-05-16 09:59:26 -04:00
|
|
|
void updateMaxTRUpRate(int);
|
2010-01-27 15:24:49 -05:00
|
|
|
|
2010-02-14 04:06:37 -05:00
|
|
|
private:
|
2010-01-27 15:24:49 -05:00
|
|
|
|
2010-02-14 04:06:37 -05:00
|
|
|
Ui::TransferPage ui;
|
2010-01-27 15:24:49 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // !TRANSFERPAGE_H
|
|
|
|
|