]> git.vomp.tv Git - vompclient.git/blob - box.h
Connection failed detection
[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 rectangle(Region& region, Colour& colour);
53
54     void drawText(char* text, int x, int y, Colour& colour);
55     void drawTextRJ(char* text, int x, int y, Colour& colour);
56     void drawTextCentre(char* text, int x, int y, Colour& colour);
57     void drawPixel(UINT x, UINT y, Colour& colour);
58
59     int getScreenX();
60     int getScreenY();
61     int getWidth();
62     int getHeight();
63
64     // so viewman can read it:
65     Region area;
66     Surface* surface; // temp  - is there a get function for this? FIXME
67   private:
68
69   protected:
70
71
72 /*
73     UINT width;
74     UINT height;
75
76     int screenX;
77     int screenY;
78 */
79
80     UINT offsetX;
81     UINT offsetY;
82
83     UINT gap;
84
85     static char numBoxes;
86
87     static const int paraMargin = 10;
88
89 };
90
91 #endif