Files
recycled-ni-neutrino/src/gui/lcd4l_setup.h
vanhofen e804a6caa9 lcd4l: set Copyright up to date
Origin commit data
------------------
Branch: ni/coolstream
Commit: d5f2537555
Author: vanhofen <vanhofen@gmx.de>
Date: 2019-01-07 (Mon, 07 Jan 2019)

Origin message was:
------------------
- lcd4l: set Copyright up to date

------------------
No further description and justification available within origin commit message!

------------------
This commit was generated by Migit
2019-01-07 00:15:40 +01:00

57 lines
1.4 KiB
C++

/*
lcd4l setup
Copyright (C) 2012 'defans'
Homepage: http://www.bluepeercrew.us/
Copyright (C) 2012-2018 'vanhofen'
Homepage: http://www.neutrino-images.de/
Copyright (C) 2016-2018 'TangoCash'
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 __lcd4l_setup__
#define __lcd4l_setup__
#include <gui/widget/menue.h>
class CLCD4lSetup : public CMenuTarget, CChangeObserver
{
private:
bool lcd4l_display_type_changed;
int temp_lcd4l_display_type;
int temp_lcd4l_skin;
int temp_lcd4l_brightness;
int width;
int show();
int showTypeSetup();
public:
static CLCD4lSetup* getInstance();
CLCD4lSetup();
~CLCD4lSetup();
int exec(CMenuTarget *parent, const std::string &actionkey);
virtual bool changeNotify(const neutrino_locale_t OptionName, void * /*data*/);
};
#endif