]> git.vomp.tv Git - vompclient.git/blob - box.h
Zero length recording segfault fixed
[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 blt(Region& r); // For use only by ViewMan
43
44     virtual void draw();
45
46     // Drawing functions level 1
47     void fillColour(Colour& colour);
48     void drawPara(char* text, int x, int y, Colour& colour);
49
50     // Drawing functions level 0
51     void rectangle(int x1, int y1, int w, int h, Colour& colour);
52     void drawText(char* text, int x, int y, Colour& colour);
53     void drawTextRJ(char* text, int x, int y, Colour& colour);
54     void drawTextCentre(char* text, int x, int y, Colour& colour);
55     void drawPixel(UINT x, UINT y, Colour& colour);
56
57     int getScreenX();
58     int getScreenY();
59     int getWidth();
60     int getHeight();
61
62     // so viewman can read it:
63     Region area;
64     Surface* surface; // temp  - is there a get function for this? FIXME
65   private:
66
67   protected:
68
69
70 /*
71     UINT width;
72     UINT height;
73
74     int screenX;
75     int screenY;
76 */
77
78     UINT offsetX;
79     UINT offsetY;
80
81     UINT gap;
82
83     static char numBoxes;
84
85     static const int paraMargin = 10;
86
87 };
88
89 #endif