QTfrontend/ui/page/pagedrawmap.h
changeset 9551 61f160dfd0f1
parent 9080 9b42757d7e71
child 9998 736015b847e3
equal deleted inserted replaced
9549:ac5c1f691ce2 9551:61f160dfd0f1
    20 #define PAGE_DRAWMAP_H
    20 #define PAGE_DRAWMAP_H
    21 
    21 
    22 #include "AbstractPage.h"
    22 #include "AbstractPage.h"
    23 
    23 
    24 class DrawMapWidget;
    24 class DrawMapWidget;
       
    25 class QRadioButton;
    25 
    26 
    26 class PageDrawMap : public AbstractPage
    27 class PageDrawMap : public AbstractPage
    27 {
    28 {
    28         Q_OBJECT
    29         Q_OBJECT
    29 
    30 
    40         QPushButton * pbUndo;
    41         QPushButton * pbUndo;
    41         QPushButton * pbClear;
    42         QPushButton * pbClear;
    42         QPushButton * pbLoad;
    43         QPushButton * pbLoad;
    43         QPushButton * pbSave;
    44         QPushButton * pbSave;
    44         QCheckBox * cbEraser;
    45         QCheckBox * cbEraser;
       
    46         QRadioButton * rbPolyline;
       
    47         QRadioButton * rbRectangle;
       
    48         QRadioButton * rbEllipse;
    45 
    49 
    46     private slots:
    50     private slots:
    47         void load();
    51         void load();
    48         void save();
    52         void save();
       
    53         void pathTypeSwitched(bool b);
    49 };
    54 };
    50 
    55 
    51 #endif
    56 #endif
    52 
    57