X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fcontainer.cpp;h=d02cc606394298c612bd7c94142298f88ffaf708;hb=18a5af8e80903eb9738cefe03825595877fbf447;hp=b7bd2ad5dc9b06f7eb88c08db4fd90b43356c781;hpb=36fced66c1ea8962e148ebddc0e021a8aedfc310;p=libs%2Fgltk.git diff --git a/source/container.cpp b/source/container.cpp index b7bd2ad..d02cc60 100644 --- a/source/container.cpp +++ b/source/container.cpp @@ -16,7 +16,8 @@ Container::Container(): click_button(0), pointer_focus(0), pointer_grabbed(false), - input_focus(0) + input_focus(0), + touch_focus(0) { } Container::~Container() @@ -166,7 +167,7 @@ Widget *Container::get_final_input_focus() const void Container::button_press(int x, int y, unsigned btn) { - if(Widget *child = get_pointer_target(x, y)) + if(Widget *child = get_pointer_target(x, y, false)) { if(!click_focus) { @@ -185,7 +186,7 @@ void Container::button_press(int x, int y, unsigned btn) void Container::button_release(int x, int y, unsigned btn) { - if(Widget *child = get_pointer_target(x, y)) + if(Widget *child = get_pointer_target(x, y, false)) { if(child==click_focus && btn==click_button) { @@ -201,7 +202,7 @@ void Container::button_release(int x, int y, unsigned btn) void Container::pointer_motion(int x, int y) { - Widget *child = get_pointer_target(x, y); + Widget *child = get_pointer_target(x, y, false); if(!pointer_grabbed) set_pointer_focus((!click_focus || child->get_geometry().is_inside(x, y)) ? child : 0); @@ -212,12 +213,14 @@ void Container::pointer_motion(int x, int y) } } -Widget *Container::get_pointer_target(int x, int y) const +Widget *Container::get_pointer_target(int x, int y, bool touch) const { if(pointer_grabbed) return pointer_focus; - else if(click_focus) + else if(!touch && click_focus) return click_focus; + else if(touch && touch_focus) + return touch_focus; else { Widget *child = get_child_at(x, y); @@ -234,6 +237,41 @@ void Container::pointer_leave() set_pointer_focus(0); } +void Container::touch_press(int x, int y, unsigned finger) +{ + if(Widget *child = get_pointer_target(x, y, true)) + { + // TODO track focus for each finger separately + if(!touch_focus) + touch_focus = child; + + const Geometry &cgeom = child->get_geometry(); + child->touch_press(x-cgeom.x, y-cgeom.y, finger); + } +} + +void Container::touch_release(int x, int y, unsigned finger) +{ + if(Widget *child = get_pointer_target(x, y, true)) + { + // TODO track focus for each finger separately + if(child==touch_focus) + touch_focus = 0; + + const Geometry &cgeom = child->get_geometry(); + child->touch_release(x-cgeom.x, y-cgeom.y, finger); + } +} + +void Container::touch_motion(int x, int y, unsigned finger) +{ + if(Widget *child = get_pointer_target(x, y, true)) + { + const Geometry &cgeom = child->get_geometry(); + child->touch_motion(x-cgeom.x, y-cgeom.y, finger); + } +} + void Container::key_press(unsigned key, unsigned mod) { if(input_focus)