mirror of
https://github.com/dankamongmen/notcurses
synced 2025-03-09 17:19:03 -04:00
more man pages (#213)
This commit is contained in:
parent
a0d00c8aa3
commit
daad1c7ea3
19
doc/man/man3/notcurses_cell.3.ronn
Normal file
19
doc/man/man3/notcurses_cell.3.ronn
Normal file
@ -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)
|
19
doc/man/man3/notcurses_input.3.ronn
Normal file
19
doc/man/man3/notcurses_input.3.ronn
Normal file
@ -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)
|
19
doc/man/man3/notcurses_ncvisual.3.ronn
Normal file
19
doc/man/man3/notcurses_ncvisual.3.ronn
Normal file
@ -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)
|
19
doc/man/man3/notcurses_output.3.ronn
Normal file
19
doc/man/man3/notcurses_output.3.ronn
Normal file
@ -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)
|
19
doc/man/man3/notcurses_render.3.ronn
Normal file
19
doc/man/man3/notcurses_render.3.ronn
Normal file
@ -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
|
## DESCRIPTION
|
||||||
|
|
||||||
`notcurses_stdplane` returns a handle to the standard ncplane for the context
|
`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
|
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
|
`ncplane_move(3)` on the standard plane, though it can be freely moved along
|
||||||
the z-axis.
|
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.
|
// Return the plane above this one, or NULL if this is at the top.
|
||||||
API struct ncplane* ncplane_below(struct ncplane* n);
|
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
|
// 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.
|
// 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);
|
API int ncplane_at_cursor(struct ncplane* n, cell* c);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user