docs: remove references to ncplane_growtext

This commit is contained in:
Harrison Katz 2022-01-20 13:31:08 -08:00 committed by nick black
parent 337b1bc52c
commit 815bd9f7f2
2 changed files with 0 additions and 12 deletions

View File

@ -1521,15 +1521,6 @@ of [Unicode Annex #14](http://www.unicode.org/reports/tr14/tr14-34.html).
int ncplane_puttext(struct ncplane* n, int y, ncalign_e align, int ncplane_puttext(struct ncplane* n, int y, ncalign_e align,
const char* text, size_t* bytes); const char* text, size_t* bytes);
// Like ncplane_puttext(), we're going for an orderly presentation of (possibly
// bulk) text. Unlike ncplane_puttext(), we're going to grow the plane as
// necessary to present it. If the plane is scrolling, we'll grow the bottom
// out; we'll otherwise grow out to the right. Either way, no actual scrolling
// will occur.
int ncplane_growtext(struct ncplane* n, int y, ncalign_e align,
const char* text, size_t* bytes);
```
Lines and boxes can be drawn, interpolating their colors between their two Lines and boxes can be drawn, interpolating their colors between their two
endpoints. For a line of a single color, be sure to specify the same channels endpoints. For a line of a single color, be sure to specify the same channels
on both sides. Boxes allow fairly detailed specification of how they're drawn. on both sides. Boxes allow fairly detailed specification of how they're drawn.

View File

@ -76,8 +76,6 @@ notcurses_output - output to ncplanes
**int ncplane_puttext(struct ncplane* ***n***, int ***y***, ncalign_e ***align***, const char* ***text***, size_t* ***bytes***);** **int ncplane_puttext(struct ncplane* ***n***, int ***y***, ncalign_e ***align***, const char* ***text***, size_t* ***bytes***);**
**int ncplane_growtext(struct ncplane* ***n***, int ***y***, ncalign_e ***align***, const char* ***text***, size_t* ***bytes***);**
# DESCRIPTION # DESCRIPTION
These functions write EGCs (Extended Grapheme Clusters) to the specified These functions write EGCs (Extended Grapheme Clusters) to the specified
@ -93,7 +91,6 @@ These functions write EGCs (Extended Grapheme Clusters) to the specified
* **ncplane_vprintf()**: formatted output using **va_list** * **ncplane_vprintf()**: formatted output using **va_list**
* **ncplane_printf()**: formatted output using variadic arguments * **ncplane_printf()**: formatted output using variadic arguments
* **ncplane_puttext()**: multi-line, line-broken, aligned text * **ncplane_puttext()**: multi-line, line-broken, aligned text
* **ncplane_growtext()**: **ncplane_growtext()** with an autogrowing plane
All of these use the **ncplane**'s active styling, save **notcurses_putc()**, All of these use the **ncplane**'s active styling, save **notcurses_putc()**,
which uses the **nccell**'s styling. Functions accepting a single EGC expect a series which uses the **nccell**'s styling. Functions accepting a single EGC expect a series