mirror of
https://github.com/tuxbox-neutrino/neutrino.git
synced 2025-08-30 00:41:17 +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:
399
src/gui/widget/menue.h
Normal file
399
src/gui/widget/menue.h
Normal file
@@ -0,0 +1,399 @@
|
||||
/*
|
||||
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 __MENU__
|
||||
#define __MENU__
|
||||
|
||||
#include <driver/framebuffer.h>
|
||||
#include <driver/rcinput.h>
|
||||
#include <system/localize.h>
|
||||
|
||||
#include <string>
|
||||
#include <vector>
|
||||
|
||||
struct menu_return
|
||||
{
|
||||
enum
|
||||
{
|
||||
RETURN_NONE = 0,
|
||||
RETURN_REPAINT = 1,
|
||||
RETURN_EXIT = 2,
|
||||
RETURN_EXIT_ALL = 4
|
||||
};
|
||||
};
|
||||
|
||||
class CChangeObserver
|
||||
{
|
||||
public:
|
||||
virtual ~CChangeObserver(){}
|
||||
virtual bool changeNotify(const neutrino_locale_t OptionName, void *Data)
|
||||
{
|
||||
return false;
|
||||
}
|
||||
};
|
||||
|
||||
class CMenuTarget
|
||||
{
|
||||
public:
|
||||
|
||||
CMenuTarget(){}
|
||||
virtual ~CMenuTarget(){}
|
||||
virtual void hide(){}
|
||||
virtual int exec(CMenuTarget* parent, const std::string & actionKey) = 0;
|
||||
};
|
||||
|
||||
|
||||
class CMenuItem
|
||||
{
|
||||
protected:
|
||||
int x, y, dx, offx;
|
||||
public:
|
||||
bool active;
|
||||
neutrino_msg_t directKey;
|
||||
neutrino_msg_t msg;
|
||||
bool can_arrow;
|
||||
std::string iconName;
|
||||
|
||||
CMenuItem()
|
||||
{
|
||||
x = -1;
|
||||
directKey = CRCInput::RC_nokey;
|
||||
iconName = "";
|
||||
can_arrow = false;
|
||||
}
|
||||
virtual ~CMenuItem(){}
|
||||
|
||||
virtual void init(const int X, const int Y, const int DX, const int OFFX);
|
||||
|
||||
virtual int paint (bool selected = false, bool last = false) = 0;
|
||||
|
||||
virtual int getHeight(void) const = 0;
|
||||
virtual int getWidth(void) const
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
virtual bool isSelectable(void) const
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
||||
virtual int exec(CMenuTarget* parent)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
virtual void setActive(const bool Active);
|
||||
};
|
||||
|
||||
class CMenuSeparator : public CMenuItem
|
||||
{
|
||||
int type;
|
||||
|
||||
public:
|
||||
neutrino_locale_t text;
|
||||
|
||||
enum
|
||||
{
|
||||
EMPTY = 0,
|
||||
LINE = 1,
|
||||
STRING = 2,
|
||||
ALIGN_CENTER = 4,
|
||||
ALIGN_LEFT = 8,
|
||||
ALIGN_RIGHT = 16
|
||||
};
|
||||
|
||||
|
||||
CMenuSeparator(const int Type = 0, const neutrino_locale_t Text = NONEXISTANT_LOCALE);
|
||||
|
||||
int paint(bool selected=false, bool last = false);
|
||||
int getHeight(void) const;
|
||||
int getWidth(void) const;
|
||||
|
||||
virtual const char * getString(void);
|
||||
};
|
||||
|
||||
class CMenuForwarder : public CMenuItem
|
||||
{
|
||||
const char * option;
|
||||
const std::string * option_string;
|
||||
CMenuTarget * jumpTarget;
|
||||
std::string actionKey;
|
||||
|
||||
protected:
|
||||
neutrino_locale_t text;
|
||||
|
||||
virtual const char * getOption(void);
|
||||
virtual const char * getName(void);
|
||||
|
||||
public:
|
||||
|
||||
CMenuForwarder(const neutrino_locale_t Text, const bool Active=true, const char * const Option=NULL, CMenuTarget* Target=NULL, const char * const ActionKey = NULL, const neutrino_msg_t DirectKey = CRCInput::RC_nokey, const char * const IconName = NULL);
|
||||
CMenuForwarder(const neutrino_locale_t Text, const bool Active, const std::string &Option, CMenuTarget* Target=NULL, const char * const ActionKey = NULL, const neutrino_msg_t DirectKey = CRCInput::RC_nokey, const char * const IconName = NULL);
|
||||
int paint(bool selected=false, bool last = false);
|
||||
int getHeight(void) const;
|
||||
int getWidth(void) const;
|
||||
int exec(CMenuTarget* parent);
|
||||
bool isSelectable(void) const
|
||||
{
|
||||
return active;
|
||||
}
|
||||
};
|
||||
|
||||
class CMenuForwarderNonLocalized : public CMenuForwarder
|
||||
{
|
||||
protected:
|
||||
std::string the_text;
|
||||
virtual const char * getName(void);
|
||||
public:
|
||||
// Text must be UTF-8 encoded:
|
||||
CMenuForwarderNonLocalized(const char * const Text, const bool Active=true, const char * const Option=NULL, CMenuTarget* Target=NULL, const char * const ActionKey = NULL, const neutrino_msg_t DirectKey = CRCInput::RC_nokey, const char * const IconName = NULL);
|
||||
CMenuForwarderNonLocalized(const char * const Text, const bool Active, const std::string &Option, CMenuTarget* Target=NULL, const char * const ActionKey = NULL, const neutrino_msg_t DirectKey = CRCInput::RC_nokey, const char * const IconName = NULL);
|
||||
|
||||
};
|
||||
|
||||
class CAbstractMenuOptionChooser : public CMenuItem
|
||||
{
|
||||
protected:
|
||||
neutrino_locale_t optionName;
|
||||
int height;
|
||||
int * optionValue;
|
||||
|
||||
int getHeight(void) const
|
||||
{
|
||||
return height;
|
||||
}
|
||||
|
||||
bool isSelectable(void) const
|
||||
{
|
||||
return active;
|
||||
}
|
||||
};
|
||||
|
||||
class CMenuOptionNumberChooser : public CAbstractMenuOptionChooser
|
||||
{
|
||||
const char * optionString;
|
||||
|
||||
int lower_bound;
|
||||
int upper_bound;
|
||||
|
||||
int display_offset;
|
||||
|
||||
int localized_value;
|
||||
neutrino_locale_t localized_value_name;
|
||||
private:
|
||||
CChangeObserver * observ;
|
||||
|
||||
public:
|
||||
CMenuOptionNumberChooser(const neutrino_locale_t name, int * const OptionValue, const bool Active, const int min_value, const int max_value, CChangeObserver * const Observ = NULL, const int print_offset = 0, const int special_value = 0, const neutrino_locale_t special_value_name = NONEXISTANT_LOCALE, const char * non_localized_name = NULL);
|
||||
|
||||
int paint(bool selected, bool last = false);
|
||||
|
||||
int exec(CMenuTarget* parent);
|
||||
};
|
||||
|
||||
class CMenuOptionChooser : public CAbstractMenuOptionChooser
|
||||
{
|
||||
public:
|
||||
struct keyval
|
||||
{
|
||||
const int key;
|
||||
const neutrino_locale_t value;
|
||||
const char * valname;
|
||||
};
|
||||
|
||||
private:
|
||||
const struct keyval * options;
|
||||
unsigned number_of_options;
|
||||
CChangeObserver * observ;
|
||||
std::string optionNameString;
|
||||
bool pulldown;
|
||||
|
||||
public:
|
||||
CMenuOptionChooser(const neutrino_locale_t OptionName, int * const OptionValue, const struct keyval * const Options, const unsigned Number_Of_Options, const bool Active = false, CChangeObserver * const Observ = NULL, const neutrino_msg_t DirectKey = CRCInput::RC_nokey, const std::string & IconName= "", bool Pulldown = false);
|
||||
CMenuOptionChooser(const char* OptionName, int * const OptionValue, const struct keyval * const Options, const unsigned Number_Of_Options, const bool Active = false, CChangeObserver * const Observ = NULL, const neutrino_msg_t DirectKey = CRCInput::RC_nokey, const std::string & IconName= "", bool Pulldown = false);
|
||||
|
||||
void setOptionValue(const int newvalue);
|
||||
int getOptionValue(void) const;
|
||||
|
||||
int paint(bool selected, bool last = 0);
|
||||
|
||||
int exec(CMenuTarget* parent);
|
||||
};
|
||||
|
||||
class CMenuOptionStringChooser : public CMenuItem
|
||||
{
|
||||
neutrino_locale_t optionName;
|
||||
int height;
|
||||
char * optionValue;
|
||||
std::vector<std::string> options;
|
||||
CChangeObserver * observ;
|
||||
bool pulldown;
|
||||
|
||||
public:
|
||||
CMenuOptionStringChooser(const neutrino_locale_t OptionName, char* OptionValue, bool Active = false, CChangeObserver* Observ = NULL, const neutrino_msg_t DirectKey = CRCInput::RC_nokey, const std::string & IconName= "", bool Pulldown = false);
|
||||
~CMenuOptionStringChooser();
|
||||
|
||||
void addOption(const char * value);
|
||||
int paint(bool selected, bool last = 0);
|
||||
int getHeight(void) const
|
||||
{
|
||||
return height;
|
||||
}
|
||||
bool isSelectable(void) const
|
||||
{
|
||||
return active;
|
||||
}
|
||||
|
||||
int exec(CMenuTarget* parent);
|
||||
};
|
||||
|
||||
class CMenuOptionLanguageChooser : public CMenuItem
|
||||
{
|
||||
int height;
|
||||
char * optionValue;
|
||||
std::vector<std::string> options;
|
||||
CChangeObserver * observ;
|
||||
|
||||
public:
|
||||
CMenuOptionLanguageChooser(char* OptionValue, CChangeObserver* Observ = NULL, const char * const IconName = NULL);
|
||||
~CMenuOptionLanguageChooser();
|
||||
|
||||
void addOption(const char * value);
|
||||
int paint(bool selected, bool last = 0);
|
||||
int getHeight(void) const
|
||||
{
|
||||
return height;
|
||||
}
|
||||
bool isSelectable(void) const
|
||||
{
|
||||
return true;
|
||||
}
|
||||
|
||||
int exec(CMenuTarget* parent);
|
||||
};
|
||||
|
||||
class CMenuWidget : public CMenuTarget
|
||||
{
|
||||
protected:
|
||||
std::string nameString;
|
||||
neutrino_locale_t name;
|
||||
CFrameBuffer *frameBuffer;
|
||||
std::vector<CMenuItem*> items;
|
||||
std::vector<unsigned int> page_start;
|
||||
std::string iconfile;
|
||||
|
||||
int width;
|
||||
int height;
|
||||
int wanted_height;
|
||||
int x;
|
||||
int y;
|
||||
int offx, offy;
|
||||
int selected;
|
||||
int iconOffset;
|
||||
unsigned int item_start_y;
|
||||
unsigned int current_page;
|
||||
unsigned int total_pages;
|
||||
bool exit_pressed;
|
||||
void Init(const std::string & Icon, const int mwidth, const int mheight);
|
||||
virtual void paintItems();
|
||||
|
||||
public:
|
||||
CMenuWidget();
|
||||
CMenuWidget(const char* Name, const std::string & Icon = "", const int mwidth = 400, const int mheight = 576);
|
||||
CMenuWidget(const neutrino_locale_t Name, const std::string & Icon = "", const int mwidth = 400, const int mheight = 576);
|
||||
~CMenuWidget();
|
||||
|
||||
virtual void addItem(CMenuItem* menuItem, const bool defaultselected = false);
|
||||
bool hasItem();
|
||||
virtual void paint();
|
||||
virtual void hide();
|
||||
virtual int exec(CMenuTarget* parent, const std::string & actionKey);
|
||||
void setSelected(unsigned int _new) { if(_new <= items.size()) selected = _new; };
|
||||
int getSelected() { return selected; };
|
||||
void move(int xoff, int yoff);
|
||||
int getSelectedLine(void){return exit_pressed ? -1 : selected;};
|
||||
};
|
||||
|
||||
class CPINProtection
|
||||
{
|
||||
protected:
|
||||
char* validPIN;
|
||||
bool check();
|
||||
virtual CMenuTarget* getParent() = 0;
|
||||
public:
|
||||
CPINProtection( char* validpin){ validPIN = validpin;};
|
||||
};
|
||||
|
||||
class CZapProtection : public CPINProtection
|
||||
{
|
||||
protected:
|
||||
virtual CMenuTarget* getParent() { return( NULL);};
|
||||
public:
|
||||
int fsk;
|
||||
|
||||
CZapProtection( char* validpin, int FSK ) : CPINProtection(validpin){ fsk= FSK; };
|
||||
bool check();
|
||||
};
|
||||
|
||||
class CLockedMenuForwarder : public CMenuForwarder, public CPINProtection
|
||||
{
|
||||
CMenuTarget* Parent;
|
||||
bool AlwaysAsk;
|
||||
|
||||
protected:
|
||||
virtual CMenuTarget* getParent(){ return Parent;};
|
||||
public:
|
||||
CLockedMenuForwarder(const neutrino_locale_t Text, char* validPIN, bool alwaysAsk=false, const bool Active=true, char *Option=NULL,
|
||||
CMenuTarget* Target=NULL, const char * const ActionKey = NULL,
|
||||
neutrino_msg_t DirectKey = CRCInput::RC_nokey, const char * const IconName = NULL)
|
||||
|
||||
: CMenuForwarder(Text, Active, Option, Target, ActionKey, DirectKey, IconName) ,
|
||||
CPINProtection( validPIN){AlwaysAsk = alwaysAsk;};
|
||||
|
||||
virtual int exec(CMenuTarget* parent);
|
||||
};
|
||||
|
||||
class CMenuSelectorTarget : public CMenuTarget
|
||||
{
|
||||
public:
|
||||
CMenuSelectorTarget(int *select) {m_select = select;};
|
||||
int exec(CMenuTarget* parent, const std::string & actionKey);
|
||||
|
||||
private:
|
||||
int *m_select;
|
||||
};
|
||||
|
||||
extern CMenuSeparator * const GenericMenuSeparator;
|
||||
extern CMenuSeparator * const GenericMenuSeparatorLine;
|
||||
extern CMenuForwarder * const GenericMenuBack;
|
||||
|
||||
#endif
|
Reference in New Issue
Block a user