X-Git-Url: http://git.mutantstargoat.com?a=blobdiff_plain;f=src%2Fwm.cc;h=89b709f94766e1edecc9465cbb0094f0096a3a04;hb=6dc42c0e7292d6d94de640ddd7de3ee5c808e9c2;hp=ec73a5bc112558c015c573bb4ae533247aaaebce;hpb=d114b136897ca569d819da5f9b75bd08f9cbe2c0;p=winnie diff --git a/src/wm.cc b/src/wm.cc index ec73a5b..89b709f 100644 --- a/src/wm.cc +++ b/src/wm.cc @@ -130,6 +130,8 @@ void WindowManager::process_windows() Rect mouse_rect = {mouse_x, mouse_y, mouse_cursor.get_width(), mouse_cursor.get_height()}; invalidate_region(mouse_rect); + + gfx_update(); } void WindowManager::add_window(Window *win) @@ -163,6 +165,18 @@ void WindowManager::remove_window(Window *win) void WindowManager::set_focused_window(Window *win) { + if(win == focused_win) { + return; + } + + if(focused_win) { + // invalidate the frame (if any) + Window *parent = focused_win->get_parent(); + if(parent && parent != root_win) { + parent->invalidate(); + } + } + if(!win) { focused_win = 0; return; @@ -211,17 +225,13 @@ Window *WindowManager::get_window_at_pos(int pointer_x, int pointer_y) static void display(Window *win) { - if(win->get_managed()) { - fill_rect(win->get_rect(), 255, 211, 5); - win->draw(win->get_parent()->get_rect()); - } + fill_rect(win->get_rect(), 255, 211, 5); } static int prev_x = -1, prev_y; static void mouse(Window *win, int bn, bool pressed) { - printf("mouse callback (%d, %s)\n", bn, pressed ? "pressed" : "released"); if(bn == 0) { if(pressed) { get_pointer_pos(&prev_x, &prev_y);