X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fpanel.cpp;h=ac277a98ae1bfaa4b4823fd0ffe83401f2d73eb4;hb=d7274749cb0e171e59d7dc9d7d1712906a351119;hp=f17439a5eca810b8510d3537fc750a53c2b5868a;hpb=95210598ff214bbc8d05657aeffc4ce7801f211a;p=libs%2Fgltk.git diff --git a/source/panel.cpp b/source/panel.cpp index f17439a..ac277a9 100644 --- a/source/panel.cpp +++ b/source/panel.cpp @@ -5,6 +5,7 @@ Copyright © 2007 Mikko Rasa, Mikkosoft Productions Distributed under the LGPL */ +#include #include #include "button.h" #include "dropdown.h" @@ -15,6 +16,7 @@ Distributed under the LGPL #include "list.h" #include "panel.h" #include "part.h" +#include "table.h" #include "toggle.h" #include "vslider.h" @@ -49,6 +51,11 @@ void Panel::remove(Widget &wdg) ChildSeq::iterator i=find(children.begin(), children.end(), &wdg); if(i!=children.end()) { + if(&wdg==pointer_focus) + set_pointer_focus(0, 0); + if(&wdg==input_focus) + set_input_focus(0); + set_parent(wdg, 0); children.erase(i); } @@ -233,6 +240,7 @@ Panel::Loader::Loader(Panel &p, map &m): add("label", &Loader::child