blob: 30229e50609ef9a02a20aaf5d8ca5f3b8e3ce00a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
#include <stdlib.h>
#include <string.h>
#include "eve.h"
#include "eve_kbd.h"
#include "screen.h"
#include "window.h"
#include "view.h"
void eve_view_init(EVEView *view, EVEWindow *window, eve_view_touch_t touch, eve_view_draw_t draw, void *param) {
view->touch = touch;
view->draw = draw;
view->param = param;
view->window = window;
window->view = view;
}
void eve_view_stack_init(EVEViewStack *stack) {
memset(stack, 0, sizeof(EVEViewStack));
}
void eve_view_create(EVEWindow *window, EVEViewStack *stack, eve_view_constructor_t constructor) {
if (stack->level < EVE_VIEW_SIZE_STACK - 1) {
stack->constructor[stack->level] = constructor;
stack->level++;
constructor(window, stack);
}
}
void eve_view_destroy(EVEWindow *window, EVEViewStack *stack) {
if (stack->level > 1) {
eve_view_constructor_t constructor;
stack->level--;
constructor = stack->constructor[stack->level - 1];
constructor(window, stack);
}
}
|