X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fpanel.cpp;h=a4b27699f693c71ff7f01a62b939ce60377d96d3;hb=9b29612d1cde85fee9b3f011e86a5cabe5dbcce3;hp=22ccb1b97fbe9bde56fd38186e7233157f698f46;hpb=48fd4db84c4d0b43305d85f74de99eb4fef04fd6;p=libs%2Fgltk.git diff --git a/source/panel.cpp b/source/panel.cpp index 22ccb1b..a4b2769 100644 --- a/source/panel.cpp +++ b/source/panel.cpp @@ -7,6 +7,7 @@ Distributed under the LGPL #include #include "button.h" +#include "dropdown.h" #include "entry.h" #include "hslider.h" #include "indicator.h" @@ -14,6 +15,7 @@ Distributed under the LGPL #include "list.h" #include "panel.h" #include "part.h" +#include "table.h" #include "toggle.h" #include "vslider.h" @@ -48,11 +50,26 @@ 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); } } +void Panel::raise(Widget &wdg) +{ + ChildSeq::iterator i=find(children.begin(), children.end(), &wdg); + if(i!=children.end()) + { + children.erase(i); + children.push_back(&wdg); + } +} + void Panel::button_press(int x, int y, unsigned btn) { if(pointer_grab>0) @@ -140,6 +157,22 @@ void Panel::child_hidden(Widget &wdg) set_pointer_focus(0, 0); } +void Panel::grab_pointer(Widget &wdg) +{ + if(pointer_grab==0 || pointer_focus==&wdg) + set_pointer_focus(&wdg, 255); + else + throw InvalidState("Pointer is already grabbed"); +} + +void Panel::ungrab_pointer(Widget &wdg) +{ + if(pointer_focus==&wdg) + set_pointer_focus(0, 0); + else if(pointer_grab>0) + throw Exception("Someone is trying to steal the pointer!"); +} + void Panel::render_special(const Part &part) const { if(part.get_name()=="children") @@ -199,12 +232,14 @@ Panel::Loader::Loader(Panel &p, map &m): wdg_map(m) { add("button", &Loader::child