#include </home/zeitlin/src/wx/github/interface/wx/textdlg.h>
Inheritance diagram for wxPasswordEntryDialog:This class represents a dialog that requests a one-line password string from the user.
It is implemented as a generic wxWidgets dialog.
Public Member Functions | |
| wxPasswordEntryDialog (wxWindow *parent, const wxString &message, const wxString &caption=wxGetPasswordFromUserPromptStr, const wxString &defaultValue=wxEmptyString, long style=wxTextEntryDialogStyle, const wxPoint &pos=wxDefaultPosition) | |
| Constructor. | |
| wxPasswordEntryDialog::wxPasswordEntryDialog | ( | wxWindow * | parent, |
| const wxString & | message, | ||
| const wxString & | caption = wxGetPasswordFromUserPromptStr, |
||
| const wxString & | defaultValue = wxEmptyString, |
||
| long | style = wxTextEntryDialogStyle, |
||
| const wxPoint & | pos = wxDefaultPosition |
||
| ) |
Constructor.
Use wxTextEntryDialog::ShowModal to show the dialog.
| parent | Parent window. |
| message | Message to show on the dialog. |
| caption | The caption of the dialog. |
| defaultValue | The default value, which may be the empty string. |
| 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. |
| pos | Dialog position. |