summaryrefslogtreecommitdiff
path: root/setup.h
blob: dbfe2d6de0a83c859b9d76a01dc15bdb2f31b201 (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
#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 PrioWait;
  int ClientPrioWait;
  int OutputNumber;
  int OutputFunction[LCDMAXOUTPUTS];
  int RecordingStatus;
  int ShowTime;
  int ShowSubtitle;
public:
  cLcdSetup(void);
  };


extern cLcdSetup LcdSetup;

#endif