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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
|
#include <curses.h>
#include "mucurses.h"
#include "cursor.h"
/** @file
*
* MuCurses clearing functions
*
*/
FILE_LICENCE ( GPL2_OR_LATER );
/**
* Clear a window to the bottom from current cursor position
*
* @v *win subject window
* @ret rc return status code
*/
int wclrtobot ( WINDOW *win ) {
struct cursor_pos pos;
_store_curs_pos( win, &pos );
do {
_wputc( win, ' ', WRAP );
} while ( win->curs_y + win->curs_x );
_restore_curs_pos( win, &pos );
return OK;
}
/**
* Clear a window to the end of the current line
*
* @v *win subject window
* @ret rc return status code
*/
int wclrtoeol ( WINDOW *win ) {
struct cursor_pos pos;
_store_curs_pos( win, &pos );
while ( ( win->curs_y - pos.y ) == 0 ) {
_wputc( win, ' ', WRAP );
}
_restore_curs_pos( win, &pos );
return OK;
}
/**
* Delete character under the cursor in a window
*
* @v *win subject window
* @ret rc return status code
*/
int wdelch ( WINDOW *win ) {
_wputc( win, ' ', NOWRAP );
_wcursback( win );
return OK;
}
/**
* Delete line under a window's cursor
*
* @v *win subject window
* @ret rc return status code
*/
int wdeleteln ( WINDOW *win ) {
struct cursor_pos pos;
_store_curs_pos( win, &pos );
/* let's just set the cursor to the beginning of the line and
let wclrtoeol do the work :) */
wmove( win, win->curs_y, 0 );
wclrtoeol( win );
_restore_curs_pos( win, &pos );
return OK;
}
/**
* Completely clear a window
*
* @v *win subject window
* @ret rc return status code
*/
int werase ( WINDOW *win ) {
wmove( win, 0, 0 );
wclrtobot( win );
return OK;
}
/**
* Completely clear the screen
*
* @ret rc return status code
*/
int erase ( void ) {
stdscr->scr->erase( stdscr->scr, stdscr->attrs );
return OK;
}
|