summaryrefslogtreecommitdiff
path: root/styledpixmap.h
blob: af0999410aaa26c75f7fe9bc1c78253cc6b2ad86 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
#ifndef __TVGUIDE_STYLEDPIXMAP_H
#define __TVGUIDE_STYLEDPIXMAP_H

// --- cStyledPixmap -------------------------------------------------------------

class cStyledPixmap {
private:
    void drawVerticalLine(int x, int yStart, int yStop, tColor col);
    void drawHorizontalLine(int y, int xStart, int xStop, tColor col);
protected:
    cPixmap *pixmap;
    tColor color;
    tColor colorBlending;
    void setPixmap(cPixmap *pixmap);
public:
    cStyledPixmap(void);
    cStyledPixmap(cPixmap *pixmap);
    virtual ~cStyledPixmap(void);
    void drawBackground();
    void drawBlendedBackground();
    void drawSparsedBackground();
    void drawBorder();
    void drawBoldBorder();
    void drawDefaultBorder(int width, int height);
    void drawRoundedCorners(int width, int height, int radius);
    void setColor(tColor color, tColor colorBlending) {this->color = color; this->colorBlending = colorBlending;};
    void SetAlpha(int alpha) {pixmap->SetAlpha(alpha);};
    void SetLayer(int layer) {pixmap->SetLayer(layer);};
    void DrawText(const cPoint &Point, const char *s, tColor ColorFg, tColor ColorBg, const cFont *Font);
    void DrawImage(const cPoint &Point, const cImage &Image);
    void DrawRectangle(const cRect &Rect, tColor Color);
    void DrawEllipse(const cRect &Rect, tColor Color, int Quadrant);
    void SetViewPort(const cRect &Rect);
    int Width() {return pixmap->ViewPort().Width();};
    int Height() {return pixmap->ViewPort().Height();};
};

#endif //__TVGUIDE_STYLEDPIXMAP_H