1 #ifndef REAR_CAMERA_SETTING_H 2 #define REAR_CAMERA_SETTING_H 3 4 #include <QDialog> 5 #include <QDebug> 6 namespace Ui { 7 class Rear_Camera_Setting; 8 } 9 10 class Rear_Camera_Setting : public QDialog 11 { 12 Q_OBJECT 13 14 public: 15 explicit Rear_Camera_Setting(QWidget *parent = 0); 16 ~Rear_Camera_Setting(); 17 public slots: 18 void on_returnButton_clicked(bool); 19 void on_sureButton_clicked(bool); 20 void on_upperButton_clicked(bool); 21 void on_downButton_clicked(bool); 22 23 private: 24 Ui::Rear_Camera_Setting *ui; 25 void FormInCenter(); 26 }; 27 28 #endif // REAR_CAMERA_SETTING_H 29