X-Git-Url: https://eleni.mutantstargoat.com/git/?p=winnie;a=blobdiff_plain;f=src%2Fwm.cc;h=7fe13fbcf6a1929a38661722bdab202f5151ee28;hp=056c6e7b94a839281b6791d8cbbcd7a6ef71821e;hb=52044efd7717f4b02bd463c9a26f83c9a41953ea;hpb=906b341b177e5947710107eceb9ab2e4ee09528c diff --git a/src/wm.cc b/src/wm.cc index 056c6e7..7fe13fb 100644 --- a/src/wm.cc +++ b/src/wm.cc @@ -3,10 +3,11 @@ #include // TODO #include "gfx.h" -#include "wm.h" -#include "window.h" #include "mouse.h" #include "mouse_cursor.h" +#include "text.h" +#include "wm.h" +#include "window.h" WindowManager *wm; static WindowManager wminst; @@ -80,8 +81,8 @@ WindowManager::WindowManager() frame_thickness = 8; titlebar_thickness = 16; - frame_fcolor[0] = frame_fcolor[1] = frame_fcolor[2] = 0; - frame_ucolor[0] = frame_ucolor[1] = frame_ucolor[2] = 255; + set_focused_frame_color(36, 59, 98); + set_unfocused_frame_color(80, 129, 162); mouse_cursor.set_image(mouse_cursor_width, mouse_cursor_height); unsigned char *pixels = mouse_cursor.get_image(); @@ -244,7 +245,7 @@ void WindowManager::set_focused_frame_color(int r, int g, int b) frame_fcolor[2] = b; } -void WindowManager::get_focused_frame_color(int *r, int *g, int *b) +void WindowManager::get_focused_frame_color(int *r, int *g, int *b) const { *r = frame_fcolor[0]; *g = frame_fcolor[1]; @@ -258,6 +259,13 @@ void WindowManager::set_unfocused_frame_color(int r, int g, int b) frame_ucolor[2] = b; } +void WindowManager::get_unfocused_frame_color(int *r, int *g, int *b) const +{ + *r = frame_ucolor[0]; + *g = frame_ucolor[1]; + *b = frame_ucolor[2]; +} + Window *WindowManager::get_grab_window() const { return grab_win; @@ -310,17 +318,24 @@ void WindowManager::sink_window(Window *win) static void display(Window *win) { //frame display: - Window **children = win->get_children(); - for(int i=0; iget_children_count(); i++) { - if(children[0] == wm->get_focused_window()) { - int r, g, b; - wm->get_focused_frame_color(&r, &g, &b); - fill_rect(win->get_absolute_rect(), r, g, b); - return; - } + Window *child = win->get_children()[0]; + int r, g, b; + Rect abs_rect = win->get_absolute_rect(); + + //TODO 5 not hardcoded + set_text_position(abs_rect.x + 5, abs_rect.y + 15); + set_text_color(255, 255, 255); + + if(child == wm->get_focused_window()) { + wm->get_focused_frame_color(&r, &g, &b); + fill_rect(abs_rect, r, g, b); + } + else { + wm->get_unfocused_frame_color(&r, &g, &b); + fill_rect(win->get_absolute_rect(), r, g, b); } - fill_rect(win->get_absolute_rect(), 74, 175, 198); + draw_text(child->get_title()); } static int prev_x, prev_y;