Mir: Handle close window events

This commit is contained in:
Marius Gripsgard 2018-01-13 01:58:11 +01:00
parent 0cba684794
commit 7cd39b7d15
1 changed files with 8 additions and 0 deletions

View File

@ -285,6 +285,11 @@ HandleWindow(MirWindowEvent const* event, SDL_Window* window)
}
}
static void
MIR_HandleClose(SDL_Window* window) {
SDL_SendWindowEvent(window, SDL_WINDOWEVENT_CLOSE, 0, 0);
}
void
MIR_HandleEvent(MirWindow* mirwindow, MirEvent const* ev, void* context)
{
@ -302,6 +307,9 @@ MIR_HandleEvent(MirWindow* mirwindow, MirEvent const* ev, void* context)
case (mir_event_type_window):
HandleWindow(MIR_mir_event_get_window_event(ev), window);
break;
case (mir_event_type_close_window):
MIR_HandleClose(window);
break;
default:
break;
}