X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/0b59366faa1b3820dfc4f4ab130000f4e471e405..1ec4e9c2b72a01a7ba7da569e0f8d04a81aaba10:/interface/wx/textdlg.h?ds=sidebyside diff --git a/interface/wx/textdlg.h b/interface/wx/textdlg.h index 043145ca89..04157bea53 100644 --- a/interface/wx/textdlg.h +++ b/interface/wx/textdlg.h @@ -78,8 +78,28 @@ class wxTextEntryDialog : public wxDialog { public: /** - Constructor. Use ShowModal() to show the dialog. + Default constructor. + Call Create() to really create the dialog later. + + @since 2.9.5 + */ + wxTextEntryDialog(); + + /** + Constructor. + + Use ShowModal() to show the dialog. + + See Create() method for parameter description. + */ + wxTextEntryDialog(wxWindow* parent, const wxString& message, + const wxString& caption = wxGetTextFromUserPromptStr, + const wxString& value = wxEmptyString, + long style = wxTextEntryDialogStyle, + const wxPoint& pos = wxDefaultPosition); + + /** @param parent Parent window. @param message @@ -95,8 +115,10 @@ public: here. @param pos Dialog position. + + @since 2.9.5 */ - wxTextEntryDialog(wxWindow* parent, const wxString& message, + bool Create(wxWindow* parent, const wxString& message, const wxString& caption = wxGetTextFromUserPromptStr, const wxString& value = wxEmptyString, long style = wxTextEntryDialogStyle,