diff options
| author | Uros Majstorovic <majstor@majstor.org> | 2021-03-25 19:58:43 +0100 | 
|---|---|---|
| committer | Uros Majstorovic <majstor@majstor.org> | 2021-03-25 19:58:43 +0100 | 
| commit | 58232586e1ed65fc8a8e382796628aa087b5dc4c (patch) | |
| tree | a2a174228ad0b217369820750a6c1d4f087d8d7b /fw/fe310/eos/eve/screen/window.h | |
| parent | 95f69d4f83ad8f7fbb56349f29e902928510362b (diff) | |
uievt added to view
Diffstat (limited to 'fw/fe310/eos/eve/screen/window.h')
| -rw-r--r-- | fw/fe310/eos/eve/screen/window.h | 4 | 
1 files changed, 3 insertions, 1 deletions
diff --git a/fw/fe310/eos/eve/screen/window.h b/fw/fe310/eos/eve/screen/window.h index 3e082d4..76ccee9 100644 --- a/fw/fe310/eos/eve/screen/window.h +++ b/fw/fe310/eos/eve/screen/window.h @@ -23,11 +23,12 @@ typedef struct EVEWindowKbd {  typedef struct EVEWindowRoot {      EVEWindow w;      uint32_t mem_next; +    EVEFont *font;      EVEWindowKbd *win_kbd;  } EVEWindowRoot;  void eve_window_init(EVEWindow *window, EVERect *g, EVEWindow *parent, char *name); -void eve_window_init_root(EVEWindowRoot *window, EVERect *g, char *name); +void eve_window_init_root(EVEWindowRoot *window, EVERect *g, char *name, EVEFont *font);  void eve_window_init_kbd(EVEWindowKbd *window, EVERect *g, EVEWindowRoot *root, char *name, EVEKbd *kbd);  void eve_window_set_parent(EVEWindow *window, EVEWindow *parent); @@ -48,3 +49,4 @@ void eve_window_root_touch(EVETouch *touch, uint16_t evt, uint8_t tag0, void *wi  EVEKbd *eve_window_kbd(EVEWindow *window);  void eve_window_kbd_attach(EVEWindow *window);  void eve_window_kbd_detach(EVEWindow *window); +EVEFont *eve_window_font(EVEWindow *window);
\ No newline at end of file  | 
