2020-05-08 23:04:14 +00:00
|
|
|
% notcurses_reader(3)
|
|
|
|
% nick black <nickblack@linux.com>
|
2020-05-22 13:18:39 +00:00
|
|
|
% v1.4.3
|
2020-05-08 23:04:14 +00:00
|
|
|
|
|
|
|
# NAME
|
|
|
|
|
|
|
|
notcurses_reader - high level widget for collecting input
|
|
|
|
|
|
|
|
# SYNOPSIS
|
|
|
|
|
|
|
|
**#include <notcurses/notcurses.h>**
|
|
|
|
|
|
|
|
```c
|
|
|
|
struct ncinput;
|
|
|
|
struct ncplane;
|
|
|
|
struct ncreader;
|
|
|
|
struct notcurses;
|
|
|
|
|
2020-05-09 13:06:06 +00:00
|
|
|
#define NCREADER_OPTION_HORSCROLL 0x0001
|
|
|
|
#define NCREADER_OPTION_VERSCROLL 0x0002
|
|
|
|
|
2020-05-08 23:04:14 +00:00
|
|
|
typedef struct ncreader_options {
|
|
|
|
uint64_t tchannels; // channels used for input
|
|
|
|
uint64_t echannels; // channels used for empty space
|
|
|
|
uint32_t tattrword; // attributes used for input
|
|
|
|
uint32_t eattrword; // attributes used for empty space
|
|
|
|
char* egc; // egc used for empty space
|
|
|
|
int physrows;
|
|
|
|
int physcols;
|
2020-05-29 18:53:53 +00:00
|
|
|
unsigned flags; // bitfield over NCREADER_OPTION_*
|
2020-05-08 23:04:14 +00:00
|
|
|
} ncreader_options;
|
|
|
|
```
|
|
|
|
|
|
|
|
**struct ncreader* ncreader_create(struct notcurses* nc, int y, int x, const ncreader_options* opts);**
|
|
|
|
|
|
|
|
**int ncreader_clear(struct ncreader* n);**
|
|
|
|
|
|
|
|
**struct ncplane* ncreader_plane(struct ncreader* n);**
|
|
|
|
|
|
|
|
**bool ncreader_offer_input(struct ncreader* n, const struct ncinput* ni);**
|
|
|
|
|
|
|
|
**char* ncreader_contents(const struct ncreader* n);**
|
|
|
|
|
|
|
|
**void ncreader_destroy(struct ncreader* n, char** contents);**
|
|
|
|
|
|
|
|
# DESCRIPTION
|
|
|
|
|
|
|
|
# NOTES
|
|
|
|
|
|
|
|
# RETURN VALUES
|
|
|
|
|
|
|
|
# SEE ALSO
|
|
|
|
|
|
|
|
**notcurses(3)**,
|
|
|
|
**notcurses_input(3)**,
|
2020-05-09 00:56:39 +00:00
|
|
|
**notcurses_plane(3)**
|