X-Git-Url: http://git.mutantstargoat.com?p=winnie;a=blobdiff_plain;f=src%2Fmouse.cc;h=f29841c628e24be29ecba620ffcdd0df092f580b;hp=db87be7a43cdd63fb0ed79f7c062e1124de26e7f;hb=b73087b9c4e30e034bb1690c492f4c9798e0d09b;hpb=5deac1a20d178aa7d2e8bb5cbc79b6584c6287f5 diff --git a/src/mouse.cc b/src/mouse.cc index db87be7..f29841c 100644 --- a/src/mouse.cc +++ b/src/mouse.cc @@ -1,4 +1,5 @@ #include +#include #include #include #include @@ -11,6 +12,8 @@ #include "geom.h" #include "gfx.h" #include "mouse.h" +#include "window.h" +#include "wm.h" #define BN_LEFT 1 #define BN_RIGHT 2 @@ -66,10 +69,48 @@ void process_mouse_event() return; } - /* - process each event and update the pointer and button state - * - send each pointer move and button press/release to the topmost window + Window *top = wm->get_window_at_pos(pointer_x, pointer_y); + if(top) { + wm->set_focused_window(top); + } + else { + wm->set_focused_window(0); + return; + } + + /* - send each pointer move and button press/release to the topmost window * with the pointer on it. */ + + int dx = pointer_x - prev_x; + int dy = pointer_y - prev_y; + + if(dx || dy) { + MouseMotionFuncType motion_callback = top->get_mouse_motion_callback(); + if(motion_callback) { + Rect rect = top->get_rect(); + motion_callback(top, pointer_x - rect.x, pointer_y - rect.y); + } + } + + MouseButtonFuncType button_callback = top->get_mouse_button_callback(); + if(button_callback && (bnstate != prev_state)) { + int num_bits = sizeof bnstate * CHAR_BIT; + for(int i=0; i> i) & 1; + int prev_s = (prev_state >> i) & 1; + if(s != prev_s) { + button_callback(top, i, s); + } + } + } + + unsigned char *fb = get_framebuffer(); + Rect scr = get_screen_size(); + fb += (scr.width * pointer_y + pointer_x) * 4; + fb[0] = 0; + fb[1] = 0; + fb[2] = 0; } void get_pointer_pos(int *x, int *y)