Merge branch 'master' of /home/tmbinc/enigma2-git
[vuplus_dvbapp] / main / enigma-gdi.cpp
1 #include <stdio.h>
2 #include <libsig_comp.h>
3 #include <lib/base/ebase.h>
4 #include <lib/base/eerror.h>
5 #include <lib/base/init.h>
6 #include <lib/base/init_num.h>
7
8 #include <unistd.h>
9
10 #include <lib/gdi/grc.h>
11 #include <lib/gdi/gfbdc.h>
12 #include <lib/gdi/font.h> 
13
14 #include <lib/gui/ewidget.h>
15 #include <lib/gui/ewidgetdesktop.h>
16 #include <lib/gui/elabel.h>
17
18 #ifdef OBJECT_DEBUG
19 int object_total_remaining;
20
21 void object_dump()
22 {
23         printf("%d items left\n", object_total_remaining);
24 }
25 #endif
26
27 void dumpRegion(const gRegion &region)
28 {
29         fprintf(stderr, "extends: %d %d -> %d %d\n", 
30                 region.extends.left(), region.extends.top(),
31                 region.extends.right(), region.extends.bottom());
32         for (int y=0; y<region.extends.bottom(); ++y)
33         {
34                 for (int x=0; x<region.extends.right(); ++x)
35                 {
36                         unsigned char res = ' ';
37                         for (unsigned int i=0; i < region.rects.size(); ++i)
38                                 if (region.rects[i].contains(ePoint(x, y)))
39                                         res = '0' + i;
40                         fprintf(stderr, "%c", res);
41                 }
42                 fprintf(stderr, "\n");
43         }
44 }
45
46 int main()
47 {
48 #ifdef OBJECT_DEBUG
49         atexit(object_dump);
50 #endif
51
52         eInit init;
53
54         init.setRunlevel(eAutoInitNumbers::main);
55         ePtr<gFBDC> my_dc;
56         gFBDC::getInstance(my_dc);
57 #if 1
58
59         gPainter p(my_dc);
60         
61         gRGB pal[256];
62         pal[0] = 0;
63         pal[1] = 0xff00ff;
64         pal[2] = 0xffFFff;
65         pal[3] = 0x00ff00;
66         
67         for (int a=0; a<0x10; ++a)
68                 pal[a | 0x10] = (0x111111 * a) | 0xFF;
69         p.setPalette(pal, 0, 256);
70
71         fontRenderClass::getInstance()->AddFont(FONTDIR "/arial.ttf", "Regular", 100);
72
73         p.resetClip(gRegion(eRect(0, 0, 720, 576)));
74         
75          
76         gRegion c;
77         eDebug("0");
78         int i;
79         
80         c |= eRect(0, 20, 100, 10);
81         c |= eRect(0, 50, 100, 10);
82         c |= eRect(10, 10, 80, 100);
83         
84         c -= eRect(20, 20, 40, 40);
85         
86         p.setForegroundColor(gColor(3));
87         p.fill(eRect(0, 0, 100, 100));
88         p.fill(eRect(200, 0, 100, 100));
89         
90         for (int a=0; a<c.rects.size(); ++a)
91                 eDebug("%d %d -> %d %d", c.rects[a].left(), c.rects[a].top(), c.rects[a].right(), c.rects[a].bottom());
92         eDebug("extends: %d %d %d %d", c.extends.left(), c.extends.top(), c.extends.right(), c.extends.bottom());
93         p.setOffset(ePoint(100, 100));
94         p.clip(c);
95
96         p.setBackgroundColor(gColor(1));
97         p.clear();
98         p.setForegroundColor(gColor(2));
99         p.line(ePoint(0, 0), ePoint(220, 190));
100         p.clippop();
101
102         p.setBackgroundColor(gColor(0x1f));
103         p.setForegroundColor(gColor(0x10));
104
105         ePtr<gFont> fnt = new gFont("Regular", 70);
106         p.setFont(fnt);
107         p.renderText(eRect(100, 100, 500, 200), "Hello welt!");
108         
109         sleep(1);
110         return 0;
111 }