$CLASSNAME$
	UIEdit
$SUMMARY$
	Class UIEdit
$LANG_RU$
	 UIEdit
$ABOUT$
	Class of single line text entry.
$LANG_RU$
	   .
$SYNTAX$
	UIEdit([<value>])	--> UIEdit object
	UIEditColor([<value>],[<caption>])	--> UIEdit object
	UIEditDate([<value>],[<caption>])	--> UIEdit object
	UIEditFileName([<value>],[<caption>])	--> UIEdit object
$LANG_RU$
	UIEdit(<value>)	-->  UIEdit
	UIEditColor([<value>],[<caption>])	-->  UIEdit
	UIEditDate([<value>],[<caption>])	-->  UIEdit
	UIEditFileName([<value>],[<caption>])	-->  UIEdit
$ATTRIBUTES$
	<className>	- Class name. Value should be "UIEdit".
$LANG_RU$
	<className>	-  . : "UIEdit".

$METHODNAME$
	UIEdit()
$SUMMARY$
	Constructor. Create single line text entry.
$LANG_RU$
	.    .
$SYNTAX$
	UIEdit([<value>])	--> UIEdit object
$ARGUMENTS$
	<value>		- String. Text in single line text entry.
$LANG_RU$
	<value>		- .      .
$ENDMETHOD$

$METHODNAME$
	UIEditColor()
$SUMMARY$
	Constructor. Create single line text entry with button that show color choose dialog.
$LANG_RU$
	.          .
$SYNTAX$
	UIEditColor([<value>],[<caption>])	--> UIEdit object
$ARGUMENTS$
	<value>		- String. Text in single line text entry.
	<caption>	- String. Caption of choose color dialog.
$LANG_RU$
	<value>		- .      .
	<caption>	- .    .
$ENDMETHOD$

$METHODNAME$
	UIEditDate()
$SUMMARY$
	Constructor. Create single line text entry with button that show date choose dialog.
$LANG_RU$
	.          .
$SYNTAX$
	UIEditDate([<value>],[<caption>])	--> UIEdit object
$ARGUMENTS$
	<value>		- String. Text in single line text entry.
	<caption>	- String. Caption of choose date dialog.
$LANG_RU$
	<value>		- .      .
	<caption>	- .    .
$ENDMETHOD$

$METHODNAME$
	UIEditFileName()
$SUMMARY$
	Constructor. Create single line text entry with button that show file name choose dialog.
$LANG_RU$
	.           .
$SYNTAX$
	UIEditFileName([<value>],[<caption>])	--> UIEdit object
$ARGUMENTS$
	<value>		- String. Text in single line text entry.
	<caption>	- String. Caption of choose file name dialog.
$LANG_RU$
	<value>		- .      .
	<caption>	- .     .
$ENDMETHOD$

$METHODNAME$
	getGeometry()
$SUMMARY$
	Get size and position of single line text entry.
$LANG_RU$
	      .
$SYNTAX$
	getGeometry()	--> <aRect>
$RETURNS$
	Array of elements: width, height, x, y in pixels respectively.
$LANG_RU$
	  : , , x, y.
$ENDMETHOD$

$METHODNAME$
	setGeometry()
$SUMMARY$
	Change size and/or position of single line text entry.
$LANG_RU$
	  /    .
$SYNTAX$
	setGeometry(<geom>)
$ARGUMENTS$
	<geom>		- Array of number or number. Size and position as array of elements: width, height, x, y in pixels respectively. If parameter type is number it is mean widget width in pixels.
$LANG_RU$
	<geom>		-    .        : , , x, y.          .
$ENDMETHOD$

$METHODNAME$
	setValue()
$SUMMARY$
	Put text in edit field.
$LANG_RU$
	    .
$SYNTAX$
	setValue(<value>)
$ARGUMENTS$
	<value>		- String. Text in single line text entry.
$LANG_RU$
	<value>		- .      .
$ENDMETHOD$

$METHODNAME$
	getValue()
$SUMMARY$
	Get text from edit field.
$LANG_RU$
	    .
$SYNTAX$
	getValue()	--> <sText>
$RETURNS$
	Text from edit field. Type of returned value is string.
$LANG_RU$
	   .   : .
$ENDMETHOD$

$METHODNAME$
	readOnly()
$SUMMARY$
	Set flag of protection against change content in edit field.
$LANG_RU$
	      .
$SYNTAX$
	readOnly(<flag>)
$ARGUMENTS$
	<flag> 		- Boolean. Flag of protection against change content in edit field.
$LANG_RU$
	<flag>		-  .      .
$ENDMETHOD$

$METHODNAME$
	setPassword()
$SUMMARY$
	Set flag of suppression normal echo characters while typing. Typed characters is shown as asterisk (for password define).
$LANG_RU$
	    ף (  ).
$SYNTAX$
	setPassword(<flag>)
$ARGUMENTS$
	<flag> 		- Boolean. Flag of show text in entry as asterisks.
$LANG_RU$
	<flag>		-  .    ף.
$ENDMETHOD$

$METHODNAME$
	setAction()
$SUMMARY$
	Set action executed on content changed.
$LANG_RU$
	 ,     .
$SYNTAX$
	setAction([<signal>],<action>)
$ARGUMENTS$
	<signal>	- String. Signal name.
	<action>	- Code block. Action.
$LANG_RU$
	<signal>	- .  .
	<action>	-  . .
$ENDMETHOD$

$METHODNAME$
	appendText()
$SUMMARY$
	Append text to field content.
$LANG_RU$
	    .
$SYNTAX$
	appendText(<text>)
$ARGUMENTS$
	<text> 		- String. Appended text.
$LANG_RU$
	<text>		- .  
$ENDMETHOD$

$EXAMPLES$
	edit := UIEdit("Text...")

$PLATFORMS$
	No dependies of platform.
$LANG_RU$
	   .
$SEEALSO$
$AUTHOR$
	Andrey Cherepanov <skull@eas.lrn.ru>
$LANG_RU$
	  <skull@eas.lrn.ru>
$LASTDATE$
