noinst_LIBRARIES = libenigma_base.a
libenigma_base_a_SOURCES = \
- buffer.cpp ebase.cpp econfig.cpp eerror.cpp elock.cpp \
+ buffer.cpp ebase.cpp eerror.cpp elock.cpp \
init.cpp message.cpp thread.cpp \
smartptr.cpp estring.cpp connection.cpp \
filepush.cpp encoding.cpp
#include <lib/base/init.h>
#include <lib/base/init_num.h>
-#include <lib/base/econfig.h>
#include <lib/base/eerror.h>
eAVSwitch *eAVSwitch::instance = 0;
#include <lib/base/init.h>
#include <lib/base/init_num.h>
-#include <lib/base/econfig.h>
#include <lib/base/eerror.h>
/*
{
rdelay=500;
rrate=100;
- if ( eConfig::getInstance()->getKey("/ezap/rc/repeatRate", rrate) )
- save();
- eConfig::getInstance()->getKey("/ezap/rc/repeatDelay", rdelay);
}
void eRCConfig::save()
{
- eConfig::getInstance()->setKey("/ezap/rc/repeatRate", rrate);
- eConfig::getInstance()->setKey("/ezap/rc/repeatDelay", rdelay);
}
eRCInput *eRCInput::instance;
#include <lib/base/init.h>
#include <lib/base/init_num.h>
-#include <lib/base/econfig.h>
#include <lib/base/eerror.h>
#define IOCTL_SET_CHANNEL 0
#include <lib/base/init.h>
#include <lib/base/init_num.h>
-#include <lib/base/econfig.h>
#include <lib/base/eerror.h>
eDVBCI_UI *eDVBCI_UI::instance = 0;
#include <memory.h>
#include <linux/kd.h>
-#include <lib/base/econfig.h>
#include <lib/gdi/fb.h>
#ifndef FBIO_WAITFORVSYNC
#include <lib/base/init.h>
#include <lib/base/init_num.h>
-#include <lib/base/econfig.h>
#include <lib/gdi/accel.h>
void gFBDC::saveSettings()
{
- eConfig::getInstance()->setKey("/ezap/osd/alpha", alpha);
- eConfig::getInstance()->setKey("/ezap/osd/gamma", gamma);
- eConfig::getInstance()->setKey("/ezap/osd/brightness", brightness);
}
void gFBDC::reloadSettings()
{
- if (eConfig::getInstance()->getKey("/ezap/osd/alpha", alpha))
- alpha=255;
- if (eConfig::getInstance()->getKey("/ezap/osd/gamma", gamma))
- gamma=128;
- if (eConfig::getInstance()->getKey("/ezap/osd/brightness", brightness))
- brightness=128;
+ alpha=255;
+ gamma=128;
+ brightness=128;
calcRamp();
setPalette();