From 94fde9dad4d2c9ef179289ef52d2a629d9d3977a Mon Sep 17 00:00:00 2001 From: P. J. McDermott Date: Fri, 06 Aug 2021 16:30:44 -0400 Subject: tk: Pass key events --- (limited to 'src/tk/radio.c') diff --git a/src/tk/radio.c b/src/tk/radio.c index 7e4719c..f20b902 100644 --- a/src/tk/radio.c +++ b/src/tk/radio.c @@ -71,6 +71,16 @@ _mftk_radio_layout(struct mftk_widget *w) } static int +_mftk_radio_key_event(struct mftk_widget *w, SDL_Event *e, int x, int y) +{ + struct mftk_radio *r = (struct mftk_radio *) w; + + /* TODO */ + + return 0; +} + +static int _mftk_radio_mouse_event(struct mftk_widget *w, SDL_Event *e, int x, int y) { struct mftk_radio *r = (struct mftk_radio *) w; -- cgit v0.9.1