ES-DE/src/components/GuiTheme.h

66 lines
1.7 KiB
C
Raw Normal View History

#ifndef _GUITHEME_H_
#define _GUITHEME_H_
2013-04-08 16:52:40 +00:00
#include "../Gui.h"
#include "../pugiXML/pugixml.hpp"
#include "GuiBox.h"
#include "../Sound.h"
#include "../Font.h"
2013-04-08 17:40:15 +00:00
//This class loads an XML-defined list of Guis.
class GuiTheme : public Gui
{
public:
2013-04-08 16:52:40 +00:00
GuiTheme(Window* window, bool detailed, std::string path = "");
~GuiTheme();
void readXML(std::string path);
GuiBoxData getBoxData();
2013-04-08 17:40:15 +00:00
void render();
void init();
void deinit();
unsigned int getColor(std::string name);
bool getBool(std::string name);
float getFloat(std::string name);
Sound* getSound(std::string name);
std::string getString(std::string name);
Font* getListFont();
Font* getDescriptionFont();
2013-03-17 17:16:40 +00:00
Font* getFastSelectFont();
private:
void setDefaults();
void deleteComponents();
2013-04-08 17:40:15 +00:00
void createComponentChildren(pugi::xml_node node, Gui* parent);
Gui* createElement(pugi::xml_node data, Gui* parent);
//utility functions
std::string expandPath(std::string path);
float resolveExp(std::string str, float defaultVal = 0.0);
unsigned int resolveColor(std::string str, unsigned int defaultColor = 0x000000FF);
void splitString(std::string str, char delim, std::string* before, std::string* after);
float strToFloat(std::string str, float defaultVal = 0.0f);
Font* resolveFont(pugi::xml_node node, std::string defaultPath, unsigned int defaultSize);
2013-04-08 16:52:40 +00:00
std::vector<Gui*> mComponentVector;
std::string mPath;
2013-01-06 20:33:50 +00:00
bool mDetailed;
std::map<std::string, unsigned int> mColorMap;
std::map<std::string, bool> mBoolMap;
std::map<std::string, float> mFloatMap;
std::map<std::string, Sound*> mSoundMap;
std::map<std::string, std::string> mStringMap;
GuiBoxData mBoxData;
Font* mListFont;
Font* mDescFont;
2013-03-17 17:16:40 +00:00
Font* mFastSelectFont;
};
#endif