GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
wxTextEntryDialog(3) Erlang Module Definition wxTextEntryDialog(3)

wxTextEntryDialog - Functions for wxTextEntryDialog class

This class represents a dialog that requests a one-line text string from the user. It is implemented as a generic wxWidgets dialog.

See: Overview cmndlg

This class is derived (and can use functions) from: wxDialog wxTopLevelWindow wxWindow wxEvtHandler

wxWidgets docs: wxTextEntryDialog

wxTextEntryDialog() = wx:wx_object()

new() -> wxTextEntryDialog()


Default constructor.

Call Create() (not implemented in wx) to really create the dialog later.

Since: 2.9.5

new(Parent, Message) -> wxTextEntryDialog()


Types:

Parent = wxWindow:wxWindow()
Message = unicode:chardata()

new(Parent, Message, Options :: [Option]) -> wxTextEntryDialog()


Types:

Parent = wxWindow:wxWindow()
Message = unicode:chardata()
Option = {caption, unicode:chardata()} | {value, unicode:chardata()} | {style, integer()} | {pos, {X :: integer(), Y :: integer()}}

Constructor.

Use wxDialog:showModal/1 to show the dialog.

See Create() (not implemented in wx) method for parameter description.

destroy(This :: wxTextEntryDialog()) -> ok


Destructor.

getValue(This) -> unicode:charlist()


Types:

This = wxTextEntryDialog()

Returns the text that the user has entered if the user has pressed OK, or the original value if the user has pressed Cancel.

setValue(This, Value) -> ok


Types:

This = wxTextEntryDialog()
Value = unicode:chardata()

Sets the default text value.

wx 2.1.1 wxWidgets team.

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.