1
0
forked from 0ad/0ad
0ad/source/gui/CGUISprite.h

113 lines
2.3 KiB
C
Raw Normal View History

/*
A GUI Sprite
by Gustav Larsson
gee@pyro.nu
--Overview--
A GUI Sprite, which is actually a collage of several
sprites.
--Usage--
Used internally and declared in XML files, read documentations
on how.
--More info--
Check GUI.h
*/
#ifndef CGUISprite_H
#define CGUISprite_H
//--------------------------------------------------------
// Includes / Compiler directives
//--------------------------------------------------------
#include "GUI.h"
//--------------------------------------------------------
// Macros
//--------------------------------------------------------
//--------------------------------------------------------
// Types
//--------------------------------------------------------
//--------------------------------------------------------
// Error declarations
//--------------------------------------------------------
//--------------------------------------------------------
// Declarations
//--------------------------------------------------------
/**
* @author Gustav Larsson
*
* A CGUISprite is actually a collage of several <b>real</b>
* sprites, this struct represents is such real sprite.
*/
struct SGUIImage
{
CStr m_Texture;
2003-12-01 08:06:55 +01:00
// Image placement
CClientArea m_Size;
2003-12-01 08:06:55 +01:00
// Texture placement
CClientArea m_TextureSize;
2003-12-01 08:06:55 +01:00
// Color
CColor m_BackColor;
CColor m_BorderColor;
2003-11-24 03:18:41 +01:00
2003-12-01 08:06:55 +01:00
// 0 or 1 pixel border is the only option
bool m_Border;
};
/**
* @author Gustav Larsson
*
* The GUI sprite, is actually several real sprites (images)
* like a collage. View the section <sprites> in the GUI
* TDD for more information.
2003-12-01 08:06:55 +01:00
*
* Drawing routine is located in CGUI
*
* @see CGUI#DrawSprite
*/
class CGUISprite
{
2003-12-01 08:06:55 +01:00
// For CGUI::DrawSprite()
friend class CGUI;
public:
CGUISprite() {}
virtual ~CGUISprite() {}
/**
* Execute a drawing request for this sprite
*
2003-11-22 16:07:22 +01:00
* @param z Draw in what depth.
* @param rect Outer rectangle to draw the collage.
* @param clipping The clipping rectangle, things should only
* be drawn within these perimeters.
*/
2003-12-01 08:06:55 +01:00
//void Draw(const float &z, const CRect &rect, const CRect &clipping);
/**
* Adds an image to the sprite collage.
*
* @param image Adds this image to the sprite collage.
*/
void AddImage(const SGUIImage &image) { m_Images.push_back(image); }
private:
/// List of images
2003-12-01 08:06:55 +01:00
std::vector<SGUIImage> m_Images;
};
2003-11-24 18:13:37 +01:00
#endif