Initial commit for the QML client:
[qtrapids] / src / client / 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 #ifndef PREFERENCESDIALOG_H
19 #define PREFERENCESDIALOG_H
20
21 #include <QDialog>
22 #include <QSettings>
23
24
25 class QAbstractButton;
26 class QLineEdit;
27 class QSpinBox;
28 class QDialogButtonBox;
29
30 class QtRapidsServer;
31
32
33 /**
34         @author Lassi Väätämöinen <lassi.vaatamoinen@ixonos.com>
35 */
36 class PreferencesDialog : public QDialog
37 {
38
39         Q_OBJECT
40
41 public:
42         PreferencesDialog(QWidget* parent = 0, Qt::WindowFlags f = 0, QtRapidsServer *server = 0);
43
44         ~PreferencesDialog();
45
46 private slots:
47         void on_browseDirButtonClicked();
48         void on_buttonClicked(QAbstractButton* button);
49         void on_downloadDirectorySelected(QString directory);
50
51 private:
52         QLineEdit *dirLineEdit_;
53         QDialogButtonBox *dialogButtons_;
54         QSpinBox *uploadRateSpinBox_, *downloadRateSpinBox_;
55         
56         QtRapidsServer *server_;
57
58         QSettings settings_;
59
60 private:
61         // Private functions:
62         void WriteSettings();
63         void ReadSettings();
64 };
65
66 #endif