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_part(const Part &part) const
28 if(part.get_name()=="text")
29 render_text(part, text);
31 Widget::render_part(part);
35 Label::Loader::Loader(Label &l):
38 add("text", &Label::text);
41 Label &Label::Loader::get_object()
43 return static_cast<Label &>(wdg);