summaryrefslogtreecommitdiffstats
path: root/apps/ktorrent/pref.h
diff options
context:
space:
mode:
Diffstat (limited to 'apps/ktorrent/pref.h')
-rw-r--r--apps/ktorrent/pref.h121
1 files changed, 121 insertions, 0 deletions
diff --git a/apps/ktorrent/pref.h b/apps/ktorrent/pref.h
new file mode 100644
index 0000000..f8852cd
--- /dev/null
+++ b/apps/ktorrent/pref.h
@@ -0,0 +1,121 @@
+/***************************************************************************
+ * Copyright (C) 2005 by Joris Guisson *
+ * joris.guisson@gmail.com *
+ * *
+ * 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 _KTORRENTPREF_H_
+#define _KTORRENTPREF_H_
+
+#include <kdialogbase.h>
+#include <qframe.h>
+#include <qmap.h>
+#include <interfaces/prefpageinterface.h>
+
+
+class DownloadPref;
+class GeneralPref;
+class AdvancedPref;
+class KTorrent;
+class QListViewItem;
+
+
+class DownloadPrefPage : public kt::PrefPageInterface
+{
+ DownloadPref* dp;
+public:
+ DownloadPrefPage();
+ virtual ~DownloadPrefPage();
+
+ virtual bool apply();
+ virtual void updateData();
+ virtual void createWidget(QWidget* parent);
+ virtual void deleteWidget();
+};
+
+class GeneralPrefPage : public QObject,public kt::PrefPageInterface
+{
+ Q_OBJECT
+ GeneralPref* gp;
+public:
+ GeneralPrefPage();
+ virtual ~GeneralPrefPage();
+
+ virtual bool apply();
+ virtual void updateData();
+ virtual void createWidget(QWidget* parent);
+ virtual void deleteWidget();
+
+private slots:
+ void autosaveChecked(bool on);
+ void customIPChecked(bool on);
+ void dhtChecked(bool on);
+ void useEncryptionChecked(bool on);
+};
+
+class AdvancedPrefPage : public QObject,public kt::PrefPageInterface
+{
+ Q_OBJECT
+
+ AdvancedPref* ap;
+public:
+ AdvancedPrefPage();
+ virtual ~AdvancedPrefPage();
+
+ virtual bool apply();
+ virtual void updateData();
+ virtual void createWidget(QWidget* parent);
+ virtual void deleteWidget();
+
+private slots:
+ void noDataCheckChecked(bool on);
+ void autoRecheckChecked(bool on);
+ void doNotUseKDEProxyChecked(bool on);
+ void preallocDisabledChecked(bool on);
+};
+
+
+class KTorrentPreferences : public KDialogBase
+{
+ Q_OBJECT
+public:
+ KTorrentPreferences(KTorrent & ktor);
+ virtual ~KTorrentPreferences();
+
+ void updateData();
+ void addPrefPage(kt::PrefPageInterface* prefInterface);
+ void removePrefPage(kt::PrefPageInterface* prefInterface);
+private:
+ virtual void slotOk();
+ virtual void slotApply();
+
+
+private:
+ KTorrent & ktor;
+ DownloadPrefPage* page_one;
+ GeneralPrefPage* page_two;
+ AdvancedPrefPage* page_three;
+ QMap<kt::PrefPageInterface*,QFrame*> pages;
+ bool validation_err;
+};
+
+
+
+
+
+#endif // _KTORRENTPREF_H_