.TH wxTextEntryDialog 3erl "wx 2.2.2.1" "wxWidgets team." "Erlang Module Definition" .SH NAME wxTextEntryDialog \- Functions for wxTextEntryDialog class .SH DESCRIPTION .LP This class represents a dialog that requests a one-line text string from the user\&. It is implemented as a generic wxWidgets dialog\&. .LP See: Overview cmndlg .LP This class is derived (and can use functions) from: \fIwxDialog\fR\& \fIwxTopLevelWindow\fR\& \fIwxWindow\fR\& \fIwxEvtHandler\fR\& .LP wxWidgets docs: wxTextEntryDialog .SH DATA TYPES .nf \fBwxTextEntryDialog()\fR\& = wx:wx_object() .br .fi .SH EXPORTS .LP .nf .B new() -> wxTextEntryDialog() .br .fi .br .RS .LP Default constructor\&. .LP Call \fICreate()\fR\& (not implemented in wx) to really create the dialog later\&. .LP Since: 2\&.9\&.5 .RE .LP .nf .B new(Parent, Message) -> wxTextEntryDialog() .br .fi .br .RS .LP Types: .RS 3 Parent = wxWindow:wxWindow() .br Message = unicode:chardata() .br .RE .RE .LP .nf .B new(Parent, Message, Options :: [Option]) -> wxTextEntryDialog() .br .fi .br .RS .LP Types: .RS 3 Parent = wxWindow:wxWindow() .br Message = unicode:chardata() .br Option = .br {caption, unicode:chardata()} | .br {value, unicode:chardata()} | .br {style, integer()} | .br {pos, {X :: integer(), Y :: integer()}} .br .RE .RE .RS .LP Constructor\&. .LP Use \fIwxDialog:showModal/1\fR\& to show the dialog\&. .LP See \fICreate()\fR\& (not implemented in wx) method for parameter description\&. .RE .LP .nf .B destroy(This :: wxTextEntryDialog()) -> ok .br .fi .br .RS .LP Destructor\&. .RE .LP .nf .B getValue(This) -> unicode:charlist() .br .fi .br .RS .LP Types: .RS 3 This = wxTextEntryDialog() .br .RE .RE .RS .LP Returns the text that the user has entered if the user has pressed OK, or the original value if the user has pressed Cancel\&. .RE .LP .nf .B setValue(This, Value) -> ok .br .fi .br .RS .LP Types: .RS 3 This = wxTextEntryDialog() .br Value = unicode:chardata() .br .RE .RE .RS .LP Sets the default text value\&. .RE