10 Label::Label(const string &t)
16 void Label::autosize()
23 if(const Part *text_part = style->get_part("text"))
25 const Sides &margin = text_part->get_margin();
26 geom.w = max(geom.w, text.get_width()+margin.left+margin.right);
27 geom.h = max(geom.h, text.get_height()+margin.top+margin.bottom);
33 void Label::set_text(const string &t)
36 signal_autosize_changed.emit();
40 void Label::rebuild_special(const Part &part, CachedPart &cache)
42 if(part.get_name()=="text")
43 text.build(part, geom, cache);
46 void Label::on_style_change()
48 text.set_style(style);
52 Label::Loader::Loader(Label &l):
55 add("text", &Loader::text);
58 void Label::Loader::text(const string &t)
60 static_cast<Label &>(obj).text = t;