iPXE
Macros | Functions | Variables
mucurses.h File Reference

MuCurses core implementation specific header file. More...

Go to the source code of this file.

Macros

#define WRAP   0
 
#define NOWRAP   1
 

Functions

 FILE_LICENCE (GPL2_OR_LATER_OR_UBDL)
 
void _wputch (WINDOW *win, chtype ch, int wrap) __nonnull
 Write a single character rendition to a window. More...
 
void _wputc (WINDOW *win, char c, int wrap) __nonnull
 Write a single character to a window. More...
 
void _wputchstr (WINDOW *win, const chtype *chstr, int wrap, int n) __nonnull
 Write a chtype string to a window. More...
 
void _wputstr (WINDOW *win, const char *str, int wrap, int n) __nonnull
 Write a standard c-style string to a window. More...
 
void _wcursback (WINDOW *win) __nonnull
 Retreat the cursor back one position (useful for a whole host of ops) More...
 

Variables

SCREEN _ansi_screen
 

Detailed Description

MuCurses core implementation specific header file.

Definition in file mucurses.h.

Macro Definition Documentation

◆ WRAP

#define WRAP   0

Definition at line 12 of file mucurses.h.

◆ NOWRAP

#define NOWRAP   1

Definition at line 13 of file mucurses.h.

Function Documentation

◆ FILE_LICENCE()

FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL  )

◆ _wputch()

void _wputch ( WINDOW win,
chtype  ch,
int  wrap 
)

Write a single character rendition to a window.

Parameters
*winwindow in which to write
chcharacter rendition to write
wrapwrap "switch"

Definition at line 50 of file mucurses.c.

50  {
51  /* make sure we set the screen cursor to the right position
52  first! */
53  _wupdcurs(win);
54  win->scr->putc(win->scr, ch);
55  if ( ++(win->curs_x) - win->width == 0 ) {
56  if ( wrap == WRAP ) {
57  win->curs_x = 0;
58  /* specification says we should really scroll,
59  but we have no buffer to scroll with, so we
60  can only overwrite back at the beginning of
61  the window */
62  if ( ++(win->curs_y) - win->height == 0 )
63  win->curs_y = 0;
64  } else {
65  (win->curs_x)--;
66  }
67  }
68 }
unsigned int curs_y
Definition: curses.h:97
unsigned int height
Definition: curses.h:99
unsigned int width
window dimensions
Definition: curses.h:99
uint8_t ch
Definition: registers.h:83
SCREEN * scr
screen with which window associates
Definition: curses.h:91
void(* putc)(struct _curses_screen *scr, chtype c)
Write character to current cursor position.
Definition: curses.h:63
static void _wupdcurs(WINDOW *win) __nonnull
Update cursor position.
Definition: mucurses.c:38
#define WRAP
Definition: mucurses.h:12
unsigned int curs_x
window cursor position
Definition: curses.h:97

References _wupdcurs(), ch, _curses_window::curs_x, _curses_window::curs_y, _curses_window::height, _curses_screen::putc, _curses_window::scr, _curses_window::width, and WRAP.

Referenced by _printw_handler(), _wgetc(), _wputc(), _wputchstr(), delwin(), slk_restore(), waddch(), wborder(), wgetch(), whline(), and wvline().

◆ _wputc()

void _wputc ( WINDOW win,
char  c,
int  wrap 
)

Write a single character to a window.

Parameters
*winwindow in which to write
ccharacter rendition to write
wrapwrap "switch"

Definition at line 77 of file mucurses.c.

77  {
78  _wputch ( win, ( ( ( unsigned char ) c ) | win->attrs ), wrap );
79 }
uint32_t c
Definition: md4.c:30
attr_t attrs
window attributes
Definition: curses.h:93
void _wputch(WINDOW *win, chtype ch, int wrap) __nonnull
Write a single character rendition to a window.
Definition: mucurses.c:50

References _wputch(), _curses_window::attrs, and c.

Referenced by _wputstr(), wclrtobot(), wclrtoeol(), and wdelch().

◆ _wputchstr()

void _wputchstr ( WINDOW win,
const chtype chstr,
int  wrap,
int  n 
)

Write a chtype string to a window.

Parameters
*winwindow in which to write
*chstrchtype string
wrapwrap "switch"
nwrite at most n chtypes

Definition at line 107 of file mucurses.c.

107  {
108  for ( ; *chstr && n-- ; chstr++ ) {
109  _wputch(win,*chstr,wrap);
110  }
111 }
void _wputch(WINDOW *win, chtype ch, int wrap) __nonnull
Write a single character rendition to a window.
Definition: mucurses.c:50

References _wputch().

Referenced by waddchnstr().

◆ _wputstr()

void _wputstr ( WINDOW win,
const char *  str,
int  wrap,
int  n 
)

Write a standard c-style string to a window.

Parameters
*winwindow in which to write
*strstring
wrapwrap "switch"
nwrite at most n chars from *str

Definition at line 121 of file mucurses.c.

121  {
122  for ( ; *str && n-- ; str++ ) {
123  _wputc ( win, *str, wrap );
124  }
125 }
void _wputc(WINDOW *win, char c, int wrap) __nonnull
Write a single character to a window.
Definition: mucurses.c:77

References _wputc().

Referenced by _print_label(), and waddnstr().

◆ _wcursback()

void _wcursback ( WINDOW win)

Retreat the cursor back one position (useful for a whole host of ops)

Parameters
*winwindow in which to retreat

Definition at line 87 of file mucurses.c.

87  {
88  if ( win->curs_x == 0 ) {
89  if ( win->curs_y == 0 )
90  win->curs_y = win->height - 1;
91  win->curs_x = win->width = 1;
92  } else {
93  win->curs_x--;
94  }
95 
96  _wupdcurs(win);
97 }
unsigned int curs_y
Definition: curses.h:97
unsigned int height
Definition: curses.h:99
unsigned int width
window dimensions
Definition: curses.h:99
static void _wupdcurs(WINDOW *win) __nonnull
Update cursor position.
Definition: mucurses.c:38
unsigned int curs_x
window cursor position
Definition: curses.h:97

References _wupdcurs(), _curses_window::curs_x, _curses_window::curs_y, _curses_window::height, and _curses_window::width.

Referenced by wdelch(), wgetch(), and wgetnstr().

Variable Documentation

◆ _ansi_screen

SCREEN _ansi_screen

Definition at line 93 of file ansi_screen.c.