Files
commandergenius/project/jni/application/enigma/src/gui/InfoMenu.hh
T
2010-10-13 17:30:44 +03:00

43 lines
1.3 KiB
C++

/*
* Copyright (C) 2006 Ronald Lamprecht
*
* 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.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
#ifndef GUI_INFOMENU_HH_INCLUDED
#define GUI_INFOMENU_HH_INCLUDED
#include "gui/Menu.hh"
namespace enigma { namespace gui {
class InfoMenu : public gui::Menu {
public:
InfoMenu(const char **infotext, int pages);
void on_action(Widget *w);
void draw_background(ecl::GC &gc);
private:
const char **info;
int curPage;
int numPages;
Widget *but_ok;
Widget *pgup;
Widget *pgdown;
};
void displayInfo(const char **helptext, int pages);
}} // namespace enigma::gui
#endif