2004-02-15 03:20:00 +01:00
|
|
|
/*
|
2004-03-03 03:20:00 +01:00
|
|
|
* Frontend Status Monitor plugin for the Video Disk Recorder
|
2004-02-15 03:20:00 +01:00
|
|
|
*
|
|
|
|
* See the README file for copyright information and how to reach the author.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2006-09-17 03:20:00 +02:00
|
|
|
#include <string.h>
|
2004-02-15 03:20:00 +01:00
|
|
|
#include "femoncfg.h"
|
|
|
|
|
|
|
|
cFemonConfig femonConfig;
|
|
|
|
|
|
|
|
cFemonConfig::cFemonConfig(void)
|
|
|
|
{
|
2004-03-03 03:20:00 +01:00
|
|
|
hidemenu = 0;
|
|
|
|
displaymode = 0;
|
2005-10-04 03:20:00 +02:00
|
|
|
skin = 0;
|
2005-02-24 03:20:00 +01:00
|
|
|
theme = 0;
|
2004-03-03 03:20:00 +01:00
|
|
|
position = 1;
|
|
|
|
redlimit = 33;
|
|
|
|
greenlimit = 66;
|
|
|
|
updateinterval = 5;
|
2004-05-30 03:20:00 +02:00
|
|
|
analyzestream = 1;
|
2004-03-03 03:20:00 +01:00
|
|
|
calcinterval = 20;
|
2005-01-15 03:20:00 +01:00
|
|
|
osdheight = 480;
|
2005-02-24 03:20:00 +01:00
|
|
|
osdoffset = 0;
|
2006-09-17 03:20:00 +02:00
|
|
|
usesvdrp = 0;
|
|
|
|
svdrpport = 2001;
|
|
|
|
strncpy(svdrpip, "0.0.0.0", sizeof(svdrpip));
|
2004-02-15 03:20:00 +01:00
|
|
|
}
|
2005-02-24 03:20:00 +01:00
|
|
|
|
|
|
|
const cFemonTheme femonTheme[eFemonThemeMaxNumber] =
|
|
|
|
{
|
|
|
|
{
|
|
|
|
// eFemonThemeClassic
|
2005-11-13 03:20:00 +01:00
|
|
|
4, // bpp
|
2005-02-24 03:20:00 +01:00
|
|
|
0x7F000000, // clrBackground
|
|
|
|
0xFFFCFCFC, // clrTitleBackground
|
|
|
|
0xFF000000, // clrTitleText
|
|
|
|
0xFFFCC024, // clrActiveText
|
|
|
|
0xFFFCFCFC, // clrInactiveText
|
|
|
|
0xFFFC1414, // clrRed
|
|
|
|
0xFFFCC024, // clrYellow
|
|
|
|
0xFF24FC24, // clrGreen
|
|
|
|
},
|
|
|
|
{
|
|
|
|
// eFemonThemeElchi
|
2005-11-13 03:20:00 +01:00
|
|
|
4, // bpp
|
2005-02-24 03:20:00 +01:00
|
|
|
0xC8000066, // clrBackground
|
|
|
|
0xC833AAEE, // clrTitleBackground
|
|
|
|
0xFF000000, // clrTitleText
|
|
|
|
0xFFCCBB22, // clrActiveText
|
|
|
|
0xFFFFFFFF, // clrInactiveText
|
|
|
|
0xFFFF0000, // clrRed
|
|
|
|
0xFFFFEE00, // clrYellow
|
|
|
|
0xFF33CC33, // clrGreen
|
|
|
|
},
|
2008-03-27 03:20:00 +01:00
|
|
|
{
|
|
|
|
// eFemonThemeSTTNG
|
|
|
|
4, // bpp
|
|
|
|
0x7F000000, // clrBackground
|
|
|
|
0xFFFCC024, // clrTitleBackground
|
|
|
|
0xFF000000, // clrTitleText
|
|
|
|
0xFF00FCFC, // clrActiveText
|
|
|
|
0xFFFCC024, // clrInactiveText
|
|
|
|
0xFFFC1414, // clrRed
|
|
|
|
0xFFFCC024, // clrYellow
|
|
|
|
0xFF24FC24, // clrGreen
|
|
|
|
},
|
2005-02-24 03:20:00 +01:00
|
|
|
{
|
|
|
|
// eFemonThemeDeepBlue
|
2005-11-13 03:20:00 +01:00
|
|
|
4, // bpp
|
2005-02-24 03:20:00 +01:00
|
|
|
0xC80C0C0C, // clrBackground
|
|
|
|
0xC832557A, // clrTitleBackground
|
|
|
|
0xFF000000, // clrTitleText
|
|
|
|
0xFFCE7B00, // clrActiveText
|
|
|
|
0xFF9A9A9A, // clrInactiveText
|
|
|
|
0xFF992900, // clrRed
|
|
|
|
0xFFCE7B00, // clrYellow
|
|
|
|
0xFF336600, // clrGreen
|
|
|
|
},
|
2005-04-01 03:20:00 +02:00
|
|
|
{
|
|
|
|
// eFemonThemeMoronimo
|
2005-11-13 03:20:00 +01:00
|
|
|
4, // bpp
|
2005-04-01 03:20:00 +02:00
|
|
|
0xDF294A6B, // clrBackground
|
|
|
|
0xDF3E5578, // clrTitleBackground
|
|
|
|
0xFF9BBAD7, // clrTitleText
|
|
|
|
0xFFCE7B00, // clrActiveText
|
|
|
|
0xFF9A9A9A, // clrInactiveText
|
|
|
|
0xFF992900, // clrRed
|
|
|
|
0xFFCE7B00, // clrYellow
|
|
|
|
0xFF336600, // clrGreen
|
|
|
|
},
|
2005-10-04 03:20:00 +02:00
|
|
|
{
|
|
|
|
// eFemonThemeEnigma
|
2005-11-13 03:20:00 +01:00
|
|
|
4, // bpp
|
2005-10-04 03:20:00 +02:00
|
|
|
0xB8DEE5FA, // clrBackground
|
|
|
|
0xB84158BC, // clrTitleBackground
|
|
|
|
0xFFFFFFFF, // clrTitleText
|
|
|
|
0xFF000000, // clrActiveText
|
|
|
|
0xFF000000, // clrInactiveText
|
|
|
|
0xB8C40000, // clrRed
|
|
|
|
0xB8C4C400, // clrYellow
|
|
|
|
0xB800C400, // clrGreen
|
|
|
|
},
|
|
|
|
{
|
|
|
|
// eFemonThemeEgalsTry
|
2006-01-25 03:20:00 +01:00
|
|
|
4, // bpp
|
2005-10-04 03:20:00 +02:00
|
|
|
0xCA2B1B9E, // clrBackground
|
|
|
|
0xDFBEBAC3, // clrTitleBackground
|
|
|
|
0xFF280249, // clrTitleText
|
|
|
|
0xFFD4D7DB, // clrActiveText
|
|
|
|
0xDFCFCFCF, // clrInactiveText
|
|
|
|
0xFFFF0000, // clrRed
|
|
|
|
0xFFFCC024, // clrYellow
|
|
|
|
0xFF20980B, // clrGreen
|
|
|
|
},
|
2005-11-13 03:20:00 +01:00
|
|
|
{
|
|
|
|
// eFemonThemeDuotone
|
|
|
|
2, // bpp
|
|
|
|
0x7F000000, // clrBackground
|
|
|
|
0xFFFCFCFC, // clrTitleBackground
|
2006-01-25 03:20:00 +01:00
|
|
|
0x7F000000, // clrTitleText
|
|
|
|
0xFFFCFCFC, // clrActiveText
|
2005-11-13 03:20:00 +01:00
|
|
|
0xFFFCFCFC, // clrInactiveText
|
|
|
|
0xFFFC1414, // clrRed
|
|
|
|
0xFFFCFCFC, // clrYellow
|
|
|
|
0xFFFCFCFC, // clrGreen
|
|
|
|
},
|
2006-02-06 03:20:00 +01:00
|
|
|
{
|
|
|
|
// eFemonThemeSilverGreen
|
|
|
|
4, // bpp
|
|
|
|
0xD9526470, // clrBackground
|
|
|
|
0xD9293841, // clrTitleBackground
|
|
|
|
0xFFB3BDCA, // clrTitleText
|
|
|
|
0xFFCE7B00, // clrActiveText
|
|
|
|
0xFFB3BDCA, // clrInactiveText
|
|
|
|
0xFF992900, // clrRed
|
|
|
|
0xFFCE7B00, // clrYellow
|
|
|
|
0xFF336600, // clrGreen
|
|
|
|
},
|
2005-02-24 03:20:00 +01:00
|
|
|
};
|