X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fbutton.cpp;h=5095379364b5c7a883d1d4fe615ec4d90655444a;hb=4f4a17099ee8e927b55fb80c7eaf18a0b4b595db;hp=3c71499bde19cdc32794478687ef689e18f4e90b;hpb=73afd124ab87e8bace98db55517a56c797a9b8c7;p=libs%2Fgltk.git diff --git a/source/button.cpp b/source/button.cpp index 3c71499..5095379 100644 --- a/source/button.cpp +++ b/source/button.cpp @@ -8,6 +8,9 @@ Distributed under the LGPL #include #include "button.h" #include "part.h" +#include "style.h" + +using namespace std; namespace Msp { namespace GLtk { @@ -20,6 +23,31 @@ Button::Button(const std::string &t): set_text(t); } +void Button::autosize() +{ + if(!style) + return; + + Widget::autosize(); + + if(const Part *text_part = style->get_part("text")) + { + const Sides &margin = text_part->get_margin(); + geom.w = max(geom.w, text.get_width()+margin.left+margin.right); + geom.h = max(geom.h, text.get_height()+margin.top+margin.bottom); + } + + if(icon) + { + if(const Part *icon_part = style->get_part("icon")) + { + const Sides &margin = icon_part->get_margin(); + geom.w = max(geom.w, icon->get_width()+margin.left+margin.right); + geom.h = max(geom.h, icon->get_height()+margin.top+margin.bottom); + } + } +} + void Button::set_text(const std::string &t) { text = t;