mirror of
https://github.com/tuxbox-fork-migrations/recycled-ni-neutrino.git
synced 2025-09-16 09:53:36 +02:00
pick graphlcd support from DDT but include it in another way
Origin commit data
------------------
Commit: 3093f50831
Author: vanhofen <vanhofen@gmx.de>
Date: 2019-10-26 (Sat, 26 Oct 2019)
Origin message was:
------------------
- pick graphlcd support from DDT but include it in another way
This commit is contained in:
48
src/gui/glcdsetup.h
Normal file
48
src/gui/glcdsetup.h
Normal file
@@ -0,0 +1,48 @@
|
||||
/*
|
||||
Neutrino graphlcd menue
|
||||
|
||||
Copyright (C) 2012 martii
|
||||
|
||||
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.
|
||||
*/
|
||||
|
||||
#ifdef ENABLE_GRAPHLCD
|
||||
|
||||
#ifndef __glcdsetup_h__
|
||||
#define __glcdsetup_h__
|
||||
|
||||
#include <sys/types.h>
|
||||
#include <string.h>
|
||||
#include <system/setting_helpers.h>
|
||||
#include <driver/nglcd.h>
|
||||
|
||||
class GLCD_Menu : public CMenuTarget, public CChangeObserver
|
||||
{
|
||||
private:
|
||||
int width;
|
||||
int selected;
|
||||
static int color2index(uint32_t color);
|
||||
public:
|
||||
static uint32_t index2color(int i);
|
||||
GLCD_Menu();
|
||||
void hide();
|
||||
int exec(CMenuTarget* parent, const std::string & actionKey);
|
||||
bool changeNotify(const neutrino_locale_t, void *);
|
||||
void GLCD_Menu_Settings();
|
||||
};
|
||||
#endif // __glcdsetup_h__
|
||||
#endif // ENABLE_GRAPHLCD
|
Reference in New Issue
Block a user