rpcsx/rpcs3/Gui/TextInputDialog.h
Peter Tissen 8ac226ae69 replace all instances of wxString with std::string in all cases not
directly involved in either the GUI or other wxWidget classes like wxFile
2014-04-01 16:23:03 +02:00

13 lines
249 B
C++

#pragma once
class TextInputDialog : public wxDialog
{
wxTextCtrl* m_tctrl_text;
std::string m_result;
public:
TextInputDialog(wxWindow* parent, const std::string& defvalue = "");
void OnOk(wxCommandEvent& event);
std::string GetResult();
};