mirror of
https://github.com/tuxbox-fork-migrations/recycled-ni-neutrino.git
synced 2025-09-02 18:31:12 +02:00
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
50 lines
1.2 KiB
C++
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
|