updated info about customized dialogs

git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@3002 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
joostverburg 2003-10-08 11:20:13 +00:00
parent 88cec5ef22
commit 5eff3bd5da

View file

@ -660,22 +660,19 @@ ReserveFile "${NSISDIR}\Contrib\Graphics\Wizard\win.bmp" ;Special bitmap
Start Menu Folder page: <a href="../../Examples/Modern UI/StartMenu.nsi">StartMenu.nsi</a><br /> Start Menu Folder page: <a href="../../Examples/Modern UI/StartMenu.nsi">StartMenu.nsi</a><br />
</p> </p>
<p class="header">Customize the dialogs</p> <p class="header">Customize the dialogs</p>
<p class="text">To change elements on the dialogs, modify the <p class="text">To change elements on the dialogs, use customized UI resource files
resource files Contrib\UIs directory using a resource editor such as (see Interface settings). You can change your copies of the original files (in the
<a href="http://www.users.on.net/johnson/resourcehacker/">Resource Hacker</a> Contrib\UIs folder) by using an application such as
and use the interface setting to define to filename use your customized UI.</p> <a href="http://www.users.on.net/johnson/resourcehacker/">Resource Hacker</a>.</p>
<p class="text">The 'Please wait while Setup is loading...' text <p class="text">The 'Please wait while Setup is loading...' text on the splash
on the splash screen which is being displayed when the installer screen that is being displayed while the installer is starting (Verifying installer,
is starting (Verifying installer, Unpacking data) cannot be changed Unpacking data) can be changed by using a customized UI resource file (MUI_UI setting)
by the script, because the installer is not started yet when this with a modified dialog 111.<br />
dialog is being displayed. If you want to change this text, modify The 'Verifying installer' and 'Unpacking data' texts are defined in the language header
dialog 111 of modern.exe.<br /> file of the NSIS exehead (Source\exehead\lang.h). To change them, you have to edit this
The 'Verifying installer' and 'Unpacking data' texts are defined in file and recompile NSIS.</p>
the language header file of the NSIS exehead (Source\exehead\lang.h). <p class="text">To modify the Welcome- and Finish dialog, use a custom INI file
To change them, you have to edit this file and recompile NSIS.</p> (MUI_SPECIALINI setting) or write to the INI file in the custom page functions.</p>
<p class="text">To modify the Welcome and Finish dialog, use a custom
INI file (MUI_SPECIALINI setting) or write to the INI file in the
custom page functions.</p>
<p class="header"><a name="customFunctions">Customize Modern UI Functions</a></p> <p class="header"><a name="customFunctions">Customize Modern UI Functions</a></p>
<p class="text">If you want add your own code to functions <p class="text">If you want add your own code to functions
inserted by the Modern UI, such as the .onGUIInit function and the Page functions, inserted by the Modern UI, such as the .onGUIInit function and the Page functions,