summaryrefslogtreecommitdiff
path: root/setup.h
blob: 76aa22058fcd75d9ecd2163d47e505aa39212ce4 (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
#ifndef LCD_SETUP_H
#define LCD_SETUP_H

#define LCDMAXOUTPUTS 10

class cLcdSetup {
public:
  int FullCycle;
  int TimeCycle;
  int VolumeKeep;
  int Scrollwait;
  int Scrollspeed;	  
  int Charmap;	  
  int AltShift;	  
  int BackLight;
  int SetPrio;
  int ClientPrioN;
  int ClientPrioH;
  int BackLightWait;
  int OutputNumber;
  int OutputFunction[LCDMAXOUTPUTS];
  int RecordingStatus;
  int ShowTime;
public:
  cLcdSetup(void);
  };


extern cLcdSetup LcdSetup;

#endif