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
|
// -*-C++-*-
// This file is part of the gmod package
// Copyright (C) 1997 by Andrew J. Robinson
#ifndef CURSESSCR_H
#define CURSESSCR_H
#ifdef USE_NCURSES
#include <curses.h>
#else
#include <stdio.h>
#include <termios.h>
#endif
class Sample;
class CursesScr
{
public:
CursesScr(unsigned char);
~CursesScr();
void moduleFile(const char *);
void moduleTitle(const char *);
void setChannels(int);
void setType(const char *);
void setMaxPosition(int);
void setMem(int, int);
void setPos(unsigned int, unsigned int);
int getChar();
private:
unsigned char background_;
#ifdef USE_NCURSES
WINDOW *infoWin;
WINDOW *memWin;
WINDOW *posWin;
#else
long oldFlags_;
struct termios oldTermio_;
#endif
};
inline int
CursesScr::getChar()
{
if (!background_)
{
#ifdef USE_NCURSES
return wgetch(posWin);
#else
return getchar();
#endif
}
else
return EOF;
}
#endif
|