Changes in uspace/app/terminal/terminal.h [e273e9e:4c6fd56] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/terminal/terminal.h
re273e9e r4c6fd56 1 1 /* 2 * Copyright (c) 202 4Jiri Svoboda2 * Copyright (c) 2023 Jiri Svoboda 3 3 * Copyright (c) 2012 Petr Koupy 4 4 * All rights reserved. … … 45 45 #include <gfx/context.h> 46 46 #include <gfx/coord.h> 47 #include <io/chargrid.h> 47 48 #include <io/con_srv.h> 48 #include <io/cons_event.h>49 49 #include <loc.h> 50 50 #include <stdatomic.h> 51 51 #include <str.h> 52 52 #include <task.h> 53 #include <termui.h>54 53 #include <ui/ui.h> 55 54 #include <ui/window.h> … … 82 81 size_t char_remains_len; 83 82 84 termui_t *termui; 85 86 termui_color_t default_bgcolor; 87 termui_color_t default_fgcolor; 88 termui_color_t emphasis_bgcolor; 89 termui_color_t emphasis_fgcolor; 90 termui_color_t selection_bgcolor; 91 termui_color_t selection_fgcolor; 83 sysarg_t cols; 84 sysarg_t rows; 85 chargrid_t *frontbuf; 86 chargrid_t *backbuf; 87 sysarg_t top_row; 92 88 93 89 sysarg_t ucols; … … 103 99 } terminal_t; 104 100 105 /** Terminal event */106 typedef struct {107 /** Link to list of events */108 link_t link;109 /** Console event */110 cons_event_t ev;111 } terminal_event_t;112 113 101 extern errno_t terminal_create(const char *, sysarg_t, sysarg_t, 114 102 terminal_flags_t, const char *, terminal_t **);
Note:
See TracChangeset
for help on using the changeset viewer.