rpcsx/rpcs3/Gui/TextInputDialog.h
DH 81e874c9e2 - Implemented HDD manager.
- Implemented VFS manager.
- Implemented MFC.
- Fixed ELF Compiler.
- Improved HLE Func binder.
2013-08-03 12:40:03 +03:00

13 lines
252 B
C++

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