File: curses.c

package info (click to toggle)
yorick-curses 0.1-1
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 64 kB
  • ctags: 42
  • sloc: makefile: 96; ansic: 57
file content (62 lines) | stat: -rw-r--r-- 1,313 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
#include <curses.h>
#include <stdlib.h>

void kbdinit() { 
  initscr(); 
  cbreak(); 
  noecho();
  nonl();
  intrflush(stdscr, TRUE);
  keypad(stdscr, TRUE);
}

int kbd(int wait)
{
  int kb;
  if (!wait) nodelay(stdscr, TRUE); else nodelay(stdscr, FALSE);
  kb = getch();
  nodelay(stdscr, FALSE);
  return kb;
}

void kbdend() { endwin(); }

int getlines() {return LINES; }
int getcols() {return COLS; }

int ynodelay(int condition)
{
  if (condition) nodelay(stdscr, TRUE); else nodelay(stdscr, FALSE);
}
int ynotimeout(int condition)
{
  if (condition) notimeout(stdscr, TRUE); else notimeout(stdscr, FALSE);
}
int ykeypad(int condition)
{
  if (condition) keypad(stdscr, TRUE); else keypad(stdscr, FALSE);
}
int ymeta(int condition)
{
  if (condition) meta(stdscr, TRUE); else meta(stdscr, FALSE);
}
int yintrflush(int condition)
{
  if (condition) intrflush(stdscr, TRUE); else intrflush(stdscr, FALSE);
}
int yscrollok(int condition)
{
  if (condition) scrollok(stdscr, TRUE); else scrollok(stdscr, FALSE);
}
int yleaveok(int condition)
{
  if (condition) leaveok(stdscr, TRUE); else leaveok(stdscr, FALSE);
}
int yclearok(int condition)
{
  if (condition) clearok(stdscr, TRUE); else clearok(stdscr, FALSE);
}
int yidlok(int condition)
{
  if (condition) idlok(stdscr, TRUE); else idlok(stdscr, FALSE);
}