xref: /OK3568_Linux_fs/app/forlinx/flapp/src/plugins/allwinner/camera/CameraUI/src/front_camera_setting.h (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1 #ifndef FRONT_CAMERA_SETTING_H
2 #define FRONT_CAMERA_SETTING_H
3 
4 #include <QDialog>
5 #include <QDebug>
6 namespace Ui {
7 class Front_camera_setting;
8 }
9 
10 class Front_camera_setting : public QDialog
11 {
12     Q_OBJECT
13 
14 public:
15     explicit Front_camera_setting(QWidget *parent = 0);
16     ~Front_camera_setting();
17 public slots:
18     void on_returnButton_clicked();
19     void on_sureButton_clicked();
20     void on_upperButton_clicked();
21     void on_downButton_clicked();
22 signals:
23     void unHideSettings();
24 private:
25     Ui::Front_camera_setting *ui;
26     void FormInCenter();
27 };
28 
29 #endif // FRONT_CAMERA_SETTING_H
30