2010-02-04 13:33:47 +02:00
|
|
|
/***************************************************************************
|
2011-10-23 17:13:02 +03:00
|
|
|
* Copyright (C) 2006 by Massimiliano Torromeo *
|
|
|
|
* massimiliano.torromeo@gmail.com *
|
2010-02-04 13:33:47 +02:00
|
|
|
* *
|
|
|
|
* 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., *
|
|
|
|
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
|
|
|
|
***************************************************************************/
|
|
|
|
|
2011-10-23 17:13:02 +03:00
|
|
|
#ifndef TEXTDIALOG_H
|
|
|
|
#define TEXTDIALOG_H
|
2010-02-04 13:33:47 +02:00
|
|
|
|
2010-05-05 15:35:52 +03:00
|
|
|
#include "dialog.h"
|
2010-02-04 13:33:47 +02:00
|
|
|
|
2011-10-23 17:13:02 +03:00
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
2010-02-04 13:33:47 +02:00
|
|
|
|
2010-05-05 15:35:52 +03:00
|
|
|
class TextDialog : protected Dialog {
|
2010-02-04 13:33:47 +02:00
|
|
|
protected:
|
2011-10-23 17:13:02 +03:00
|
|
|
std::vector<std::string> *text;
|
|
|
|
std::string title, description, icon;
|
2010-02-04 13:33:47 +02:00
|
|
|
|
|
|
|
void preProcess();
|
2013-08-14 14:25:07 +03:00
|
|
|
void drawText(std::vector<std::string> *text, unsigned int y,
|
|
|
|
unsigned int firstRow, unsigned int rowsPerPage);
|
2010-02-04 13:33:47 +02:00
|
|
|
|
|
|
|
public:
|
2011-10-23 17:13:02 +03:00
|
|
|
TextDialog(GMenu2X *gmenu2x, const std::string &title,
|
|
|
|
const std::string &description, const std::string &icon,
|
|
|
|
std::vector<std::string> *text);
|
2010-02-04 13:33:47 +02:00
|
|
|
void exec();
|
|
|
|
};
|
|
|
|
|
2011-10-23 17:13:02 +03:00
|
|
|
#endif // TEXTDIALOG_H
|