1 #ifndef FRONT_ADAS_SETTING_H 2 #define FRONT_ADAS_SETTING_H 3 4 #include <QDialog> 5 #include <QDebug> 6 namespace Ui { 7 class front_ADAS_setting; 8 } 9 10 class front_ADAS_setting : public QDialog 11 { 12 Q_OBJECT 13 14 public: 15 explicit front_ADAS_setting(QWidget *parent = 0); 16 ~front_ADAS_setting(); 17 public slots: 18 void on_nextButton_clicked(); 19 void on_returnButton_clicked(); 20 void change_line_value(int value); 21 signals: 22 void unHideSettings(); 23 private: 24 Ui::front_ADAS_setting *ui; 25 int horizontal_values,vertical_values; 26 int model; 27 void FormInCenter(); 28 }; 29 30 #endif // FRONT_ADAS_SETTING_H 31