This class represents a dialog that requests a one-line text string from the user.
It is implemented as a generic wxWidgets dialog.
See also
__init__ |
Default constructor. |
Create |
|
GetValue |
Returns the text that the user has entered if the user has pressed wx.OK , or the original value if the user has pressed Cancel. |
SetMaxLength |
This function sets the maximum number of characters the user can enter into this dialog. |
SetValue |
Sets the default text value. |
ShowModal |
Shows the dialog, returning wx.ID_OK if the user pressed wx.OK , and wx.ID_CANCEL otherwise. |
wx.
TextEntryDialog
(Dialog)¶Possible constructors:
TextEntryDialog()
TextEntryDialog(parent, message, caption=GetTextFromUserPromptStr,
value="", style=TextEntryDialogStyle, pos=DefaultPosition)
This class represents a dialog that requests a one-line text string from the user.
__init__
(self, *args, **kw)¶__init__ (self)
Default constructor.
Call Create
to really create the dialog later.
New in version 2.9.5.
__init__ (self, parent, message, caption=GetTextFromUserPromptStr, value=””, style=TextEntryDialogStyle, pos=DefaultPosition)
Constructor.
Use ShowModal
to show the dialog.
See Create
method for parameter description.
Parameters: |
---|
Create
(self, parent, message, caption=GetTextFromUserPromptStr, value="", style=TextEntryDialogStyle, pos=DefaultPosition)¶Parameters: |
|
---|---|
Return type: | bool |
New in version 2.9.5.
GetValue
(self)¶Returns the text that the user has entered if the user has pressed wx.OK
, or the original value if the user has pressed Cancel.
Return type: | string |
---|
SetMaxLength
(self, len)¶This function sets the maximum number of characters the user can enter into this dialog.
Parameters: | len (long) – |
---|
New in version 2.9.5.
See also
SetValue
(self, value)¶Sets the default text value.
Parameters: | value (string) – |
---|
ShowModal
(self)¶Shows the dialog, returning wx.ID_OK
if the user pressed wx.OK
, and wx.ID_CANCEL
otherwise.
Call GetValue
to retrieve the values of the string entered by the user after showing the dialog.
Return type: | int |
---|