$CLASSNAME$
	UIButton
$SUMMARY$
	Class UIButton.
$LANG_RU$
	 UIButton.
$ABOUT$
	Class of button.
$LANG_RU$
	 .
$SYNTAX$
	UIButton(<label>,<action>,[<val>])	--> UIButton object
$LANG_RU$
	UIButton(<label>,<action>,[<val>])	-->  UIButton
$ATTRIBUTES$
	<className>	- Class name. Value should be "UIButton".
	<val>		- Value by default which is stored in widget.
$LANG_RU$
	<className>	-  . : "UIButton".
	<val>		-   ,      .

$METHODNAME$
	UIButton()
$SUMMARY$
	Constructor.
$LANG_RU$
	.
$SYNTAX$
	UIButton(<label>,<action>,[<val>])
$ARGUMENTS$
	<label>		- String. Button label. You can define accel key for widget activation. Just place symbol "&" before accel letter. This letter will be underlined and widget will be activated with key Alt-letter.
	<action>	- Codeblock. Code block which is executed when button is pressed.
	<val>		- String, number or boolean. Value which is stored in widget.
$LANG_RU$
	<label>		- .   .         ,   "&"   .    ޣ        Alt-.
	<action>	-  .  ,       .
	<val>		- ,    . ,      .
$ENDMETHOD$

$METHODNAME$
	setAction()
$SUMMARY$
	Redefine action which executed when button is pressed.
$LANG_RU$
	 ,    .
$SYNTAX$
	setAction([<signal>],<action>)
$ARGUMENTS$
	<signal>	- String. Signal name.
	<action>	- Code block. Action.
$LANG_RU$
	<signal>	- .  .
	<action>	-  . .
$ENDMETHOD$

$METHODNAME$
	setPadding()
$SUMMARY$
	Set indent of label text to button margin.
$LANG_RU$
	       .
$SYNTAX$
	setPadding(<padding>)
$ARGUMENTS$
	<padding>	- Number. Indent of label text to button margin in pixels.
$LANG_RU$
	<padding>	- .         .
$ENDMETHOD$

$METHODNAME$
	setValue()
$SUMMARY$
	Set new value which will be stored in widget.
$LANG_RU$
	  ,     .
$SYNTAX$
	setValue(<value>)
$ARGUMENTS$
	<value>		- String, number or boolean. Value which will be stored in widget.
$LANG_RU$
	<value>		- ,    . ,      .
$ENDMETHOD$

$METHODNAME$
	getValue()
$SUMMARY$
	Get value which is stored in widget.
$LANG_RU$
	 ,     .
$SYNTAX$
	getValue() 	--> <value>
$RETURNS$
	Get value which is stored in widget.
$LANG_RU$
	 ,     .
$ENDMETHOD$

$EXAMPLES$
	button := UIButton( "&Ok", {|o,e| ok_function() } ) )

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