X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fpanel.cpp;h=4b44370343c47bcbe8fae960ad0d6827881bb234;hb=c1faa54a3218b53757b8b55de0ff8aa64412253b;hp=c93d430be07f16a988fa1a120af013104cd8889e;hpb=e7bc29984e91ee36555d6a4e4eece22170d10ba4;p=libs%2Fgltk.git diff --git a/source/panel.cpp b/source/panel.cpp index c93d430..4b44370 100644 --- a/source/panel.cpp +++ b/source/panel.cpp @@ -1,90 +1,132 @@ +#include #include +#include "button.h" +#include "dropdown.h" +#include "entry.h" +#include "hslider.h" +#include "indicator.h" #include "label.h" +#include "layout.h" +#include "list.h" #include "panel.h" #include "part.h" +#include "table.h" +#include "toggle.h" +#include "vslider.h" using namespace std; namespace Msp { namespace GLtk { -Panel::Panel(const Resources &r): - Widget(r), +Panel::Panel(): + layout(0), pointer_focus(0), - pointer_grab(0), + pointer_grabbed(false), input_focus(0) +{ } + +Panel::~Panel() { - update_style(); + delete layout; + layout = 0; } -Panel::~Panel() +void Panel::set_layout(Layout *l) { - for(ChildSeq::iterator i=children.begin(); i!=children.end(); ++i) - delete *i; + l->set_container(*this); + delete layout; + layout = l; } -void Panel::button_press(int x, int y, unsigned btn) +Panel::Child *Panel::create_child(Widget *wdg) +{ + return new Child(*this, wdg); +} + +void Panel::raise(Widget &wdg) +{ + for(list::iterator i=children.begin(); i!=children.end(); ++i) + if((*i)->widget==&wdg) + { + children.splice(children.end(), children, i); + return; + } + + throw hierarchy_error("widget not in panel"); +} + +Widget *Panel::get_final_input_focus() const { - if(pointer_grab>0) - pointer_focus->button_press(x-geom.x, y-geom.y, btn); - else if(geom.is_inside(x, y)) + if(Panel *panel = dynamic_cast(input_focus)) { - for(ChildSeq::iterator i=children.begin(); i!=children.end(); ++i) - if((*i)->get_geometry().is_inside(x-geom.x, y-geom.y)) - { - (*i)->button_press(x-geom.x, y-geom.y, btn); - pointer_grab=btn; - set_input_focus(*i); - } + Widget *focus = panel->get_final_input_focus(); + if(focus) + return focus; } + return input_focus; } -void Panel::button_release(int x, int y, unsigned btn) +void Panel::render_special(const Part &part) const { - if(pointer_grab>0) + if(part.get_name()=="children") { - pointer_focus->button_release(x-geom.x, y-geom.y, btn); + for(list::const_iterator i=children.begin(); i!=children.end(); ++i) + if((*i)->widget->is_visible()) + (*i)->widget->render(); + } +} - if(btn==pointer_grab) +void Panel::button_press(int x, int y, unsigned btn) +{ + if(pointer_grabbed) + { + const Geometry &cgeom = pointer_focus->get_geometry(); + pointer_focus->button_press(x-cgeom.x, y-cgeom.y, btn); + } + else + { + if(Widget *wdg = get_child_at(x, y)) { - pointer_grab=0; - - for(ChildSeq::iterator i=children.begin(); i!=children.end(); ++i) - if((*i)->get_geometry().is_inside(x-geom.x, y-geom.y)) - { - set_pointer_focus(*i); - break; - } + set_pointer_focus(wdg); + if(wdg->is_focusable()) + set_input_focus(wdg); } + Container::button_press(x, y, btn); } - else if(geom.is_inside(x, y)) +} + +void Panel::button_release(int x, int y, unsigned btn) +{ + if(pointer_grabbed) { - for(ChildSeq::iterator i=children.begin(); i!=children.end(); ++i) - if((*i)->get_geometry().is_inside(x-geom.x, y-geom.y)) - (*i)->button_release(x-geom.x, y-geom.y, btn); + const Geometry &cgeom = pointer_focus->get_geometry(); + pointer_focus->button_release(x-cgeom.x, y-cgeom.y, btn); } + else + Container::button_release(x, y, btn); } void Panel::pointer_motion(int x, int y) { - if(pointer_grab>0) - pointer_focus->pointer_motion(x-geom.x, y-geom.y); - else if(geom.is_inside(x, y)) + if(pointer_grabbed) { - bool found=false; - for(ChildSeq::iterator i=children.begin(); i!=children.end(); ++i) - if((*i)->get_geometry().is_inside(x-geom.x, y-geom.y)) - { - set_pointer_focus(*i); - (*i)->pointer_motion(x-geom.x, y-geom.y); - found=true; - } - - if(!found) - set_pointer_focus(0); + const Geometry &cgeom = pointer_focus->get_geometry(); + pointer_focus->pointer_motion(x-cgeom.x, y-cgeom.y); + } + else + { + set_pointer_focus(get_child_at(x, y)); + Container::pointer_motion(x, y); } } +void Panel::pointer_leave() +{ + Container::pointer_leave(); + set_pointer_focus(0); +} + void Panel::key_press(unsigned key, unsigned mod, wchar_t ch) { if(input_focus) @@ -100,32 +142,29 @@ void Panel::key_release(unsigned key, unsigned mod) void Panel::focus_out() { set_input_focus(0); + Widget::focus_out(); } -void Panel::add(Widget &wdg) +void Panel::on_child_added(Widget &wdg) { - children.push_back(&wdg); + if(layout) + layout->add_widget(wdg); } -void Panel::render_part(const Part &part) const +void Panel::on_child_removed(Widget &wdg) { - if(part.get_name()=="children") - { - for(ChildSeq::const_iterator i=children.begin(); i!=children.end(); ++i) - (*i)->render(); - } - else - Widget::render_part(part); + if(layout) + layout->remove_widget(wdg); } void Panel::set_pointer_focus(Widget *wdg) { - if(wdg!=pointer_focus && pointer_grab==0) + if(wdg!=pointer_focus) { if(pointer_focus) pointer_focus->pointer_leave(); - pointer_focus=wdg; + pointer_focus = wdg; if(pointer_focus) pointer_focus->pointer_enter(); @@ -139,29 +178,115 @@ void Panel::set_input_focus(Widget *wdg) if(input_focus) input_focus->focus_out(); - input_focus=wdg; + input_focus = wdg; if(input_focus) + { + raise(*wdg); input_focus->focus_in(); + } } } Panel::Loader::Loader(Panel &p, map &m): Widget::Loader(p), - panel(p), + pnl(p), wdg_map(m) { - add("label", &Loader::child