+ Use wxTextEntryDialog::ShowModal to show the dialog.
+
+ @param parent
+ Parent window.
+ @param message
+ Message to show on the dialog.
+ @param caption
+ The caption of the dialog.
+ @param defaultValue
+ The default value, which may be the empty string.
+ @param style
+ A dialog style, specifying the buttons (wxOK, wxCANCEL) and an
+ optional wxCENTRE style. You do not need to specify the wxTE_PASSWORD style,
+ it is always applied.
+ @param pos
+ Dialog position.
+ */
+ wxPasswordEntryDialog(wxWindow* parent, const wxString& message,
+ const wxString& caption = wxGetPasswordFromUserPromptStr,
+ const wxString& defaultValue = wxEmptyString,
+ long style = wxOK | wxCANCEL | wxCENTRE,
+ const wxPoint& pos = wxDefaultPosition);