more man pages (#213)

pull/238/head
nick black 5 years ago
parent a0d00c8aa3
commit daad1c7ea3
No known key found for this signature in database
GPG Key ID: 5F43400C21CBFACC

@ -0,0 +1,19 @@
notcurses_cell(3) -- operations on notcurses cells
==================================================
## SYNOPSIS
`#include <notcurses.h>`
## DESCRIPTION
## RETURN VALUES
## AUTHORS
Nick Black <nickblack@linux.com>
## SEE ALSO
notcurses_ncplane(3)

@ -0,0 +1,19 @@
notcurses_input(3) -- input via notcurses
=========================================
## SYNOPSIS
`#include <notcurses.h>`
## DESCRIPTION
## RETURN VALUES
## AUTHORS
Nick Black <nickblack@linux.com>
## SEE ALSO
notcurses(3)

@ -0,0 +1,19 @@
notcurses_ncvisual(3) -- notcurses multimedia
=============================================
## SYNOPSIS
`#include <notcurses.h>`
## DESCRIPTION
## RETURN VALUES
## AUTHORS
Nick Black <nickblack@linux.com>
## SEE ALSO
notcurses_ncplane(3)

@ -0,0 +1,19 @@
notcurses_output(3) -- output to ncplanes
=========================================
## SYNOPSIS
`#include <notcurses.h>`
## DESCRIPTION
## RETURN VALUES
## AUTHORS
Nick Black <nickblack@linux.com>
## SEE ALSO
notcurses_cell(3), notcurses_ncplane(3)

@ -0,0 +1,19 @@
notcurses_render(3) -- sync the physical display to virtual ncplanes
====================================================================
## SYNOPSIS
`#include <notcurses.h>`
## DESCRIPTION
## RETURN VALUES
## AUTHORS
Nick Black <nickblack@linux.com>
## SEE ALSO
notcurses_cell(3), notcurses_ncplane(3), notcurses_output(3)

@ -14,7 +14,7 @@ notcurses_const_stdplane(const struct notcurses* nc);`
## DESCRIPTION
`notcurses_stdplane` returns a handle to the standard ncplane for the context
`nc. The standard plane always exists, and is always the same size as the
`nc`. The standard plane always exists, and is always the same size as the
screen. It is an error to call `ncplane_destroy(3)`, `ncplane_resize(3)`, or
`ncplane_move(3)` on the standard plane, though it can be freely moved along
the z-axis.

@ -433,9 +433,6 @@ ncplane_move_below(struct ncplane* n, struct ncplane* below){
// Return the plane above this one, or NULL if this is at the top.
API struct ncplane* ncplane_below(struct ncplane* n);
// Return the plane below this one, or NULL if this is at the bottom.
API struct ncplane* ncplane_below(struct ncplane* n);
// Retrieve the cell at the cursor location on the specified plane, returning
// it in 'c'. This copy is safe to use until the ncplane is destroyed/erased.
API int ncplane_at_cursor(struct ncplane* n, cell* c);

Loading…
Cancel
Save