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>
10 #include <lib/gdi/grc.h>
11 #include <lib/gdi/gfbdc.h>
12 #include <lib/gdi/font.h>
14 #include <lib/gui/ewidget.h>
15 #include <lib/gui/ewidgetdesktop.h>
16 #include <lib/gui/elabel.h>
19 int object_total_remaining;
23 printf("%d items left\n", object_total_remaining);
27 void dumpRegion(const gRegion ®ion)
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)
34 for (int x=0; x<region.extends.right(); ++x)
36 unsigned char res = ' ';
37 for (unsigned int i=0; i < region.rects.size(); ++i)
38 if (region.rects[i].contains(ePoint(x, y)))
40 fprintf(stderr, "%c", res);
42 fprintf(stderr, "\n");
54 init.setRunlevel(eAutoInitNumbers::main);
56 gFBDC::getInstance(my_dc);
67 for (int a=0; a<0x10; ++a)
68 pal[a | 0x10] = (0x111111 * a) | 0xFF;
69 p.setPalette(pal, 0, 256);
71 fontRenderClass::getInstance()->AddFont("/dbox2/cdkroot/share/fonts/arial.ttf", "Arial", 100);
73 p.resetClip(gRegion(eRect(0, 0, 720, 576)));
80 c |= eRect(0, 20, 100, 10);
81 c |= eRect(0, 50, 100, 10);
82 c |= eRect(10, 10, 80, 100);
84 c -= eRect(20, 20, 40, 40);
86 p.setForegroundColor(gColor(3));
87 p.fill(eRect(0, 0, 100, 100));
88 p.fill(eRect(200, 0, 100, 100));
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));
96 p.setBackgroundColor(gColor(1));
98 p.setForegroundColor(gColor(2));
99 p.line(ePoint(0, 0), ePoint(220, 190));
102 p.setBackgroundColor(gColor(0x1f));
103 p.setForegroundColor(gColor(0x10));
105 ePtr<gFont> fnt = new gFont("Arial", 70);
107 p.renderText(eRect(100, 100, 500, 200), "Hello welt!");