blob: e387ab91fdb17467f6ce0c7646e1827854bd98c3 (
plain)
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
|
/*
* interface.h: Abstract user interface layer
*
* See the main source file 'osm.c' for copyright information and
* how to reach the author.
*
* $Id: interface.h 1.1 2000/02/19 13:36:48 kls Exp $
*/
#ifndef __INTERFACE_H
#define __INTERFACE_H
#include "config.h"
class cInterface {
public:
enum { MaxCols = 5 };
private:
int open;
int cols[MaxCols];
unsigned int GetCh(void);
void QueryKeys(void);
void Write(int x, int y, char *s);
public:
cInterface(void);
void Init(void);
void Open(void);
void Close(void);
eKeys GetKey(void);
void Clear(void);
void SetCols(int *c);
void WriteText(int x, int y, char *s, bool Current = false);
void Info(char *s);
void Error(char *s);
void LearnKeys(void);
void DisplayChannel(int Number, char *Name);
};
extern cInterface Interface;
#endif //__INTERFACE_H
|