mirror of
https://github.com/RPCSX/rpcsx.git
synced 2025-12-06 07:12:14 +01:00
13 lines
290 B
C++
13 lines
290 B
C++
#pragma once
|
|
|
|
class TextInputDialog : public wxDialog
|
|
{
|
|
wxTextCtrl* m_tctrl_text;
|
|
std::string m_result;
|
|
|
|
public:
|
|
TextInputDialog(wxWindow* parent, const std::string& defvalue = "", const std::string& label = "Input text");
|
|
void OnOk(wxCommandEvent& event);
|
|
|
|
std::string GetResult();
|
|
}; |