3 This file is part of libmspgltk
4 Copyright © 2007 Mikko Rasa, Mikkosoft Productions
5 Distributed under the LGPL
14 Label::Label(const Resources &r, const std::string &t):
21 void Label::set_text(const std::string &t)
26 void Label::render_special(const Part &part) const
28 if(part.get_name()=="text")
29 render_text(part, text);
33 Label::Loader::Loader(Label &l):
36 add("text", &Label::text);
39 Label &Label::Loader::get_object()
41 return static_cast<Label &>(wdg);