Implement loading an image when file is dropped

This commit is contained in:
2024-01-10 00:00:37 +00:00
parent 9415786adc
commit 2fd02aea45
2 changed files with 49 additions and 1 deletions

View File

@@ -2,13 +2,17 @@
#define DROP_AREA_H
#include "colour.h"
#include "image.h"
#include "window.h"
#include <stdbool.h>
typedef struct {
render_rect_t rect;
render_rect_t image_rect;
colour_t border_colour;
image_t image;
bool mouseover;
bool image_loaded;
} drop_area_t;
void init_drop_area(window_t *wnd, drop_area_t *area, render_rect_t rect,