|
| Graphics () |
|
virtual | ~Graphics () |
|
virtual void | _beginDraw () |
|
virtual void | _endDraw () |
|
virtual bool | pushClipArea (Rectangle area) |
|
virtual void | popClipArea () |
|
virtual const ClipRectangle & | getCurrentClipArea () |
|
virtual void | drawImage (const Image *image, int srcX, int srcY, int dstX, int dstY, int width, int height)=0 |
|
virtual void | drawImage (const Image *image, int dstX, int dstY) |
|
virtual void | drawPoint (int x, int y)=0 |
|
virtual void | drawLine (int x1, int y1, int x2, int y2)=0 |
|
virtual void | drawRectangle (const Rectangle &rectangle)=0 |
|
virtual void | fillRectangle (const Rectangle &rectangle)=0 |
|
virtual void | setColor (const Color &color)=0 |
|
virtual const Color & | getColor ()=0 |
|
virtual void | setFont (Font *font) |
|
virtual void | drawText (const std::string &text, int x, int y, unsigned int alignment=LEFT, bool is_normal=true) |
|
Used for drawing graphics. It contains all vital functions for drawing. We include implemented Graphics classes for some common platforms like the Allegro library, the OpenGL library and the SDL library. To make Guichan usable under another platform, a Graphics class must be implemented.
In Graphics you can set clip areas to limit drawing to certain areas of the screen. Clip areas are put on a stack, which means that you can push smaller and smaller clip areas onto the stack. All coordinates will be relative to the topmost clip area. In most cases you won't have to worry about the clip areas, unless you want to implement some really complex widget. Pushing and poping of clip areas are handled automatically by container widgets when their child widgets are drawn.
IMPORTANT: Remember to pop each clip area that you pushed on the stack after you are done with it.
If you feel that Graphics is to restrictive for your needs, there is no one stopping you from using your own code for drawing in Widgets. You could for instance use pure SDL in the drawing of Widgets bypassing Graphics. This might however hurt portability of your application.
If you implement a Graphics class not present in Guichan we would be very happy to add it to Guichan.
- See also
- AllegroGraphics, OpenGLGraphics, SDLGraphics, Image
virtual void gcn::Graphics::drawImage |
( |
const Image * |
image, |
|
|
int |
srcX, |
|
|
int |
srcY, |
|
|
int |
dstX, |
|
|
int |
dstY, |
|
|
int |
width, |
|
|
int |
height |
|
) |
| |
|
pure virtual |
Draws a part of an Image.
NOTE: Width and height arguments will not scale the Image but specifies the size of the part to be drawn. If you want to draw the whole Image there is a simplified version of this function.
EXAMPLE:
Will draw a rectangular piece of myImage starting at coordinate (10, 10) in myImage, with width and height 40. The piece will be drawn with it's top left corner at coordinate (20, 20).
- Parameters
-
image | the Image to draw. |
srcX | source Image x coordinate. |
srcY | source Image y coordinate. |
dstX | destination x coordinate. |
dstY | destination y coordinate. |
width | the width of the piece. |
height | the height of the piece. |
Implemented in gcn::SDLGraphics.