TABLE OF CONTENTS
postprocess
NAME
::guib::moduleObj::postprocess -- executes a given script after the GUI is built
USAGE
postprocess script
DESCRIPTION
-- GUIB keyword !!!
Keyword "postprocess" is used for specifying a script that will
be executed after the Tk-GUI is built. A typical usage is setting the default values of the variables, so that variable traces will be executed. This can be used for enabling/disabling GUIB widgets.
RETURN VALUE
Returns the content of the script.
EXAMPLE
postprocess {
varset myVar -textvalue "default value"
}
SOURCE
body ::guib::moduleObj::postprocess {script} { set postprocessScript $script }