2010-02-04 13:33:47 +02:00
|
|
|
/***************************************************************************
|
2011-10-23 13:46:52 +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 13:46:52 +03:00
|
|
|
#ifndef INPUTDIALOG_H
|
|
|
|
#define INPUTDIALOG_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 13:46:52 +03:00
|
|
|
#include <SDL.h>
|
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
2010-02-04 13:33:47 +02:00
|
|
|
|
2011-10-23 13:46:52 +03:00
|
|
|
class ButtonBox;
|
2010-07-27 23:56:03 +03:00
|
|
|
class InputManager;
|
|
|
|
class Touchscreen;
|
|
|
|
|
2010-05-05 15:35:52 +03:00
|
|
|
class InputDialog : protected Dialog {
|
2011-10-23 13:46:52 +03:00
|
|
|
public:
|
|
|
|
InputDialog(GMenu2X *gmenu2x, InputManager &inputMgr, Touchscreen &ts,
|
|
|
|
const std::string &text, const std::string &startvalue="",
|
|
|
|
const std::string &title="", const std::string &icon="");
|
2010-02-04 13:33:47 +02:00
|
|
|
|
2011-10-23 13:46:52 +03:00
|
|
|
bool exec();
|
|
|
|
const std::string &getInput() { return input; }
|
|
|
|
|
|
|
|
private:
|
2010-02-04 13:33:47 +02:00
|
|
|
void backspace();
|
|
|
|
void space();
|
|
|
|
void confirm();
|
|
|
|
void changeKeys();
|
|
|
|
|
2011-10-23 13:00:46 +03:00
|
|
|
void drawVirtualKeyboard();
|
2010-02-04 13:33:47 +02:00
|
|
|
void setKeyboard(int);
|
|
|
|
|
2011-10-23 13:46:52 +03:00
|
|
|
InputManager &inputMgr;
|
|
|
|
Touchscreen &ts;
|
|
|
|
int selRow, selCol;
|
|
|
|
bool close, ok;
|
|
|
|
std::string title, text, icon;
|
|
|
|
short curKeyboard;
|
|
|
|
std::vector< std::vector<std::string> > keyboard;
|
|
|
|
std::vector<std::string> *kb;
|
|
|
|
int kbLength, kbWidth, kbHeight, kbLeft;
|
|
|
|
SDL_Rect kbRect;
|
|
|
|
ButtonBox *buttonbox;
|
|
|
|
std::string input;
|
2010-02-04 13:33:47 +02:00
|
|
|
};
|
|
|
|
|
2011-10-23 13:46:52 +03:00
|
|
|
#endif // INPUTDIALOG_H
|