merge some code with enigma code
[enigma2.git] / lib / gdi / fb.h
1 #ifndef __FB_H
2 #define __FB_H
3
4 #include <linux/fb.h>
5 #include <lib/base/eerror.h>
6
7 class fbClass
8 {
9         int fd;
10         unsigned int xRes, yRes, stride, bpp;
11         int available;
12         struct fb_var_screeninfo screeninfo, oldscreen;
13         fb_cmap cmap;
14         __u16 red[256], green[256], blue[256], trans[256];
15         static fbClass *instance;
16         int locked;
17 public:
18         unsigned char *lfb;
19         int showConsole(int state);
20         int SetMode(unsigned int xRes, unsigned int yRes, unsigned int bpp);
21         int Available() { return available; }
22         unsigned int Stride() { return stride; }
23         fb_cmap *CMAP() { return &cmap; }
24
25         fbClass(const char *fb="/dev/fb/0");
26         ~fbClass();
27         
28         static fbClass *getInstance();
29
30                                 // low level gfx stuff
31         int PutCMAP();
32
33                                 // gfx stuff (colors are 8bit!)
34         void Box(int x, int y, int width, int height, int color, int backcolor=0);
35         void NBox(int x, int y, int width, int height, int color);
36         void VLine(int x, int y, int sy, int color);
37         
38         int lock();
39         void unlock();
40         int islocked() { return locked; }
41 };
42
43 #endif