aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--apps/wm.c35
-rw-r--r--libc/inc/sys.h14
2 files changed, 31 insertions, 18 deletions
diff --git a/apps/wm.c b/apps/wm.c
index 54d8f5c..f43a3f0 100644
--- a/apps/wm.c
+++ b/apps/wm.c
@@ -43,6 +43,7 @@ static struct window *direct = NULL;
static struct window *root = NULL;
static struct window *wallpaper = NULL;
static struct window *cursor = NULL;
+static struct window *focused = NULL;
static struct keymap *keymap = NULL;
static struct client wm_client = { 0 };
static struct {
@@ -271,9 +272,10 @@ static void window_redraw(struct window *win)
vec2 pos2 = vec2(pos1.x + win->ctx.size.x, pos1.y + win->ctx.size.y);
rectangle_redraw(pos1, pos2, win);
- if (win != cursor)
+ if (win != cursor) {
window_redraw(cursor);
- buffer_flush();
+ buffer_flush();
+ }
}
// TODO: Fix strange artifacts after destroying
@@ -284,7 +286,7 @@ static void window_destroy(struct window *win)
rectangle_redraw(win->pos, vec2_add(win->pos, win->ctx.size), win);
buffer_flush();
list_remove(windows, list_first_data(windows, win));
- free(win->ctx.fb);
+ sys_free(win->ctx.fb);
free(win);
}
@@ -346,16 +348,27 @@ static void handle_event_mouse(struct event_mouse *event)
cursor->pos = mouse.pos;
- if (!vec2_eq(cursor->pos, cursor->pos_prev))
- window_redraw(cursor);
-
struct window *win = window_at(mouse.pos);
- if (win) {
- struct message_mouse msg = { 0 };
- msg.header.state = MSG_GO_ON;
- msg.pos = vec2_sub(mouse.pos, win->pos);
- msg_send(win->client.pid, GUI_MOUSE, &msg, sizeof(msg));
+ if (win && !(win->flags & WF_NO_FOCUS) && !event->but1 && !event->but2 && !event->but3)
+ focused = win;
+
+ if (focused && !(focused->flags & WF_NO_DRAG) && event->but1 && special_keys.alt) {
+ focused->pos_prev = focused->pos;
+ focused->pos = mouse.pos;
+ window_redraw(focused);
+ return;
+ } else if (!vec2_eq(cursor->pos, cursor->pos_prev)) {
+ window_redraw(cursor);
+ buffer_flush();
}
+
+ if (!win)
+ return;
+
+ struct message_mouse msg = { 0 };
+ msg.header.state = MSG_GO_ON;
+ msg.pos = vec2_sub(mouse.pos, win->pos);
+ msg_send(win->client.pid, GUI_MOUSE, &msg, sizeof(msg));
}
/**
diff --git a/libc/inc/sys.h b/libc/inc/sys.h
index caa1dbd..19fb3ee 100644
--- a/libc/inc/sys.h
+++ b/libc/inc/sys.h
@@ -38,17 +38,17 @@ enum sys {
struct event_keyboard {
u32 magic;
- int press;
- int scancode;
+ u32 scancode;
+ u8 press;
};
struct event_mouse {
u32 magic;
- int diff_x;
- int diff_y;
- int but1;
- int but2;
- int but3;
+ s32 diff_x;
+ s32 diff_y;
+ u8 but1;
+ u8 but2;
+ u8 but3;
};
struct stat {