6 #include <lib/base/object.h>
7 #include <lib/base/smartptr.h>
8 #include <lib/base/elock.h>
9 #include <lib/gdi/erect.h>
10 #include <lib/gdi/fb.h>
11 #include <lib/gdi/region.h>
16 gColor(int color): color(color)
22 operator int() const { return color; }
23 bool operator==(const gColor &o) const { return o.color==color; }
28 unsigned char b, g, r, a;
29 gRGB(int r, int g, int b, int a=0): b(b), g(g), r(r), a(a)
32 gRGB(unsigned long val): b(val&0xFF), g((val>>8)&0xFF), r((val>>16)&0xFF), a((val>>24)&0xFF) // ARGB
35 gRGB(): b(0), g(0), r(0), a(0)
39 unsigned long argb() const
41 return (a<<24)|(r<<16)|(g<<8)|b;
44 void operator=(unsigned long val)
51 bool operator < (const gRGB &c) const
69 bool operator==(const gRGB &c) const
71 return (b == c.b) && (g == c.g) && (r == c.r) && (a == c.a);
79 gColor findColor(const gRGB &rgb) const;
86 gLookup(int size, const gPalette &pal, const gRGB &start, const gRGB &end);
88 ~gLookup() { delete [] lookup; }
89 void build(int size, const gPalette &pal, const gRGB &start, const gRGB &end);
95 int x, y, bpp, bypp, stride;
100 int offset; // only for backbuffers
103 gSurface(eSize size, int bpp, int accel);
107 class gPixmap: public iObject
109 DECLARE_REF(gPixmap);
118 gPixmap(gSurface *surface);
119 gPixmap(eSize, int bpp, int accel = 0);
131 eSize size() const { return eSize(surface->x, surface->y); }
132 inline bool needClut() const { return surface && surface->bpp <= 8; }
136 void fill(const gRegion &clip, const gColor &color);
137 void fill(const gRegion &clip, const gRGB &color);
139 void blit(const gPixmap &src, ePoint pos, const gRegion &clip, int flags=0);
141 void mergePalette(const gPixmap &target);
142 void line(const gRegion &clip, ePoint start, ePoint end, gColor color);
149 TEMPLATE_TYPEDEF(ePtr<gPixmap>, gPixmapPtr);