Lots of tweaks and additions to get caught up with CVS HEAD
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@30439 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -252,7 +252,6 @@ example::
|
||||
void , SetFilterIndex(int filterIndex),
|
||||
"Sets the default filter index, starting from zero.", "");
|
||||
|
||||
|
||||
DocDeclStr(
|
||||
wxString , GetMessage() const,
|
||||
"Returns the message that will be displayed on the dialog.", "");
|
||||
@@ -439,7 +438,7 @@ public:
|
||||
const wxString& message,
|
||||
const wxString& caption = wxPyGetTextFromUserPromptStr,
|
||||
const wxString& defaultValue = wxPyEmptyString,
|
||||
long style = wxOK | wxCANCEL | wxCENTRE,
|
||||
long style = wxTextEntryDialogStyle,
|
||||
const wxPoint& pos = wxDefaultPosition),
|
||||
"Constructor. Use ShowModal method to show the dialog.", "");
|
||||
|
||||
@@ -455,6 +454,21 @@ or the original value if the user has pressed Cancel.", "");
|
||||
|
||||
//---------------------------------------------------------------------------
|
||||
|
||||
MAKE_CONST_WXSTRING(GetPasswordFromUserPromptStr);
|
||||
|
||||
class wxPasswordEntryDialog : public wxTextEntryDialog
|
||||
{
|
||||
public:
|
||||
wxPasswordEntryDialog(wxWindow *parent,
|
||||
const wxString& message,
|
||||
const wxString& caption = wxPyGetPasswordFromUserPromptStr,
|
||||
const wxString& value = wxPyEmptyString,
|
||||
long style = wxTextEntryDialogStyle,
|
||||
const wxPoint& pos = wxDefaultPosition);
|
||||
};
|
||||
|
||||
//---------------------------------------------------------------------------
|
||||
|
||||
|
||||
DocStr(wxFontData,
|
||||
"This class holds a variety of information related to font dialogs and
|
||||
|
||||
Reference in New Issue
Block a user