1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-10-15 21:16:33 +00:00
openmw/apps/openmw/mwgui/textinput.hpp
2025-08-27 12:45:09 +02:00

36 lines
883 B
C++

#ifndef MWGUI_TEXT_INPUT_H
#define MWGUI_TEXT_INPUT_H
#include "windowbase.hpp"
namespace MWGui
{
class TextInputDialog : public WindowModal
{
public:
TextInputDialog();
std::string getTextInput() const;
void setTextInput(const std::string& text);
void setNextButtonShow(bool shown);
void setTextLabel(std::string_view label);
void onOpen() override;
bool exit() override { return false; }
/** Event : Dialog finished, OK button clicked.\n
signature : void method()\n
*/
EventHandle_WindowBase eventDone;
protected:
void onOkClicked(MyGUI::Widget* sender);
void onTextAccepted(MyGUI::EditBox* sender);
bool onControllerButtonEvent(const SDL_ControllerButtonEvent& arg) override;
private:
MyGUI::EditBox* mTextEdit;
};
}
#endif