mirror of
https://github.com/tuxbox-neutrino/neutrino.git
synced 2025-08-29 16:31:11 +02:00
*neutrino pin check: add possibility to manipulate head title and hint text
git-svn-id: file:///home/bas/coolstream_public_svn/THIRDPARTY/applications/neutrino-beta@2032 e54a6e83-5905-42d5-8d5c-058d10e6a962
This commit is contained in:
@@ -479,9 +479,17 @@ class CPINProtection
|
||||
char* validPIN;
|
||||
bool check();
|
||||
virtual CMenuTarget* getParent() = 0;
|
||||
neutrino_locale_t title, hint;
|
||||
public:
|
||||
CPINProtection( char* validpin){ validPIN = validpin;};
|
||||
CPINProtection( char* validpin)
|
||||
{
|
||||
validPIN = validpin;
|
||||
hint = NONEXISTANT_LOCALE;
|
||||
title = LOCALE_PINPROTECTION_HEAD;
|
||||
};
|
||||
virtual ~CPINProtection(){}
|
||||
virtual void setTitle(neutrino_locale_t Title){title = Title;};
|
||||
virtual void setHint(neutrino_locale_t Hint){ hint = Hint;};
|
||||
};
|
||||
|
||||
class CZapProtection : public CPINProtection
|
||||
@@ -491,7 +499,11 @@ class CZapProtection : public CPINProtection
|
||||
public:
|
||||
int fsk;
|
||||
|
||||
CZapProtection( char* validpin, int FSK ) : CPINProtection(validpin){ fsk= FSK; };
|
||||
CZapProtection( char* validpin, int FSK ) : CPINProtection(validpin)
|
||||
{
|
||||
fsk = FSK;
|
||||
title = LOCALE_PARENTALLOCK_HEAD;
|
||||
};
|
||||
bool check();
|
||||
};
|
||||
|
||||
|
Reference in New Issue
Block a user