2009-04-09 18:55:47 +00:00
|
|
|
/*
|
2014-01-19 01:09:44 +00:00
|
|
|
* This file Copyright (C) 2009-2014 Mnemosyne LLC
|
2009-04-09 18:55:47 +00:00
|
|
|
*
|
2014-01-21 03:10:30 +00:00
|
|
|
* It may be used under the GNU GPL versions 2 or 3
|
2014-01-19 01:09:44 +00:00
|
|
|
* or any future license endorsed by Mnemosyne LLC.
|
2009-04-09 18:55:47 +00:00
|
|
|
*
|
2009-05-31 19:33:48 +00:00
|
|
|
* $Id$
|
2009-04-09 18:55:47 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef PREFS_DIALOG_H
|
|
|
|
#define PREFS_DIALOG_H
|
|
|
|
|
|
|
|
#include <QDialog>
|
2015-01-25 15:47:03 +00:00
|
|
|
#include <QMap>
|
2009-04-09 18:55:47 +00:00
|
|
|
#include <QSet>
|
2015-01-25 15:47:03 +00:00
|
|
|
|
2009-04-09 18:55:47 +00:00
|
|
|
#include "prefs.h"
|
2015-01-25 15:47:03 +00:00
|
|
|
#include "ui_prefs-dialog.h"
|
2009-04-09 18:55:47 +00:00
|
|
|
|
|
|
|
class QAbstractButton;
|
|
|
|
class QCheckBox;
|
|
|
|
class QDoubleSpinBox;
|
2013-09-14 22:45:04 +00:00
|
|
|
class QHttp;
|
2009-04-09 18:55:47 +00:00
|
|
|
class QLabel;
|
|
|
|
class QLineEdit;
|
2013-09-14 22:45:04 +00:00
|
|
|
class QMessageBox;
|
|
|
|
class QPushButton;
|
|
|
|
class QSpinBox;
|
|
|
|
class QString;
|
2009-04-09 18:55:47 +00:00
|
|
|
class QTime;
|
|
|
|
class QTimeEdit;
|
2013-09-14 22:45:04 +00:00
|
|
|
class QVBoxLayout;
|
2009-04-09 18:55:47 +00:00
|
|
|
class QWidget;
|
|
|
|
|
2013-02-09 04:05:03 +00:00
|
|
|
class FreespaceLabel;
|
2009-04-09 18:55:47 +00:00
|
|
|
class Prefs;
|
|
|
|
class Session;
|
|
|
|
|
|
|
|
class PrefsDialog: public QDialog
|
|
|
|
{
|
2013-09-14 22:45:04 +00:00
|
|
|
Q_OBJECT
|
2009-04-09 18:55:47 +00:00
|
|
|
|
2013-09-14 22:45:04 +00:00
|
|
|
private slots:
|
|
|
|
void checkBoxToggled (bool checked);
|
|
|
|
void spinBoxEditingFinished ();
|
|
|
|
void timeEditingFinished ();
|
|
|
|
void lineEditingFinished ();
|
2015-01-25 19:55:05 +00:00
|
|
|
void pathChanged (const QString& path);
|
2013-09-14 22:45:04 +00:00
|
|
|
void refreshPref (int key);
|
|
|
|
void encryptionEdited (int);
|
|
|
|
void altSpeedDaysEdited (int);
|
|
|
|
void sessionUpdated ();
|
|
|
|
void onPortTested (bool);
|
|
|
|
void onPortTest ();
|
2014-12-22 03:06:09 +00:00
|
|
|
void onIdleLimitChanged ();
|
2015-01-11 21:10:46 +00:00
|
|
|
void onQueueStalledMinutesChanged ();
|
2009-04-09 18:55:47 +00:00
|
|
|
|
2013-09-14 22:45:04 +00:00
|
|
|
void onUpdateBlocklistClicked ();
|
|
|
|
void onUpdateBlocklistCancelled ();
|
|
|
|
void onBlocklistDialogDestroyed (QObject *);
|
|
|
|
void onBlocklistUpdated (int n);
|
2009-04-09 18:55:47 +00:00
|
|
|
|
2013-09-14 22:45:04 +00:00
|
|
|
private:
|
2015-01-25 15:47:03 +00:00
|
|
|
bool updateWidgetValue (QWidget * widget, int prefKey);
|
|
|
|
void linkWidgetToPref (QWidget * widget, int prefKey);
|
2013-09-14 22:45:04 +00:00
|
|
|
void updateBlocklistLabel ();
|
2009-04-09 18:55:47 +00:00
|
|
|
|
2013-09-14 22:45:04 +00:00
|
|
|
public:
|
|
|
|
PrefsDialog (Session&, Prefs&, QWidget * parent = 0);
|
|
|
|
~PrefsDialog ();
|
2009-04-09 18:55:47 +00:00
|
|
|
|
2013-09-14 22:45:04 +00:00
|
|
|
private:
|
|
|
|
void setPref (int key, const QVariant& v);
|
2015-01-25 15:47:03 +00:00
|
|
|
|
|
|
|
void initDownloadingTab ();
|
|
|
|
void initSeedingTab ();
|
|
|
|
void initSpeedTab ();
|
|
|
|
void initPrivacyTab ();
|
|
|
|
void initNetworkTab ();
|
|
|
|
void initDesktopTab ();
|
|
|
|
void initRemoteTab ();
|
2009-04-09 18:55:47 +00:00
|
|
|
|
2013-09-14 22:45:04 +00:00
|
|
|
private:
|
|
|
|
typedef QMap<int,QWidget*> key2widget_t;
|
|
|
|
key2widget_t myWidgets;
|
|
|
|
const bool myIsServer;
|
|
|
|
Session& mySession;
|
|
|
|
Prefs& myPrefs;
|
|
|
|
QWidgetList myWebWidgets;
|
|
|
|
QWidgetList myWebAuthWidgets;
|
|
|
|
QWidgetList myWebWhitelistWidgets;
|
|
|
|
QWidgetList myProxyWidgets;
|
|
|
|
QWidgetList myProxyAuthWidgets;
|
|
|
|
QWidgetList mySchedWidgets;
|
|
|
|
QWidgetList myBlockWidgets;
|
|
|
|
QWidgetList myUnsupportedWhenRemote;
|
2015-01-25 15:47:03 +00:00
|
|
|
Ui::PrefsDialog ui;
|
2009-04-09 18:55:47 +00:00
|
|
|
|
2013-09-14 22:45:04 +00:00
|
|
|
int myBlocklistHttpTag;
|
|
|
|
QHttp * myBlocklistHttp;
|
|
|
|
QMessageBox * myBlocklistDialog;
|
2009-04-09 18:55:47 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|