]> git.vomp.tv Git - vompclient.git/blob - box.h
Update for windows
[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 "region.h"
29
30 #ifdef WIN32
31 #include "surfacewin.h"
32 #else
33 #include "surfacemvp.h"
34 #endif
35
36 // Abstract ???????
37 class Box
38 {
39   public:
40     Box();
41     virtual ~Box();
42
43     void setScreenPos(int x, int y); // Even numbers only!!!
44     void setSurfaceOffset(UINT x, UINT y);
45     void setGap(UINT gap);
46
47     void blt(Region& r); // For use only by ViewMan
48
49     virtual void draw();
50
51     // Drawing functions level 1
52     void fillColour(Colour& colour);
53     void drawPara(char* text, int x, int y, Colour& colour);
54
55     // Drawing functions level 0
56     void rectangle(int x, int y, int w, int h, Colour colour); // FIXME make this ref again
57     void rectangle(Region& region, Colour& colour);
58
59     void drawText(char* text, int x, int y, Colour& colour);
60     void drawTextRJ(char* text, int x, int y, Colour& colour);
61     void drawTextCentre(char* text, int x, int y, Colour& colour);
62     void drawPixel(UINT x, UINT y, Colour& colour);
63
64     int getScreenX();
65     int getScreenY();
66     int getWidth();
67     int getHeight();
68
69     // so viewman can read it:
70     Region area;
71     Surface* surface; // temp  - is there a get function for this? FIXME
72   private:
73
74   protected:
75
76
77 /*
78     UINT width;
79     UINT height;
80
81     int screenX;
82     int screenY;
83 */
84
85     UINT offsetX;
86     UINT offsetY;
87
88     UINT gap;
89
90     static char numBoxes;
91
92     static const int paraMargin = 10;
93
94 };
95
96 #endif