123456789101112131415161718192021222324252627282930 |
- #ifndef DIALOGDRAWROAD_H
- #define DIALOGDRAWROAD_H
- #include <QDialog>
- namespace Ui {
- class DialogDrawRoad;
- }
- class DialogDrawRoad : public QDialog
- {
- Q_OBJECT
- public:
- explicit DialogDrawRoad(QWidget *parent = nullptr);
- ~DialogDrawRoad();
- private slots:
- void on_comboBox_Type_currentIndexChanged(int index);
- void onCurrentPos(double x,double y);
- private:
- Ui::DialogDrawRoad *ui;
- };
- #endif // DIALOGDRAWROAD_H
|