2004-02-15 04:20:00 +02:00
|
|
|
/*
|
2004-03-03 04:20:00 +02:00
|
|
|
* Frontend Status Monitor plugin for the Video Disk Recorder
|
2004-02-15 04:20:00 +02:00
|
|
|
*
|
|
|
|
* See the README file for copyright information and how to reach the author.
|
|
|
|
*
|
|
|
|
* $Id$
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "femoncfg.h"
|
|
|
|
|
|
|
|
cFemonConfig femonConfig;
|
|
|
|
|
|
|
|
cFemonConfig::cFemonConfig(void)
|
|
|
|
{
|
2004-03-03 04:20:00 +02:00
|
|
|
hidemenu = 0;
|
|
|
|
displaymode = 0;
|
|
|
|
position = 1;
|
|
|
|
redlimit = 33;
|
|
|
|
greenlimit = 66;
|
|
|
|
updateinterval = 5;
|
2004-05-30 04:20:00 +03:00
|
|
|
analyzestream = 1;
|
2004-03-03 04:20:00 +02:00
|
|
|
calcinterval = 20;
|
2004-03-07 04:20:00 +02:00
|
|
|
syslogoutput = 0;
|
2004-09-11 04:20:00 +03:00
|
|
|
showcasystem = 0;
|
2005-01-15 04:20:00 +02:00
|
|
|
#ifdef NTSC_SYSTEM
|
|
|
|
osdheight = 420;
|
|
|
|
#else
|
|
|
|
osdheight = 480;
|
|
|
|
#endif
|
2004-02-15 04:20:00 +02:00
|
|
|
}
|