diff options
| author | Felix Domke <tmbinc@elitedvb.net> | 2004-07-20 00:06:38 +0000 |
|---|---|---|
| committer | Felix Domke <tmbinc@elitedvb.net> | 2004-07-20 00:06:38 +0000 |
| commit | 70b451b323d094329a5cb8c9022a30a3af67f11c (patch) | |
| tree | 6749af951da91025a6e17aaabfc489850a5b0ae7 /main/enigma-gdi.cpp | |
| parent | b6e0a6a2c9877ca1c79595a8860e9bb49884a7e4 (diff) | |
| download | enigma2-70b451b323d094329a5cb8c9022a30a3af67f11c.tar.gz enigma2-70b451b323d094329a5cb8c9022a30a3af67f11c.zip | |
add playlist and gdi testbench
Diffstat (limited to 'main/enigma-gdi.cpp')
| -rw-r--r-- | main/enigma-gdi.cpp | 111 |
1 files changed, 111 insertions, 0 deletions
diff --git a/main/enigma-gdi.cpp b/main/enigma-gdi.cpp new file mode 100644 index 00000000..d0010adf --- /dev/null +++ b/main/enigma-gdi.cpp @@ -0,0 +1,111 @@ +#include <stdio.h> +#include <libsig_comp.h> +#include <lib/base/ebase.h> +#include <lib/base/eerror.h> +#include <lib/base/init.h> +#include <lib/base/init_num.h> + +#include <unistd.h> + +#include <lib/gdi/grc.h> +#include <lib/gdi/gfbdc.h> +#include <lib/gdi/font.h> + +#include <lib/gui/ewidget.h> +#include <lib/gui/ewidgetdesktop.h> +#include <lib/gui/elabel.h> + +#ifdef OBJECT_DEBUG +int object_total_remaining; + +void object_dump() +{ + printf("%d items left\n", object_total_remaining); +} +#endif + +void dumpRegion(const gRegion ®ion) +{ + fprintf(stderr, "extends: %d %d -> %d %d\n", + region.extends.left(), region.extends.top(), + region.extends.right(), region.extends.bottom()); + for (int y=0; y<region.extends.bottom(); ++y) + { + for (int x=0; x<region.extends.right(); ++x) + { + unsigned char res = ' '; + for (unsigned int i=0; i < region.rects.size(); ++i) + if (region.rects[i].contains(ePoint(x, y))) + res = '0' + i; + fprintf(stderr, "%c", res); + } + fprintf(stderr, "\n"); + } +} + +int main() +{ +#ifdef OBJECT_DEBUG + atexit(object_dump); +#endif + + eInit init; + + init.setRunlevel(eAutoInitNumbers::main); + ePtr<gFBDC> my_dc; + gFBDC::getInstance(my_dc); +#if 1 + + gPainter p(my_dc); + + gRGB pal[256]; + pal[0] = 0; + pal[1] = 0xff00ff; + pal[2] = 0xffFFff; + pal[3] = 0x00ff00; + + for (int a=0; a<0x10; ++a) + pal[a | 0x10] = (0x111111 * a) | 0xFF; + p.setPalette(pal, 0, 256); + + fontRenderClass::getInstance()->AddFont("/dbox2/cdkroot/share/fonts/arial.ttf", "Arial", 100); + + p.resetClip(gRegion(eRect(0, 0, 720, 576))); + + + gRegion c; + eDebug("0"); + int i; + + c |= eRect(0, 20, 100, 10); + c |= eRect(0, 50, 100, 10); + c |= eRect(10, 10, 80, 100); + + c -= eRect(20, 20, 40, 40); + + p.setForegroundColor(gColor(3)); + p.fill(eRect(0, 0, 100, 100)); + p.fill(eRect(200, 0, 100, 100)); + + for (int a=0; a<c.rects.size(); ++a) + eDebug("%d %d -> %d %d", c.rects[a].left(), c.rects[a].top(), c.rects[a].right(), c.rects[a].bottom()); + eDebug("extends: %d %d %d %d", c.extends.left(), c.extends.top(), c.extends.right(), c.extends.bottom()); + p.setOffset(ePoint(100, 100)); + p.clip(c); + + p.setBackgroundColor(gColor(1)); + p.clear(); + p.setForegroundColor(gColor(2)); + p.line(ePoint(0, 0), ePoint(220, 190)); + p.clippop(); + + p.setBackgroundColor(gColor(0x1f)); + p.setForegroundColor(gColor(0x10)); + + ePtr<gFont> fnt = new gFont("Arial", 70); + p.setFont(fnt); + p.renderText(eRect(100, 100, 500, 200), "Hello welt!"); + + sleep(1); + return 0; +} |
