QTfrontend/ui/page/pagedrawmap.h
changeset 6616 f77bb02b669f
parent 6060 fdfc01419815
child 6700 e04da46ee43c
equal deleted inserted replaced
6615:65602f1ef0f8 6616:f77bb02b669f
    23 
    23 
    24 class DrawMapWidget;
    24 class DrawMapWidget;
    25 
    25 
    26 class PageDrawMap : public AbstractPage
    26 class PageDrawMap : public AbstractPage
    27 {
    27 {
    28     Q_OBJECT
    28         Q_OBJECT
    29 
    29 
    30 public:
    30     public:
    31     PageDrawMap(QWidget* parent = 0);
    31         PageDrawMap(QWidget* parent = 0);
    32 
    32 
    33     DrawMapWidget * drawMapWidget;
    33         DrawMapWidget * drawMapWidget;
    34 
    34 
    35 protected:
    35     protected:
    36     QLayout * bodyLayoutDefinition();
    36         QLayout * bodyLayoutDefinition();
    37     void connectSignals();
    37         void connectSignals();
    38 
    38 
    39 private:
    39     private:
    40     QPushButton * pbUndo;
    40         QPushButton * pbUndo;
    41     QPushButton * pbClear;
    41         QPushButton * pbClear;
    42     QPushButton * pbLoad;
    42         QPushButton * pbLoad;
    43     QPushButton * pbSave;
    43         QPushButton * pbSave;
    44 
    44 
    45 private slots:
    45     private slots:
    46     void load();
    46         void load();
    47     void save();
    47         void save();
    48 };
    48 };
    49 
    49 
    50 #endif
    50 #endif
    51 
    51