X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fpanel.cpp;h=44c41eac98fd6e62d0d69e2ace47c5a52e6910af;hb=4b52d16bc895f9d969383d7a7d6a3558c1972cc5;hp=930a68f980f96a065552f11942c1b14f519ac2db;hpb=72db2a8d41cc0eb8404572d1a720d59fab0551cd;p=libs%2Fgltk.git diff --git a/source/panel.cpp b/source/panel.cpp index 930a68f..44c41ea 100644 --- a/source/panel.cpp +++ b/source/panel.cpp @@ -3,16 +3,19 @@ #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" #include "panel.h" #include "part.h" #include "row.h" +#include "stack.h" #include "toggle.h" #include "vslider.h" @@ -23,7 +26,9 @@ namespace GLtk { Panel::Panel(): layout(0) -{ } +{ + input_type = INPUT_TEXT; +} Panel::~Panel() { @@ -38,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 @@ -87,6 +92,7 @@ Panel::Loader::Loader(Panel &p, map &m): add("button", &Loader::child