git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@743 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
kichik 2002-08-26 13:27:10 +00:00
parent 414e23fc45
commit 34ac72cc45

View file

@ -65,6 +65,22 @@ following values:
<TD vAlign=top bgColor=#cccccc><B>CancelConfirm</B></TD>
<TD vAlign=top bgColor=#cccccc><I>(optional)</I></TD>
<TD vAlign=top bgColor=#eeeeee>If specified, prompts the user (With text) whether or not to cancel if they select the cancel button.</TD></TR>
<TR>
<TD vAlign=top bgColor=#cccccc><B>CancelConfirmCaption</B></TD>
<TD vAlign=top bgColor=#cccccc><I>(optional)</I></TD>
<TD vAlign=top bgColor=#eeeeee>If specified, replaces the default "Question" caption by a user specified value.</TD></TR>
<TR>
<TD vAlign=top bgColor=#cccccc><B>CancelConfirmIcon</B></TD>
<TD vAlign=top bgColor=#cccccc><I>(optional)</I></TD>
<TD vAlign=top bgColor=#eeeeee>If specified, adds an icon to the cancel confirmation message box (MB_ICONEXCLAMATION, MB_ICONWARNING, MB_ICONINFORMATION, MB_ICONASTERISK, MB_ICONQUESTION, MB_ICONSTOP, MB_ICONERROR, or MB_ICONHAND).</TD></TR>
<TR>
<TD vAlign=top bgColor=#cccccc><B>CancelEnabled</B></TD>
<TD vAlign=top bgColor=#cccccc><I>(optional)</I></TD>
<TD vAlign=top bgColor=#eeeeee>Controls whether or not the cancel button in the NSIS window is enabled. If set to 1 or omitted, the cancel button will be enabled. If set to 0, the cancel button will be disabled.</TD></TR>
<TR>
<TD vAlign=top bgColor=#cccccc><B>CancelShow</B></TD>
<TD vAlign=top bgColor=#cccccc><I>(optional)</I></TD>
<TD vAlign=top bgColor=#eeeeee>Controls whether or not the cancel button in the NSIS window is shown. If set to 1 or omitted, the cancel button will be shown. If set to 0, the cancel button will be hidden.</TD></TR>
<TR>
<TD vAlign=top bgColor=#cccccc><B>BackEnabled</B></TD>
<TD vAlign=top bgColor=#cccccc><I>(optional)</I></TD>
@ -254,7 +270,12 @@ numbers from 1 to NumFields. Each Field section contains the following values:
<A name=history><A name=top><B>History:</B>
<P>
<UL>
<LI><a name=DLL1.1>DLL version 1.2 beta (7/31/2002)
<LI><a name=DLL1.3>DLL version 1.3 beta (8/15/2002)
<UL>
<li>Added CancelShow (by ORTIM)
<li>Added pixel transformation for widgets (by ORTIM)
</UL>
<LI><a name=DLL1.2>DLL version 1.2 beta (7/31/2002)
<UL>
<li>Added CancelEnabled (by ORTIM)
<li>Added CancelConfirmCaption and CancelConfirmIcon (by Amir Szekely)