.onGUIEnd

git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@2550 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
kichik 2003-05-14 09:54:02 +00:00
parent 051fd2a73c
commit 9dae86701f

View file

@ -64,6 +64,10 @@ Example:
\c NoReadme:
\c FunctionEnd
\S3{onguiend} .onGUIEnd
This callback is called right after the installer window closes. Use it to free any user interface related plug-ins if needed.
\S3{onmouseoversection} .onMouseOverSection
This callback is called whenever the mouse position over the sections tree has changed. This allows you to set a description for each section for example. The section id on which the mouse is over currently is stored, temporarily, in $0.
@ -158,6 +162,10 @@ Example:
\c MessageBox MB_OK "Congrats, it's gone."
\c FunctionEnd
\S3{unonguiend} .onGUIEnd
This callback is called right after the installer window closes. Use it to free any user interface related plug-ins if needed.
\S3{unonuserabort} un.onUserAbort
This callback is called when the user hits the 'cancel' button and the uninstall hasn't already failed. If this function calls Abort, the install will not be aborted.