Posts Tagged ‘curses’

panel – panel stack extension for curses
USAGE
#include <panel.h>

cc [flags] sourcefiles -lpanel -lncurses

PANEL *new_panel(WINDOW *win)
int bottom_panel(PANEL *pan)
int top_panel(PANEL *pan)
[...]

Thursday, August 27th, 2009 at 20:48 | Comments Off
Categories: P
Tags: ,

vidattr, vidputs – curses interfaces to terminfo database
USAGE
#include <curses.h>
#include <term.h>

int setupterm(char *term, int fildes, int *errret);
int setterm(char *term);
TERMINAL *set_curterm(TERMINAL *nterm);
[...]

Thursday, August 27th, 2009 at 20:48 | Comments Off
Categories: V

trl, use_env, wunctrl – miscellaneous curses utility routines
USAGE
#include <curses.h>

char *unctrl(chtype c);
char *wunctrl(wchar_t w);
char *keyname(int c);
char *key_name(wchar_t w);
[...]

Thursday, August 27th, 2009 at 20:47 | Comments Off
Categories: T, U, W

form_data – test for off-screen data in given forms
USAGE
#include <form.h>
bool data_ahead(const FORM *form);
bool data_behind(const FORM *form);

DESCRIPTION
The function data_ahead tests whether there is off-screen data ahead in
[...]

Thursday, August 27th, 2009 at 20:44 | Comments Off
Categories: F

vidattr, vidputs – curses interfaces to terminfo database
USAGE
#include <curses.h>
#include <term.h>

int setupterm(char *term, int fildes, int *errret);
int setterm(char *term);
TERMINAL *set_curterm(TERMINAL *nterm);
[...]

Thursday, August 27th, 2009 at 02:31 | Comments Off
Categories: V

cok, wcursyncup, wsyncdown – create curses windows
USAGE
#include <curses.h>

WINDOW *newwin(int nlines, int ncols, int begin_y,
int begin_x);
int delwin(WINDOW *win);
[...]

Thursday, August 27th, 2009 at 02:29 | Comments Off
Categories: W, c

trl, use_env, wunctrl – miscellaneous curses utility routines
USAGE
#include <curses.h>

char *unctrl(chtype c);
char *wunctrl(wchar_t w);
char *keyname(int c);
char *key_name(wchar_t w);
[...]

Thursday, August 27th, 2009 at 02:29 | Comments Off
Categories: T, U, W

curses terminal keyboard
USAGE
#include <curses.h>

int get_wstr(wint_t *wstr);
int getn_wstr(wint_t *wstr, int n);
int wget_wstr(WINDOW *win, wint_t *wstr);
int wgetn_wstr(WINDOW *win, wint_t *wstr, int n);
[...]

Thursday, August 27th, 2009 at 02:28 | Comments Off
Categories: c

mvwgetnstr – accept character strings from curses terminal keyboard
USAGE
#include <curses.h>

int getstr(char *str);
int getnstr(char *str, int n);
int wgetstr(WINDOW *win, char *str);
int [...]

Thursday, August 27th, 2009 at 02:27 | Comments Off
Categories: M

mvwinsnstr – insert string before cursor in a curses window
USAGE
#include <curses.h>
int insstr(const char *str);
int insnstr(const char *str, int n);
int winsstr(WINDOW *win, const char *str);
[...]

Thursday, August 27th, 2009 at 02:26 | Comments Off
Categories: M