Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028 #ifndef CITYLOADER_H
00029 #define CITYLOADER_H
00030
00031 #include <QGpGuiTools.h>
00032 #include <GeopsyCore.h>
00033
00034 #include "ui_CityLoader.h"
00035 #include "GeopsyGuiDLLExport.h"
00036
00037 namespace GeopsyGui {
00038
00039 class GEOPSYGUI_EXPORT CityLoader : public Dialog, public Ui::CityLoader
00040 {
00041 Q_OBJECT
00042 public:
00043 CityLoader(QWidget * parent=0);
00044 ~CityLoader();
00045 public slots:
00046 void scan();
00047 void on_closeBut_clicked();
00048 void on_loadBut_clicked();
00049 void on_mountBut_clicked();
00050 void on_unmountBut_clicked();
00051 void on_clearBut_clicked();
00052 void on_pathBrowse_clicked();
00053 private slots:
00054 void resetSignalView();
00055 private:
00056 CityScanner * _scanner;
00057 bool mountUnmount(const char * cmd);
00058 bool isAnySelected();
00059 };
00060
00061 }
00062
00063 #endif // CITYLOADER_H