GUI: view enter, exit callbacks. (#326)

This commit is contained in:
あく
2021-02-04 15:05:46 +03:00
committed by GitHub
parent cb4fb8e4ae
commit 2187dc7117
6 changed files with 72 additions and 6 deletions

View File

@@ -20,5 +20,8 @@ void view_dispatcher_draw_callback(Canvas* canvas, void* context);
/* ViewPort Input Callback */
void view_dispatcher_input_callback(InputEvent* event, void* context);
/* Set current view, dispatches view enter and exit */
void view_dispatcher_set_current_view(ViewDispatcher* view_dispatcher, View* view);
/* View to ViewDispatcher update event */
void view_dispatcher_update(ViewDispatcher* view_dispatcher, View* view);