- License texts modified to GPLv2
[qtrapids] / src / gui / PreferencesDialog.h
1 /***************************************************************************
2  *   Copyright (C) 2010 by Ixonos Plc   *
3  *                                                                         *
4  *   This program is free software; you can redistribute it and/or modify  *
5  *   it under the terms of the GNU General Public License as published by  *
6  *   the Free Software Foundation; version 2 of the License.               *
7  *                                                                         *
8  *   This program is distributed in the hope that it will be useful,       *
9  *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
10  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
11  *   GNU General Public License for more details.                          *
12  *                                                                         *
13  *   You should have received a copy of the GNU General Public License     *
14  *   along with this program; if not, write to the                         *
15  *   Free Software Foundation, Inc.,                                       *
16  *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
17  ***************************************************************************/
18  ***************************************************************************/
19 #ifndef PREFERENCESDIALOG_H
20 #define PREFERENCESDIALOG_H
21
22 #include <QDialog>
23 #include <QSettings>
24
25
26 class QAbstractButton;
27 class QLineEdit;
28 class QSpinBox;
29 class QDialogButtonBox;
30
31 namespace qtrapids {
32         class QBittorrentSession;
33 }
34
35
36 /**
37         @author Lassi Väätämöinen <lassi.vaatamoinen@ixonos.com>
38 */
39 class PreferencesDialog : public QDialog
40 {
41
42         Q_OBJECT
43
44 public:
45         PreferencesDialog(QWidget* parent = 0, Qt::WindowFlags f = 0, qtrapids::QBittorrentSession *btSession = 0);
46
47         ~PreferencesDialog();
48
49 private slots:
50         void on_browseDirButtonClicked();
51         void on_buttonClicked(QAbstractButton* button);
52         void on_downloadDirectorySelected(const QString& directory);
53
54 private:
55         QLineEdit *dirLineEdit_;
56         QDialogButtonBox *dialogButtons_;
57         QSpinBox *uploadRateSpinBox_, *downloadRateSpinBox_;
58         
59         qtrapids::QBittorrentSession *const btSession_;
60         QSettings settings_;
61
62 private:
63         // Private functions:
64         void WriteSettings();
65         void ReadSettings();
66 };
67
68 #endif