Files
recycled-ni-neutrino/src/gui/ni_menu.h
vanhofen 912d145b89 move CNITouchFileNotifier to CFlagFileNotifier
Origin commit data
------------------
Branch: ni/coolstream
Commit: 0eadd27032
Author: vanhofen <vanhofen@gmx.de>
Date: 2017-09-12 (Tue, 12 Sep 2017)

Origin message was:
------------------
- move CNITouchFileNotifier to CFlagFileNotifier

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

------------------
This commit was generated by Migit
2017-09-12 22:30:34 +02:00

50 lines
1.2 KiB
C++

/*
ni_menu
(C) 2009-2016 NG-Team
(C) 2016 NI-Team
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 __ni_menu__
#define __ni_menu__
#include <gui/widget/menue.h>
class CNIMenu : public CMenuTarget, CChangeObserver
{
private:
CMenuOptionChooser *mc;
CMenuForwarder * mf;
int width;
int show();
public:
CNIMenu();
~CNIMenu();
static CNIMenu* getInstance();
int exec(CMenuTarget* parent, const std::string &actionkey);
#if 0
virtual bool changeNotify(const neutrino_locale_t OptionName, void * /*data*/);
#endif
};
#endif