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