X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fpanel.cpp;h=f1eef110848abed72e114742ea2ff24b6e2ead11;hb=707b59d45ae50b69c94918f8f74313283b304597;hp=389e3d9be729485fc4c16db0ee4dca3237a5f3ed;hpb=1021ce203ab092edf5f94770e742d56a3b8cd23b;p=libs%2Fgltk.git diff --git a/source/panel.cpp b/source/panel.cpp index 389e3d9..f1eef11 100644 --- a/source/panel.cpp +++ b/source/panel.cpp @@ -1,15 +1,21 @@ #include +#include #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 "layout.h" #include "list.h" #include "panel.h" #include "part.h" +#include "row.h" +#include "stack.h" #include "toggle.h" #include "vslider.h" @@ -35,10 +41,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 @@ -77,37 +83,116 @@ void Panel::on_child_removed(Widget &wdg) Panel::Loader::Loader(Panel &p, map &m): - Widget::Loader(p), - pnl(p), - wdg_map(m) + DataFile::DerivedObjectLoader(p), + wdg_map(m), + last_widget(0) { add("button", &Loader::child