mirror of
https://github.com/tuxbox-neutrino/neutrino.git
synced 2025-08-29 16:31:11 +02:00
our current experimental Neutrino branch
git-svn-id: file:///home/bas/coolstream_public_svn/THIRDPARTY/applications/neutrino-experimental@27 e54a6e83-5905-42d5-8d5c-058d10e6a962
This commit is contained in:
163
src/gui/widget/stringinput.h
Normal file
163
src/gui/widget/stringinput.h
Normal file
@@ -0,0 +1,163 @@
|
||||
/*
|
||||
Neutrino-GUI - DBoxII-Project
|
||||
|
||||
Copyright (C) 2001 Steffen Hehn 'McClean'
|
||||
Homepage: http://dbox.cyberphoria.org/
|
||||
|
||||
Kommentar:
|
||||
|
||||
Diese GUI wurde von Grund auf neu programmiert und sollte nun vom
|
||||
Aufbau und auch den Ausbaumoeglichkeiten gut aussehen. Neutrino basiert
|
||||
auf der Client-Server Idee, diese GUI ist also von der direkten DBox-
|
||||
Steuerung getrennt. Diese wird dann von Daemons uebernommen.
|
||||
|
||||
|
||||
License: GPL
|
||||
|
||||
This program is free software; you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation; either version 2 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program; if not, write to the Free Software
|
||||
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
*/
|
||||
|
||||
|
||||
#ifndef __stringinput__
|
||||
#define __stringinput__
|
||||
|
||||
#include "menue.h"
|
||||
|
||||
#include <driver/framebuffer.h>
|
||||
#include <system/localize.h>
|
||||
|
||||
#include <string>
|
||||
|
||||
class CStringInput : public CMenuTarget
|
||||
{
|
||||
protected:
|
||||
CFrameBuffer *frameBuffer;
|
||||
int x;
|
||||
int y;
|
||||
int width;
|
||||
int height;
|
||||
int hheight; // head font height
|
||||
int mheight; // menu font height
|
||||
int iheight;
|
||||
|
||||
char * head;
|
||||
neutrino_locale_t name;
|
||||
neutrino_locale_t hint_1, hint_2;
|
||||
std::string iconfile;
|
||||
const char * validchars;
|
||||
char * value;
|
||||
std::string *valueString;
|
||||
int size;
|
||||
int selected;
|
||||
CChangeObserver * observ;
|
||||
|
||||
virtual void init();
|
||||
virtual const char * getHint1(void);
|
||||
|
||||
virtual void paint();
|
||||
virtual void paintChar(int pos, char c);
|
||||
virtual void paintChar(int pos);
|
||||
|
||||
virtual void NormalKeyPressed(const neutrino_msg_t key);
|
||||
virtual void keyBackspacePressed(void);
|
||||
virtual void keyRedPressed();
|
||||
virtual void keyYellowPressed();
|
||||
virtual void keyBluePressed();
|
||||
virtual void keyUpPressed();
|
||||
virtual void keyDownPressed();
|
||||
virtual void keyLeftPressed();
|
||||
virtual void keyRightPressed();
|
||||
virtual void keyPlusPressed();
|
||||
virtual void keyMinusPressed();
|
||||
|
||||
virtual int handleOthers(const neutrino_msg_t msg, const neutrino_msg_data_t data);
|
||||
|
||||
public:
|
||||
|
||||
CStringInput(const neutrino_locale_t Name, char* Value, int Size, const neutrino_locale_t Hint_1 = NONEXISTANT_LOCALE, const neutrino_locale_t Hint_2 = NONEXISTANT_LOCALE, const char * const Valid_Chars= (const char *) "0123456789. ", CChangeObserver* Observ = NULL, const char * const Icon = NULL);
|
||||
CStringInput(char * Head, char* Value, int Size, const neutrino_locale_t Hint_1 = NONEXISTANT_LOCALE, const neutrino_locale_t Hint_2 = NONEXISTANT_LOCALE, const char * const Valid_Chars= (const char *) "0123456789. ", CChangeObserver* Observ = NULL, const char * const Icon = NULL);
|
||||
CStringInput(const neutrino_locale_t Name, std::string* Value, int Size, const neutrino_locale_t Hint_1 = NONEXISTANT_LOCALE, const neutrino_locale_t Hint_2 = NONEXISTANT_LOCALE, const char * const Valid_Chars= (const char *) "0123456789. ", CChangeObserver* Observ = NULL, const char * const Icon = NULL);
|
||||
~CStringInput();
|
||||
|
||||
void hide();
|
||||
int exec( CMenuTarget* parent, const std::string & actionKey );
|
||||
|
||||
};
|
||||
|
||||
class CStringInputSMS : public CStringInput
|
||||
{
|
||||
bool capsMode;
|
||||
int arraySizes[10];
|
||||
char Chars[10][9]; // maximal 9 character in one CharList entry!
|
||||
|
||||
int keyCounter;
|
||||
int last_digit;
|
||||
|
||||
virtual void NormalKeyPressed(const neutrino_msg_t key);
|
||||
virtual void keyBackspacePressed(void);
|
||||
virtual void keyRedPressed();
|
||||
virtual void keyYellowPressed();
|
||||
virtual void keyUpPressed();
|
||||
virtual void keyDownPressed();
|
||||
virtual void keyLeftPressed();
|
||||
virtual void keyRightPressed();
|
||||
|
||||
virtual void paint();
|
||||
void initSMS(const char * const Valid_Chars);
|
||||
|
||||
public:
|
||||
CStringInputSMS(const neutrino_locale_t Name, char* Value, int Size, const neutrino_locale_t Hint_1, const neutrino_locale_t Hint_2, const char * const Valid_Chars, CChangeObserver* Observ = NULL, const char * const Icon = NULL);
|
||||
CStringInputSMS(const neutrino_locale_t Name, std::string* Value, int Size, const neutrino_locale_t Hint_1, const neutrino_locale_t Hint_2, const char * const Valid_Chars, CChangeObserver* Observ = NULL, const char * const Icon = NULL);
|
||||
};
|
||||
|
||||
class CPINInput : public CStringInput
|
||||
{
|
||||
protected:
|
||||
virtual void paintChar(int pos);
|
||||
public:
|
||||
CPINInput(const neutrino_locale_t Name, char* Value, int Size, const neutrino_locale_t Hint_1 = NONEXISTANT_LOCALE, const neutrino_locale_t Hint_2 = NONEXISTANT_LOCALE, const char * const Valid_Chars= (const char *)"0123456789", CChangeObserver* Observ = NULL)
|
||||
: CStringInput(Name, (char *)Value, Size, Hint_1, Hint_2, Valid_Chars, Observ, (char *)"lock.raw") {};
|
||||
CPINInput(char * Head, char* Value, int Size, const neutrino_locale_t Hint_1 = NONEXISTANT_LOCALE, const neutrino_locale_t Hint_2 = NONEXISTANT_LOCALE, const char * const Valid_Chars= (const char *)"0123456789", CChangeObserver* Observ = NULL)
|
||||
: CStringInput(Head, (char *)Value, Size, Hint_1, Hint_2, Valid_Chars, Observ, (char *)"lock.raw") {};
|
||||
|
||||
int exec( CMenuTarget* parent, const std::string & actionKey );
|
||||
};
|
||||
|
||||
class CPLPINInput : public CPINInput
|
||||
{
|
||||
protected:
|
||||
int fsk;
|
||||
char hint[100];
|
||||
|
||||
virtual int handleOthers(const neutrino_msg_t msg, const neutrino_msg_data_t data);
|
||||
|
||||
virtual const char * getHint1(void);
|
||||
|
||||
public:
|
||||
CPLPINInput(const neutrino_locale_t Name, char* Value, int Size, const neutrino_locale_t Hint_2, int FSK )
|
||||
: CPINInput(Name, (char *)Value, Size, NONEXISTANT_LOCALE, Hint_2) { fsk = FSK; };
|
||||
|
||||
int exec( CMenuTarget* parent, const std::string & actionKey );
|
||||
};
|
||||
|
||||
class CPINChangeWidget : public CStringInput
|
||||
{
|
||||
public:
|
||||
CPINChangeWidget(const neutrino_locale_t Name, char* Value, int Size, const neutrino_locale_t Hint_1, const char * const Valid_Chars= (const char *) "0123456789", CChangeObserver* Observ = NULL)
|
||||
: CStringInput(Name, (char *)Value, Size, Hint_1, NONEXISTANT_LOCALE, Valid_Chars, Observ){};
|
||||
};
|
||||
|
||||
|
||||
#endif
|
Reference in New Issue
Block a user