2012-10-05 20:04:12 +00:00
|
|
|
#ifndef _GUIBOX_H_
|
|
|
|
#define _GUIBOX_H_
|
|
|
|
|
|
|
|
#include "../GuiComponent.h"
|
|
|
|
#include "GuiImage.h"
|
|
|
|
#include <string>
|
|
|
|
|
2012-10-07 22:59:20 +00:00
|
|
|
struct GuiBoxData {
|
|
|
|
std::string backgroundPath;
|
|
|
|
bool backgroundTiled;
|
|
|
|
std::string horizontalPath;
|
|
|
|
bool horizontalTiled;
|
|
|
|
std::string verticalPath;
|
|
|
|
bool verticalTiled;
|
|
|
|
std::string cornerPath;
|
|
|
|
};
|
|
|
|
|
2012-10-05 20:04:12 +00:00
|
|
|
class GuiBox : public GuiComponent
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
GuiBox(int offsetX, int offsetY, unsigned int width, unsigned int height);
|
|
|
|
|
2012-10-07 22:59:20 +00:00
|
|
|
void setData(GuiBoxData data);
|
|
|
|
|
2012-10-05 20:04:12 +00:00
|
|
|
void setBackgroundImage(std::string path, bool tiled = true);
|
|
|
|
void setHorizontalImage(std::string path, bool tiled = false);
|
|
|
|
void setVerticalImage(std::string path, bool tiled = false);
|
2012-10-07 21:56:33 +00:00
|
|
|
void setCornerImage(std::string path);
|
2012-10-05 20:04:12 +00:00
|
|
|
|
|
|
|
void onRender();
|
|
|
|
|
|
|
|
void onInit();
|
|
|
|
void onDeinit();
|
|
|
|
private:
|
2012-10-07 21:56:33 +00:00
|
|
|
GuiImage mBackgroundImage, mHorizontalImage, mVerticalImage, mCornerImage;
|
|
|
|
|
|
|
|
int getHorizontalBorderWidth();
|
|
|
|
int getVerticalBorderWidth();
|
2012-10-05 20:04:12 +00:00
|
|
|
|
|
|
|
unsigned int mWidth, mHeight;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|