X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fwidget.cpp;h=2183be6623b5467b0d1431f531a2cea6cb534897;hb=754751fd474c6eac073fa7e89a18142fc89cb4fb;hp=f642004e07c3825fc1a79432f7a3acc237c1dadc;hpb=319cde3c06181ba1c3619567525002926d8b4889;p=libs%2Fgltk.git diff --git a/source/widget.cpp b/source/widget.cpp index f642004..2183be6 100644 --- a/source/widget.cpp +++ b/source/widget.cpp @@ -43,24 +43,34 @@ void Widget::autosize() if(!style) return; - geom.w = 0; - geom.h = 0; + Geometry ageom; const Style::PartSeq &parts = style->get_parts(); for(Style::PartSeq::const_iterator i=parts.begin(); i!=parts.end(); ++i) + { if(i->get_name().empty()) { const Geometry &pgeom = i->get_geometry(); const Sides &pmargin = i->get_margin(); - geom.w = max(geom.w, pgeom.w+pmargin.left+pmargin.right); - geom.h = max(geom.h, pgeom.h+pmargin.top+pmargin.bottom); + ageom.w = max(ageom.w, pgeom.w+pmargin.left+pmargin.right); + ageom.h = max(ageom.h, pgeom.h+pmargin.top+pmargin.bottom); } + else + autosize_special(*i, ageom); + } + + set_geometry(ageom); } void Widget::set_geometry(const Geometry &g) { + bool size_changed = (g.w!=geom.w || g.h!=geom.h); geom = g; - on_geometry_change(); - rebuild(); + if(size_changed) + { + // TODO maybe rename this to on_size_change + on_geometry_change(); + rebuild(); + } } void Widget::set_parent(Container *p)