-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy patheb_options.h
100 lines (82 loc) · 1.76 KB
/
eb_options.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
#ifndef EB_OPTIONS_H
#define EB_OPTIONS_H
#include <QString>
#include <QSettings>
#include <QDir>
#include <QFile>
#include <QSize>
#include "eb_common.h"
#ifdef __cplusplus
extern "C"{
#endif
#include <stdio.h>
#include <unistd.h>
#include <errno.h>
#include <sys/types.h>
#include <dirent.h>
#include <string.h>
#include <fcntl.h>
#include <linux/fb.h>
//#include <sys/mman.h>
#include <sys/ioctl.h>
#include <time.h>
#include <sys/time.h>
#ifdef __cplusplus
}
#endif
class EbOptions
{
public:
EbOptions();
~EbOptions();
QSize fixedSize();
QSize lcdSize();
QSize cameraViewSize();
TouchType getTouchType();
QString getBacklightNode();
QString getSeatRoot();
QString getProductInfo();
QString getDeveloperInfo();
QString getGYOSInfo();
QString getDistroInfo();
QString getKernelInfo();
QString getBootloaderInfo();
QString getGCCInfo();
QString getModelInfo();
QString getRootfsInfo();
QString getAppVersion();
private:
int getScreenInfo(struct fb_var_screeninfo *vinfo);
QString invokeShell(const char * cmd);
private:
QString product;
QString developer;
QString vendor;
QString model;
QString processor;
QString OS;
QString baseBoard;
QString bootloader;
QString gcc;
QString binutils;
QString kernel;
QString issue;
QString distro;
QString qt;
QString rootfs;
QString gyos;
QString data;
uint lcdWidth;
uint lcdHeight;
uint fixedWidth;
uint fixedHeight;
uint cameraViewWidth;
uint cameraViewHeight;
TouchType touchType; /* should be enum */
QString backlightNode;
QString serialPortNode;
QString videoInputNode;
bool hasEeprom;
QString seatRoot; /* path */
};
#endif // EB_OPTIONS_H