Merge branch 'master' of https://vcs.maemo.org/git/gpssportsniffer
[gpssportsniffer] / settingsWindow.h
1 /****************************************************************************
2 **
3 **  Copyright (C) 2011  Tito Eritja Real <jtitoo@gmail.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 3 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, see <http://www.gnu.org/licenses/>.
17 **
18 ****************************************************************************/
19
20 #ifndef SETTINGSWINDOW_H
21 #define SETTINGSWINDOW_H
22
23 #include "settings.h"
24 #include <QDialog>
25 #include <QDir>
26
27 class WindowMap;
28
29 namespace Ui {
30     class SettingsWindow;
31 }
32
33 class SettingsWindow:public QDialog
34 {
35     Q_OBJECT
36
37 public:
38     explicit SettingsWindow(WindowMap *parent = 0,Settings *sett=0, Log *log=0);
39     virtual ~SettingsWindow();
40     Settings *activitySettings;
41     WindowMap *activityMap;
42
43 private:
44     void closeEvent(QCloseEvent *event);
45     void showEvent(QShowEvent *);
46
47     QString getExtension();
48     void accept();
49     int intervalFromCombo(int index);
50     QDir* currentDir;
51     Log *log;
52     Ui::SettingsWindow *ui;
53     QString trackName;
54
55 private slots:
56     void setActivityType();
57     void browse();
58     void setColor();
59     void changeEditText();
60     void changeTCXTypeFile(bool);
61 };
62
63 #endif // SETTINGSWINDOW_H