This commit is contained in:
Eduardo Bart
2011-04-17 17:09:37 -03:00
parent 9b22a6e0a6
commit f2c187c810
8 changed files with 1773 additions and 42 deletions

View File

@@ -39,8 +39,11 @@ public:
m_elementType(elementType) { }
virtual ~UIElementSkin() { }
/// Load the skin from a YAML node
virtual void load(const YAML::Node& node);
/// Apply the skin to an element
virtual void apply(UIElement *element);
/// Draw the skinned element
virtual void draw(UIElement *element);
const std::string& getName() const { return m_name; }