FGx  1
importairportsdialog.h
1 // -=-=-=-=-=-=-=-=-=-=-=-=-=-=--=-=-=-=-=-=-=-=-=-=-=-=-=-=--=-=-=-=-=-=-
2 // FGx FlightGear Launcher // importairportsdialog.h
3 // -=-=-=-=-=-=-=-=-=-=-=-=-=-=--=-=-=-=-=-=-=-=-=-=-=-=-=-=--=-=-=-=-=-=-
4 // (c) 2010-2012
5 // Yves Sablonier, Pete Morgan
6 // Geoff McLane
7 // GNU GPLv2, see main.cpp and shipped licence.txt for further information
8 
9 #ifndef IMPORTAIRPORTSWIDGET_H
10 #define IMPORTAIRPORTSWIDGET_H
11 
12 
13 #include <QtGui/QDialog>
14 #include <QtGui/QRadioButton>
15 #include <QtGui/QCheckBox>
16 #include <QtGui/QPushButton>
17 #include <QtGui/QProgressDialog>
18 
19 #include "xobjects/xsettings.h"
20 
21 
22 class ImportAirportsDialog : public QDialog
23 {
24 Q_OBJECT
25 public:
26  explicit ImportAirportsDialog(QWidget *parent = 0);
27 
28  QPushButton *buttImport;
29  QPushButton *buttCancelImport;
30 
31 signals:
32 
33 public slots:
34 
35 };
36 
37 #endif // IMPORTAIRPORTSWIDGET_H
ImportAirportsDialog
Definition: importairportsdialog.h:22