aboutsummaryrefslogtreecommitdiff
path: root/src/x11_window.c
diff options
context:
space:
mode:
authorHarry Jeffery <harry@exec64.co.uk>2019-07-13 15:34:31 +0100
committerHarry Jeffery <harry@exec64.co.uk>2019-07-13 16:53:22 +0100
commit00491cc886f8d87ecf3f69ae379fe3489d514d05 (patch)
tree2cc440ebfaeffc675a9da66dc21d2e40702991e1 /src/x11_window.c
parent33e283e42345e41fb09acdccb3a20e92cfea5a34 (diff)
downloadimv-00491cc886f8d87ecf3f69ae379fe3489d514d05.tar.gz
x11_window: Handle most input events
Diffstat (limited to 'src/x11_window.c')
-rw-r--r--src/x11_window.c57
1 files changed, 48 insertions, 9 deletions
diff --git a/src/x11_window.c b/src/x11_window.c
index 36b9155..60cea42 100644
--- a/src/x11_window.c
+++ b/src/x11_window.c
@@ -6,6 +6,7 @@
#include <assert.h>
#include <poll.h>
#include <stdlib.h>
+#include <string.h>
struct imv_window {
Display *x_display;
@@ -37,7 +38,7 @@ struct imv_window *imv_window_create(int w, int h, const char *title)
XSetWindowAttributes wa = {
.colormap = cmap,
- .event_mask = ExposureMask | KeyPressMask
+ .event_mask = ExposureMask | KeyPressMask | KeyReleaseMask
};
window->x_window = XCreateWindow(window->x_display, root, 0, 0, w, h,
@@ -115,7 +116,7 @@ void imv_window_get_mouse_position(struct imv_window *window, double *x, double
void imv_window_present(struct imv_window *window)
{
- (void)window;
+ glXSwapBuffers(window->x_display, window->x_window);
}
void imv_window_wait_for_event(struct imv_window *window, double timeout)
@@ -130,16 +131,18 @@ void imv_window_wait_for_event(struct imv_window *window, double timeout)
void imv_window_push_event(struct imv_window *window, struct imv_event *e)
{
- (void)window;
- (void)e;
- // XSendEvent
- // XClientMessageEvent
+ XEvent xe = {
+ .xclient = {
+ .type = ClientMessage,
+ .format = 8
+ }
+ };
+ memcpy(&xe.xclient.data.l[0], &e->data.custom, sizeof(void*));
+ XSendEvent(window->x_display, window->x_window, True, 0xfff, &xe);
}
void imv_window_pump_events(struct imv_window *window, imv_event_handler handler, void *data)
{
- (void)handler;
- (void)data;
XEvent xev;
while (XPending(window->x_display)) {
@@ -149,7 +152,43 @@ void imv_window_pump_events(struct imv_window *window, imv_event_handler handler
XWindowAttributes wa;
XGetWindowAttributes(window->x_display, window->x_window, &wa);
glViewport(0, 0, wa.width, wa.height);
- glXSwapBuffers(window->x_display, window->x_window);
+ struct imv_event e = {
+ .type = IMV_EVENT_RESIZE,
+ .data = {
+ .resize = {
+ .width = wa.width,
+ .height = wa.height,
+ .buffer_width = wa.width,
+ .buffer_height = wa.height
+ }
+ }
+ };
+ if (handler) {
+ handler(data, &e);
+ }
+ } else if (xev.type == KeyPress || xev.type == KeyRelease) {
+ struct imv_event e = {
+ .type = IMV_EVENT_KEYBOARD,
+ .data = {
+ .keyboard = {
+ .scancode = xev.xkey.keycode - 8,
+ .pressed = xev.type == KeyPress
+ }
+ }
+ };
+ if (handler) {
+ handler(data, &e);
+ }
+ } else if (xev.type == ClientMessage) {
+ struct imv_event e = {
+ .type = IMV_EVENT_CUSTOM,
+ .data = {
+ .custom = (void*)*((void**)&xev.xclient.data.l[0])
+ }
+ };
+ if (handler) {
+ handler(data, &e);
+ }
}
}