aboutsummaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorMarvin Borner2020-08-26 15:07:01 +0200
committerMarvin Borner2020-08-26 15:07:01 +0200
commitae31470ce5d666981ab1fe50cb2b4b38ca4b113f (patch)
tree2a0106921a4fd6e2b7854bba949a4fa16c6b992e /apps
parentdb64897e79c92f7655fde53564e264d8c42dcd41 (diff)
Some optimizations and window moving
Diffstat (limited to 'apps')
-rw-r--r--apps/wm.c28
1 files changed, 16 insertions, 12 deletions
diff --git a/apps/wm.c b/apps/wm.c
index d0a6bc1..1c6fa2b 100644
--- a/apps/wm.c
+++ b/apps/wm.c
@@ -44,7 +44,6 @@ static void redraw_all()
struct window *win = iterator->data;
gui_win_on_win(exchange, win, win->x, win->y);
} while ((iterator = iterator->next) != NULL);
- gui_win_on_win(exchange, cursor, cursor->x, cursor->y);
memcpy(direct->fb, exchange->fb, exchange->pitch * exchange->height);
}
}
@@ -55,10 +54,6 @@ int main(int argc, char **argv)
vbe = (struct vbe *)argv[1];
printf("VBE: %dx%d\n", vbe->width, vbe->height);
- const u32 color[3] = { 0, 0, 0 };
- vesa_fill(vbe, color);
- gui_init("/font/spleen-16x32.psfu");
-
windows = list_new();
root = new_window(0, 0, vbe->width, vbe->height);
exchange = new_window(0, 0, vbe->width, vbe->height);
@@ -104,12 +99,12 @@ int main(int argc, char **argv)
struct event_keyboard *event = msg->data;
if (event->magic != KEYBOARD_MAGIC)
break;
- printf("Keypress %d %s!\n", event->scancode,
- event->press ? "pressed" : "released");
- if (event->press) {
- focused->x += 50;
- redraw_all();
- }
+ /* printf("Keypress %d %s!\n", event->scancode, */
+ /* event->press ? "pressed" : "released"); */
+ /* if (event->press) { */
+ /* focused->x += 50; */
+ /* redraw_all(); */
+ /* } */
break;
}
case EVENT_MOUSE: {
@@ -129,9 +124,18 @@ int main(int argc, char **argv)
else if ((int)(mouse_y + cursor->height) > vbe->height - 1)
mouse_y = vbe->height - cursor->height - 1;
+ gui_copy(direct, exchange, cursor->x, cursor->y, cursor->width,
+ cursor->height);
cursor->x = mouse_x;
cursor->y = mouse_y;
- redraw_all();
+ gui_win_on_win(direct, cursor, cursor->x, cursor->y);
+
+ if (event->but1 && mouse_x + (int)focused->width < vbe->width - 1 &&
+ mouse_y + (int)focused->height < vbe->height - 1) {
+ focused->x = mouse_x;
+ focused->y = mouse_y;
+ redraw_all(); // TODO: Function to redraw one window
+ }
break;
}
default: