Files
recycled-ni-neutrino/src/gui/glcdsetup.h
vanhofen b0dbd6f602 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
2019-10-26 22:37:38 +02:00

49 lines
1.3 KiB
C++

/*
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