]> 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 a91f821406292d4672053782b79ce1b3f9b70bae..63b0ebdc2a1b24f366d9f4b28e82646455a5c4c3 100644 (file)
@@ -18,32 +18,26 @@ Label::Label(const Resources &r, const string &t):
        Widget(r),
        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
@@ -66,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