2 Copyright 2004-2005 Chris Tallon
4 This file is part of VOMP.
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.
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.
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
31 #include "surfacewin.h"
33 #include "surfacemvp.h"
43 void setScreenPos(int x, int y); // Even numbers only!!!
44 void setSurfaceOffset(UINT x, UINT y);
45 void setGap(UINT gap);
47 void blt(Region& r); // For use only by ViewMan
51 // Drawing functions level 1
52 void fillColour(Colour& colour);
53 void drawPara(char* text, int x, int y, Colour& colour);
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);
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);
69 // so viewman can read it:
71 Surface* surface; // temp - is there a get function for this? FIXME
92 static const int paraMargin = 10;