X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fpanel.cpp;h=44c41eac98fd6e62d0d69e2ace47c5a52e6910af;hb=4b52d16bc895f9d969383d7a7d6a3558c1972cc5;hp=f9ea0d4b830a45b690b3134c496f0c1e110c4928;hpb=d34a75fa019d37c4ea748e93c276a6f24b941b1c;p=libs%2Fgltk.git diff --git a/source/panel.cpp b/source/panel.cpp index f9ea0d4..44c41ea 100644 --- a/source/panel.cpp +++ b/source/panel.cpp @@ -3,10 +3,12 @@ #include #include "button.h" #include "column.h" +#include "draghandle.h" #include "dropdown.h" #include "entry.h" #include "grid.h" #include "hslider.h" +#include "image.h" #include "indicator.h" #include "label.h" #include "list.h" @@ -24,7 +26,9 @@ namespace GLtk { Panel::Panel(): layout(0) -{ } +{ + input_type = INPUT_TEXT; +} Panel::~Panel() { @@ -39,10 +43,10 @@ void Panel::set_layout(Layout *l) layout = l; } -void Panel::autosize() +void Panel::autosize_special(const Part &part, Geometry &ageom) const { - if(layout) - layout->autosize(); + if(part.get_name()=="children" && layout) + layout->autosize(ageom); } void Panel::render_special(const Part &part, GL::Renderer &renderer) const @@ -88,6 +92,7 @@ Panel::Loader::Loader(Panel &p, map &m): add("button", &Loader::child