1wxPasswordEntryDialog(3) Erlang Module Definition wxPasswordEntryDialog(3)
2
3
4
6 wxPasswordEntryDialog - Functions for wxPasswordEntryDialog class
7
9 This class represents a dialog that requests a one-line password string
10 from the user.
11
12 It is implemented as a generic wxWidgets dialog.
13
14 See: Overview cmndlg
15
16 This class is derived (and can use functions) from: wxTextEntryDialog
17 wxDialog wxTopLevelWindow wxWindow wxEvtHandler
18
19 wxWidgets docs: wxPasswordEntryDialog
20
22 wxPasswordEntryDialog() = wx:wx_object()
23
25 new(Parent, Message) -> wxPasswordEntryDialog()
26
27 Types:
28
29 Parent = wxWindow:wxWindow()
30 Message = unicode:chardata()
31
32 new(Parent, Message, Options :: [Option]) ->
33 wxPasswordEntryDialog()
34
35 Types:
36
37 Parent = wxWindow:wxWindow()
38 Message = unicode:chardata()
39 Option =
40 {caption, unicode:chardata()} |
41 {value, unicode:chardata()} |
42 {style, integer()} |
43 {pos, {X :: integer(), Y :: integer()}}
44
45 Constructor.
46
47 Use wxDialog:showModal/1 to show the dialog.
48
49 destroy(This :: wxPasswordEntryDialog()) -> ok
50
51 Destroys the object.
52
53
54
55wxWidgets team. wx 2.1.4 wxPasswordEntryDialog(3)