xref: /OK3568_Linux_fs/app/forlinx/forlinx_qt/backlight/mainwindow.h (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1 #ifndef MAINWINDOW_H
2 #define MAINWINDOW_H
3 
4 #include <QMainWindow>
5 
6 namespace Ui {
7 class MainWindow;
8 }
9 
10 class MainWindow : public QMainWindow
11 {
12     Q_OBJECT
13 
14 public:
15     explicit MainWindow(QWidget *parent = 0);
16     ~MainWindow();
17 
18 private:
19     Ui::MainWindow *ui;
20     int fd_edp;
21     int fd_dsi;
22 	int fd_lvds;
23 
24 private slots:
25     void sliderchanged(int v);
26 
27 
28 };
29 
30 #endif // MAINWINDOW_H
31