Changeset 899bdfd in mainline for uspace/app/terminal/terminal.h


Ignore:
Timestamp:
2024-09-12T13:14:20Z (18 months ago)
Author:
Jiří Zárevúcky <zarevucky.jiri@…>
Branches:
master
Children:
4c2339b
Parents:
dd50aa19
git-author:
Jiří Zárevúcky <zarevucky.jiri@…> (2024-09-12 11:47:56)
git-committer:
Jiří Zárevúcky <zarevucky.jiri@…> (2024-09-12 13:14:20)
Message:

Terminal scrolling and resizing support

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/app/terminal/terminal.h

    rdd50aa19 r899bdfd  
    4545#include <gfx/context.h>
    4646#include <gfx/coord.h>
    47 #include <io/chargrid.h>
    4847#include <io/con_srv.h>
    4948#include <loc.h>
     
    5150#include <str.h>
    5251#include <task.h>
     52#include <termui.h>
    5353#include <ui/ui.h>
    5454#include <ui/window.h>
     
    8181        size_t char_remains_len;
    8282
    83         sysarg_t cols;
    84         sysarg_t rows;
    85         chargrid_t *frontbuf;
    86         chargrid_t *backbuf;
    87         sysarg_t top_row;
     83        termui_t *termui;
     84
     85        termui_color_t default_bgcolor;
     86        termui_color_t default_fgcolor;
     87        termui_color_t emphasis_bgcolor;
     88        termui_color_t emphasis_fgcolor;
     89        termui_color_t selection_bgcolor;
     90        termui_color_t selection_fgcolor;
    8891
    8992        sysarg_t ucols;
Note: See TracChangeset for help on using the changeset viewer.