git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@2141 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
kichik 2003-02-10 14:02:13 +00:00
parent b7a0bbabcc
commit a1f5924a59
3 changed files with 9 additions and 1 deletions

View file

@ -248,6 +248,8 @@ follow these steps:</p>
Bitmap for the Welcome and Finish page.</p> Bitmap for the Welcome and Finish page.</p>
<p class="text"><span class="bold">MUI_BGCOLOR</span> <i>(0xFFFFFF)</i><br /> <p class="text"><span class="bold">MUI_BGCOLOR</span> <i>(0xFFFFFF)</i><br />
Background color for the header, Welcome page and Finish page, hexadecimal. (0xBBGGRR)</p> Background color for the header, Welcome page and Finish page, hexadecimal. (0xBBGGRR)</p>
<p class="text"><span class="bold">MUI_RTL_UI</span> <i>(not defined)</i><br />
Right-to-left interface.</p>
<p class="subheader">6. Define custom functions (optional)</p> <p class="subheader">6. Define custom functions (optional)</p>
<p class="text">If you want add your own code to functions inserted by the <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 function, create your Modern UI, such as the .onGUIInit function and the Page function, create your

View file

@ -107,7 +107,11 @@
XPStyle On XPStyle On
ChangeUI all "${MUI_UI}" !ifndef MUI_RTL_UI
ChangeUI all "${MUI_UI}"
!else
ChangeUI /RTL all "${MUI_UI}"
!endif
Icon "${MUI_ICON}" Icon "${MUI_ICON}"
!ifdef MUI_UNINSTALLER !ifdef MUI_UNINSTALLER

View file

@ -46,6 +46,8 @@ OTHER PLUGINS
NSIS NSIS
* ChangeUI RTL support
* LZMA compression * LZMA compression
* multiple directory pages * multiple directory pages