Added classes.
[speedfreak] / Client / routesavedialog.h
1 /*
2  * Route save dialog class
3  *
4  * @author     Toni Jussila <toni.jussila@fudeco.com>
5  * @copyright  (c) 2010 Speed Freak team
6  * @license    http://opensource.org/licenses/gpl-license.php GNU Public License
7  */
8
9 #ifndef ROUTESAVEDIALOG_H
10 #define ROUTESAVEDIALOG_H
11
12 #include <QDialog>
13 #include <QPixmap>
14 #include <QTimer>
15
16 namespace Ui {
17     class RouteSaveDialog;
18 }
19
20 class RouteSaveDialog : public QDialog {
21     Q_OBJECT
22 public:
23     RouteSaveDialog(QWidget *parent = 0);
24     ~RouteSaveDialog();
25
26 protected:
27     void changeEvent(QEvent *e);
28
29 private:
30     Ui::RouteSaveDialog *ui;
31     QTimer *timerSatellitePicture;
32
33 private slots:
34     void on_buttonRouteStartStop_clicked();
35     void timerSatellitePictureTimeout();
36 };
37
38 #endif // ROUTESAVEDIALOG_H