]> git.vomp.tv Git - vompclient.git/blob - box.h
More EPG tweaks, fix a freeze changing to a non-transmitting channel
[vompclient.git] / box.h
1 /*
2     Copyright 2004-2005 Chris Tallon
3
4     This file is part of VOMP.
5
6     VOMP is free software; you can redistribute it and/or modify
7     it under the terms of the GNU General Public License as published by
8     the Free Software Foundation; either version 2 of the License, or
9     (at your option) any later version.
10
11     VOMP is distributed in the hope that it will be useful,
12     but WITHOUT ANY WARRANTY; without even the implied warranty of
13     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14     GNU General Public License for more details.
15
16     You should have received a copy of the GNU General Public License
17     along with VOMP; if not, write to the Free Software
18     Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19 */
20
21 #ifndef BOX_H
22 #define BOX_H
23
24 #include <stdio.h>
25
26 #include "log.h"
27 #include "colour.h"
28 #include "surface.h"
29 #include "region.h"
30
31 // Abstract ???????
32 class Box
33 {
34   public:
35     Box();
36     virtual ~Box();
37
38     void setScreenPos(int x, int y); // Even numbers only!!!
39     void setSurfaceOffset(UINT x, UINT y);
40     void setGap(UINT gap);
41
42     void show(); // Obselete
43     void blt(Region& r); // For use only by ViewMan
44
45     virtual void draw();
46
47     // Drawing functions level 1
48     void fillColour(Colour& colour);
49     void drawPara(char* text, int x, int y, Colour& colour);
50
51     // Drawing functions level 0
52     void rectangle(int x1, int y1, int w, int h, Colour& colour);
53     void drawText(char* text, int x, int y, Colour& colour);
54     void drawTextRJ(char* text, int x, int y, Colour& colour);
55     void drawTextCentre(char* text, int x, int y, Colour& colour);
56     void drawPixel(UINT x, UINT y, Colour& colour);
57
58     int getScreenX();
59     int getScreenY();
60     int getWidth();
61     int getHeight();
62
63     // so viewman can read it:
64     Region area;
65     Surface* surface; // temp  - is there a get function for this? FIXME
66   private:
67
68   protected:
69
70
71 /*
72     UINT width;
73     UINT height;
74
75     int screenX;
76     int screenY;
77 */
78
79     UINT offsetX;
80     UINT offsetY;
81
82     UINT gap;
83
84     static char numBoxes;
85
86     static const int paraMargin = 10;
87
88 };
89
90 #endif