dialogdrawroad.h 441 B

123456789101112131415161718192021222324252627282930
  1. #ifndef DIALOGDRAWROAD_H
  2. #define DIALOGDRAWROAD_H
  3. #include <QDialog>
  4. namespace Ui {
  5. class DialogDrawRoad;
  6. }
  7. class DialogDrawRoad : public QDialog
  8. {
  9. Q_OBJECT
  10. public:
  11. explicit DialogDrawRoad(QWidget *parent = nullptr);
  12. ~DialogDrawRoad();
  13. private slots:
  14. void on_comboBox_Type_currentIndexChanged(int index);
  15. void onCurrentPos(double x,double y);
  16. private:
  17. Ui::DialogDrawRoad *ui;
  18. };
  19. #endif // DIALOGDRAWROAD_H