xref: /OK3568_Linux_fs/app/forlinx/flapp/src/plugins/allwinner/camera/CameraUI/src/reverseline.h (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1 #ifndef REVERSELINE_H
2 #define REVERSELINE_H
3 
4 #include <QDialog>
5 #include <QDebug>
6 #include <QVBoxLayout>
7 #include "mylabel.h"
8 #include "reverseline_setting.h"
9 namespace Ui {
10 class ReverseLine;
11 }
12 
13 class ReverseLine : public QDialog
14 {
15     Q_OBJECT
16 
17 public:
18     explicit ReverseLine(QWidget *parent = 0);
19     ~ReverseLine();
20 public slots:
21     void on_pictureLabel2_clicked();
22     void on_pictureLabel1_clicked();
23 private:
24     Ui::ReverseLine *ui;
25     myLabel *reverse_setting_label;
26     myLabel *rearVision_setting_label;
27     ReverseLine_Setting* reverseline_setting;
28 
29 };
30 
31 #endif // REVERSELINE_H
32