2020-01-25 06:13:04 +00:00
|
|
|
% notcurses_directmode(3)
|
|
|
|
% nick black <nickblack@linux.com>
|
2020-02-12 00:11:34 +00:00
|
|
|
% v1.1.8
|
2020-01-25 06:13:04 +00:00
|
|
|
|
|
|
|
# NAME
|
|
|
|
|
|
|
|
notcurses_directmode - minimal notcurses instances for styling text
|
|
|
|
|
|
|
|
# SYNOPSIS
|
|
|
|
|
|
|
|
**#include <notcurses.h>**
|
|
|
|
|
|
|
|
**struct ncdirect* notcurses_directmode(const char *termtype, FILE* fp);**
|
|
|
|
|
2020-02-02 09:15:12 +00:00
|
|
|
**int ncdirect_bg_rgb8(struct ncdirect* nc, unsigned r, unsigned g, unsigned b);**
|
|
|
|
|
|
|
|
**int ncdirect_fg_rgb8(struct ncdirect* nc, unsigned r, unsigned g, unsigned b);**
|
2020-01-25 06:13:04 +00:00
|
|
|
|
2020-02-02 09:15:12 +00:00
|
|
|
**int ncdirect_fg(struct ncdirect* nc, unsigned rgb);**
|
2020-01-25 06:13:04 +00:00
|
|
|
|
2020-02-02 09:15:12 +00:00
|
|
|
**int ncdirect_bg(struct ncdirect* nc, unsigned rgb);**
|
|
|
|
|
2020-02-14 04:16:41 +00:00
|
|
|
**int ncdirect_fg_default(struct ncdirect* nc);**
|
|
|
|
|
|
|
|
**int ncdirect_bg_default(struct ncdirect* nc);**
|
|
|
|
|
2020-02-04 08:04:38 +00:00
|
|
|
**int ncdirect_dim_x(const struct ncdirect* nc);**
|
2020-02-05 07:27:41 +00:00
|
|
|
|
2020-02-04 08:04:38 +00:00
|
|
|
**int ncdirect_dim_y(const struct ncdirect* nc);**
|
|
|
|
|
2020-02-05 09:08:42 +00:00
|
|
|
**int ncdirect_styles_set(struct ncdirect* n, unsigned stylebits);**
|
2020-02-05 07:27:41 +00:00
|
|
|
|
2020-02-05 09:08:42 +00:00
|
|
|
**int ncdirect_styles_on(struct ncdirect* n, unsigned stylebits);**
|
2020-02-05 07:27:41 +00:00
|
|
|
|
2020-02-05 09:08:42 +00:00
|
|
|
**int ncdirect_styles_off(struct ncdirect* n, unsigned stylebits);**
|
2020-02-05 07:27:41 +00:00
|
|
|
|
2020-02-02 09:15:12 +00:00
|
|
|
**int ncdirect_stop(struct ncdirect* nc);**
|
2020-01-25 06:13:04 +00:00
|
|
|
|
|
|
|
# DESCRIPTION
|
|
|
|
|
|
|
|
**notcurses_directmode** prepares the **FILE** provided as **fp** (which must
|
|
|
|
be attached to a terminal) for colorizing and styling. On success, a pointer to
|
|
|
|
a valid **struct ncdirect** is returned. **NULL** is returned on failure.
|
|
|
|
Before the process exits, **ncdirect_stop(3)** should be called to reset the
|
|
|
|
terminal and free up resources.
|
|
|
|
|
|
|
|
An appropriate **terminfo(5)** entry must exist for the terminal. This entry is
|
|
|
|
usually selected using the value of the **TERM** environment variable (see
|
|
|
|
**getenv(3)**), but a non-**NULL** value for **termtype** will override this. An
|
|
|
|
invalid terminfo specification can lead to reduced performance, reduced
|
|
|
|
display capabilities, and/or display errors. notcurses natively targets
|
|
|
|
24bpp/8bpc RGB color, and it is thus desirable to use a terminal with the
|
|
|
|
**rgb** capability (e.g. xterm's **xterm-direct**).
|
|
|
|
|
2020-02-04 08:04:38 +00:00
|
|
|
**ncdirect_dim_x** returns the current number of columns, and **ncdirect_dim_y**
|
|
|
|
the current number of rows.
|
|
|
|
|
2020-01-25 06:13:04 +00:00
|
|
|
# RETURN VALUES
|
|
|
|
|
|
|
|
**notcurses_directmode** returns **NULL** on failure. Otherwise, the return
|
|
|
|
value points to a valid **struct ncdirect**, which can be used until it is
|
|
|
|
provided to **ncdirect_stop**.
|
|
|
|
|
|
|
|
# SEE ALSO
|
|
|
|
|
2020-02-14 04:16:41 +00:00
|
|
|
**getenv(3)**,
|
|
|
|
**termios(3)**,
|
|
|
|
**notcurses(3)**,
|
|
|
|
**notcurses_ncplane(3)**,
|
|
|
|
**terminfo(5)**
|