diff options
-rw-r--r-- | apps/mandelbrot.c | 2 | ||||
-rw-r--r-- | apps/window.c | 1 | ||||
-rw-r--r-- | apps/wm.c | 115 | ||||
-rw-r--r-- | kernel/inc/proc.h | 2 | ||||
-rw-r--r-- | libgui/gui.c | 5 |
5 files changed, 82 insertions, 43 deletions
diff --git a/apps/mandelbrot.c b/apps/mandelbrot.c index dc4f6ce..7a7aee1 100644 --- a/apps/mandelbrot.c +++ b/apps/mandelbrot.c @@ -57,6 +57,8 @@ int main() print("[mandelbrot window loaded]\n"); struct window win = { 0 }; + win.width = 500; + win.height = 300; gui_new_window(&win); gui_fill(&win, COLOR_BG); diff --git a/apps/window.c b/apps/window.c index f20bab3..9461f93 100644 --- a/apps/window.c +++ b/apps/window.c @@ -58,7 +58,6 @@ int main() default: break; } - yield(); } return 0; } @@ -65,6 +65,78 @@ static void redraw_all() } } +static int mouse_skip = 0; +static int mouse_pressed[3] = { 0 }; +static void handle_mouse(struct event_mouse *event) +{ + if (event->magic != MOUSE_MAGIC) + return; + + // Cursor movement + mouse_x += event->diff_x; + mouse_y -= event->diff_y; + + if (mouse_x < 0) + mouse_x = 0; + else if ((int)(mouse_x + cursor.width) > vbe.width - 1) + mouse_x = vbe.width - cursor.width - 1; + + if (mouse_y < 0) + mouse_y = 0; + else if ((int)(mouse_y + cursor.height) > vbe.height - 1) + mouse_y = vbe.height - cursor.height - 1; + + // Restore cursor buffer backup + gui_copy(&direct, &exchange, cursor.x, cursor.y, cursor.width, cursor.height); + + // Window focus + if (!mouse_pressed[0] && !mouse_pressed[1]) + focused = window_at(mouse_x, mouse_y); + + // Window position + if (event->but1 && !mouse_pressed[1]) { + mouse_pressed[0] = 1; + if (focused && !(focused->flags & WF_NO_DRAG)) { + if (focused->x + event->diff_x >= 0) + focused->x += event->diff_x; + if (focused->y - event->diff_y >= 0) + focused->y -= event->diff_y; + if (mouse_skip % MOUSE_SKIP == 0) { + mouse_skip = 0; + redraw_all(); // TODO: Function to redraw one window + } + } + } else if (mouse_pressed[0]) { + mouse_pressed[0] = 0; + redraw_all(); + } + + // Window size + if (event->but2 && !mouse_pressed[0]) { + if (!mouse_pressed[1]) { + mouse_x = focused->x + focused->width; + mouse_y = focused->y + focused->height; + } else if (focused && !(focused->flags & WF_NO_RESIZE) && + mouse_skip % MOUSE_SKIP == 0) { + mouse_skip = 0; + if (mouse_x - focused->x >= 0) + focused->width = mouse_x - focused->x; + if (mouse_y - focused->y >= 0) + focused->height = mouse_y - focused->y; + redraw_all(); // TODO: Function to redraw one window + } + mouse_pressed[1] = 1; + } else if (mouse_pressed[1]) { + mouse_pressed[1] = 0; + redraw_all(); + } + + cursor.x = mouse_x; + cursor.y = mouse_y; + gui_win_on_win(&direct, &cursor, cursor.x, cursor.y); + mouse_skip++; +} + // TODO: Clean this god-function int main(int argc, char **argv) { @@ -95,8 +167,6 @@ int main(int argc, char **argv) event_register(EVENT_MOUSE); struct message *msg; - int mouse_skip = 0; - int but1_pressed = 0; while (1) { if (!(msg = msg_receive())) { yield(); @@ -120,46 +190,9 @@ int main(int argc, char **argv) case MSG_REDRAW: redraw_all(); break; - case EVENT_MOUSE: { - struct event_mouse *event = msg->data; - if (event->magic != MOUSE_MAGIC) - break; - mouse_x += event->diff_x; - mouse_y -= event->diff_y; - - if (mouse_x < 0) - mouse_x = 0; - else if ((int)(mouse_x + cursor.width) > vbe.width - 1) - mouse_x = vbe.width - cursor.width - 1; - - if (mouse_y < 0) - mouse_y = 0; - 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; - if (!but1_pressed) - focused = window_at(cursor.x, cursor.y); - - if (event->but1) { - but1_pressed = 1; - if (focused && !(focused->flags & WF_NO_DRAG) && - mouse_skip % MOUSE_SKIP == 0) { - mouse_skip = 0; - focused->x = cursor.x; - focused->y = cursor.y; - redraw_all(); // TODO: Function to redraw one window - } - } else { - but1_pressed = 0; - } - gui_win_on_win(&direct, &cursor, cursor.x, cursor.y); - mouse_skip++; + case EVENT_MOUSE: + handle_mouse(msg->data); break; - } default: break; } diff --git a/kernel/inc/proc.h b/kernel/inc/proc.h index 89144ca..ea78885 100644 --- a/kernel/inc/proc.h +++ b/kernel/inc/proc.h @@ -9,7 +9,7 @@ #include <list.h> #include <sys.h> -#define PROC_QUANTUM 42 // Milliseconds +#define PROC_QUANTUM 420 // Nanoseconds or something // TODO #define EFLAGS_ALWAYS 0x2 // Always one #define EFLAGS_INTERRUPTS 0x200 // Enable interrupts diff --git a/libgui/gui.c b/libgui/gui.c index 486fe8e..9744f75 100644 --- a/libgui/gui.c +++ b/libgui/gui.c @@ -111,6 +111,11 @@ void gui_win_on_win(struct window *dest, struct window *src, int x, int y) return; } + if (x < 0) + x = 0; + if (y < 0) + y = 0; + int bypp = dest->bpp >> 3; u8 *srcfb = src->fb; u8 *destfb = &dest->fb[x * bypp + y * dest->pitch]; |