mirror of
https://github.com/tuxbox-fork-migrations/recycled-ni-neutrino.git
synced 2025-08-30 00:41:09 +02:00
neutrino: add a input object for Enquiry Objects from CI. They specify if the
input has to be blind.
Origin commit data
------------------
Commit: 02b649a6f4
Author: [CST] Bas <bas@coolstreamtech.com>
Date: 2013-02-04 (Mon, 04 Feb 2013)
Origin message was:
------------------
neutrino: add a input object for Enquiry Objects from CI. They specify if the
input has to be blind.
This commit is contained in:
@@ -147,7 +147,9 @@ void CStringInput::init()
|
||||
|
||||
if (width<420)
|
||||
width = 420;
|
||||
|
||||
#ifdef DEBUG_STRINGINPUT
|
||||
printf("HEAD: %s (len: %d)\n", head, strlen(head));
|
||||
#endif
|
||||
int neededWidth;
|
||||
if(head) {
|
||||
neededWidth = g_Font[SNeutrinoSettings::FONT_TYPE_MENU_TITLE]->getRenderWidth(head, true); // UTF-8
|
||||
@@ -856,6 +858,14 @@ int CPINInput::exec( CMenuTarget* parent, const std::string & )
|
||||
return res;
|
||||
}
|
||||
|
||||
void CEnquiryInput::paintChar(int pos)
|
||||
{
|
||||
if (blind)
|
||||
CStringInput::paintChar(pos, (value[pos] == ' ') ? ' ' : '*');
|
||||
else
|
||||
CStringInput::paintChar(pos, value[pos]);
|
||||
}
|
||||
|
||||
int CPLPINInput::handleOthers(neutrino_msg_t msg, neutrino_msg_data_t data)
|
||||
{
|
||||
int res = messages_return::unhandled;
|
||||
|
Reference in New Issue
Block a user