tools/drawMapTest/mainwindow.h
branchui-scaling
changeset 15283 c4fd2813b127
parent 13390 0135e64c6c66
parent 15279 7ab5cf405686
child 15663 d92eeb468dad
equal deleted inserted replaced
13390:0135e64c6c66 15283:c4fd2813b127
     1 #ifndef MAINWINDOW_H
       
     2 #define MAINWINDOW_H
       
     3 
       
     4 #include <QMainWindow>
       
     5 
       
     6 namespace Ui {
       
     7     class MainWindow;
       
     8 }
       
     9 
       
    10 class DrawMapScene;
       
    11 
       
    12 class MainWindow : public QMainWindow {
       
    13     Q_OBJECT
       
    14 public:
       
    15     MainWindow(QWidget *parent = 0);
       
    16     ~MainWindow();
       
    17 
       
    18 protected:
       
    19     void changeEvent(QEvent *e);
       
    20 
       
    21 private:
       
    22     Ui::MainWindow *ui;
       
    23     DrawMapScene * scene;
       
    24 
       
    25 private slots:
       
    26     void on_pbLoad_clicked();
       
    27     void on_pbSave_clicked();
       
    28     void scene_pathChanged();
       
    29 };
       
    30 
       
    31 #endif // MAINWINDOW_H