X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fcontainer.cpp;h=9ad66482a15a2ad2503d7f0efcb12a6fe14383c4;hb=2bdaf4955fdb94e73704adcdcf0adc2b353f0ff0;hp=a46492d4ea3a1b7bb5e464952d7db846db4633c8;hpb=3f301f9b6f73e886bdbb61565edb2c02667039d0;p=libs%2Fgltk.git diff --git a/source/container.cpp b/source/container.cpp index a46492d..9ad6648 100644 --- a/source/container.cpp +++ b/source/container.cpp @@ -1,7 +1,7 @@ /* $Id$ This file is part of libmspgltk -Copyright © 2009 Mikko Rasa, Mikkosoft Productions +Copyright © 2009-2011 Mikko Rasa, Mikkosoft Productions Distributed under the LGPL */ @@ -12,8 +12,7 @@ using namespace std; namespace Msp { namespace GLtk { -Container::Container(const Resources &r): - Widget(r), +Container::Container(): click_focus(0), click_button(0) { } @@ -26,7 +25,7 @@ Container::~Container() void Container::add(Widget &wdg) { - set_parent(wdg, this); + wdg.set_parent(this); children.push_back(create_child(&wdg)); } @@ -35,7 +34,7 @@ void Container::remove(Widget &wdg) for(list::iterator i=children.begin(); i!=children.end(); ++i) if((*i)->widget==&wdg) { - set_parent(wdg, 0); + wdg.set_parent(0); delete *i; children.erase(i); return; @@ -44,6 +43,11 @@ void Container::remove(Widget &wdg) throw InvalidState("That Widget is not in this Container"); } +Container::Child *Container::create_child(Widget *wdg) +{ + return new Child(*this, wdg); +} + list Container::get_children() const { list result; @@ -63,11 +67,11 @@ Widget *Container::get_child_at(int x, int y) Widget *Container::get_descendant_at(int x, int y) { - Widget *wdg=get_child_at(x, y); - if(Container *cont=dynamic_cast(wdg)) + Widget *wdg = get_child_at(x, y); + if(Container *cont = dynamic_cast(wdg)) { - const Geometry &cgeom=wdg->get_geometry(); - Widget *wdg2=cont->get_descendant_at(x-cgeom.x, y-cgeom.y); + const Geometry &cgeom = wdg->get_geometry(); + Widget *wdg2 = cont->get_descendant_at(x-cgeom.x, y-cgeom.y); if(wdg2) return wdg2; } @@ -78,17 +82,17 @@ void Container::button_press(int x, int y, unsigned btn) { if(click_focus) { - const Geometry &cgeom=click_focus->get_geometry(); + const Geometry &cgeom = click_focus->get_geometry(); click_focus->button_press(x-cgeom.x, y-cgeom.y, btn); } else { - if(Widget *wdg=get_child_at(x, y)) + if(Widget *wdg = get_child_at(x, y)) { - click_focus=wdg; - click_button=btn; + click_focus = wdg; + click_button = btn; - const Geometry &cgeom=wdg->get_geometry(); + const Geometry &cgeom = wdg->get_geometry(); wdg->button_press(x-cgeom.x, y-cgeom.y, btn); } } @@ -98,19 +102,19 @@ void Container::button_release(int x, int y, unsigned btn) { if(click_focus) { - Widget *wdg=click_focus; + Widget *wdg = click_focus; if(btn==click_button) - click_focus=0; + click_focus = 0; - const Geometry &cgeom=wdg->get_geometry(); + const Geometry &cgeom = wdg->get_geometry(); wdg->button_release(x-cgeom.x, y-cgeom.y, btn); } else { - if(Widget *wdg=get_child_at(x, y)) + if(Widget *wdg = get_child_at(x, y)) { - const Geometry &cgeom=wdg->get_geometry(); + const Geometry &cgeom = wdg->get_geometry(); wdg->button_release(x-cgeom.x, y-cgeom.y, btn); } } @@ -120,15 +124,15 @@ void Container::pointer_motion(int x, int y) { if(click_focus) { - const Geometry &cgeom=click_focus->get_geometry(); + const Geometry &cgeom = click_focus->get_geometry(); click_focus->pointer_motion(x-cgeom.x, y-cgeom.y); } else { - Widget *wdg=get_child_at(x, y); + Widget *wdg = get_child_at(x, y); if(wdg) { - const Geometry &cgeom=wdg->get_geometry(); + const Geometry &cgeom = wdg->get_geometry(); wdg->pointer_motion(x-cgeom.x, y-cgeom.y); } } @@ -137,12 +141,17 @@ void Container::pointer_motion(int x, int y) void Container::pointer_leave() { Widget::pointer_leave(); - click_focus=0; + click_focus = 0; } -Container::Child *Container::create_child(Widget *wdg) +void Container::on_reparent() { - return new Child(*this, wdg); + for(list::iterator i=children.begin(); i!=children.end(); ++i) + { + if(Container *c = dynamic_cast((*i)->widget)) + c->on_reparent(); + (*i)->widget->update_style(); + } } @@ -156,13 +165,13 @@ Container::Child::Child(Container &c, Widget *w): Container::Child::~Child() { if(widget==container.click_focus) - container.click_focus=0; + container.click_focus = 0; } void Container::Child::visibility_changed(bool v) { if(!v && widget==container.click_focus) - container.click_focus=0; + container.click_focus = 0; } } // namespace GLtk