]> git.tdb.fi Git - libs/gltk.git/blobdiff - source/label.cpp
Add method to get a Part by name
[libs/gltk.git] / source / label.cpp
index 2353385c1174c44f78b129a45b3c550eec79206b..63b0ebdc2a1b24f366d9f4b28e82646455a5c4c3 100644 (file)
@@ -16,34 +16,28 @@ namespace GLtk {
 
 Label::Label(const Resources &r, const string &t):
        Widget(r),
-       text(style)
+       text()
 {
-       focusable=false;
+       focusable = false;
        update_style();
        set_text(t);
 }
 
 void Label::autosize()
 {
-       const list<Part> &parts=style->get_parts();
-       const Part *text_part=0;
-       for(list<Part>::const_iterator i=parts.begin(); (!text_part && i!=parts.end()); ++i)
-               if(i->get_name()=="text")
-                       text_part=&*i;
-
-       geom.h=text.get_height();
-       geom.w=text.get_width();
-       if(text_part)
+       geom.h = text.get_height();
+       geom.w = text.get_width();
+       if(const Part *text_part = style->get_part("text"))
        {
-               const Sides &margin=text_part->get_margin();
-               geom.w+=margin.left+margin.right;
-               geom.h+=margin.top+margin.bottom;
+               const Sides &margin = text_part->get_margin();
+               geom.w += margin.left+margin.right;
+               geom.h += margin.top+margin.bottom;
        }
 }
 
 void Label::set_text(const string &t)
 {
-       text=t;
+       text = t;
 }
 
 void Label::render_special(const Part &part) const
@@ -52,6 +46,11 @@ void Label::render_special(const Part &part) const
                text.render(part, geom);
 }
 
+void Label::on_style_change()
+{
+       text.set_style(style);
+}
+
 
 Label::Loader::Loader(Label &l):
        Widget::Loader(l)
@@ -61,7 +60,7 @@ Label::Loader::Loader(Label &l):
 
 void Label::Loader::text(const string &t)
 {
-       static_cast<Label &>(wdg).text=t;
+       static_cast<Label &>(wdg).text = t;
 }
 
 } // namespace GLtk