added NSD_CreateNumber with ES_NUMBER
git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@5578 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
parent
f655226380
commit
304974defe
2 changed files with 7 additions and 0 deletions
|
@ -264,6 +264,7 @@ SectionEnd</pre></blockquote>
|
|||
<li>RadioButton</li>
|
||||
<li>Text</li>
|
||||
<li>Password</li>
|
||||
<li>Number</li>
|
||||
<li>FileRequest</li>
|
||||
<li>DirRequest</li>
|
||||
<li>ComboBox</li>
|
||||
|
@ -597,6 +598,7 @@ SectionEnd</pre></blockquote>
|
|||
<li>${NSD_CreateRadioButton}</li>
|
||||
<li>${NSD_CreateText}</li>
|
||||
<li>${NSD_CreatePassword}</li>
|
||||
<li>${NSD_CreateNumber}</li>
|
||||
<li>${NSD_CreateFileRequest}</li>
|
||||
<li>${NSD_CreateDirRequest}</li>
|
||||
<li>${NSD_CreateComboBox}</li>
|
||||
|
|
|
@ -225,6 +225,10 @@ Header file for creating custom installer pages with nsDialogs
|
|||
!define __NSD_Password_STYLE ${DEFAULT_STYLES}|${WS_TABSTOP}|${ES_AUTOHSCROLL}|${ES_PASSWORD}
|
||||
!define __NSD_Password_EXSTYLE ${WS_EX_WINDOWEDGE}|${WS_EX_CLIENTEDGE}
|
||||
|
||||
!define __NSD_Number_CLASS EDIT
|
||||
!define __NSD_Number_STYLE ${DEFAULT_STYLES}|${WS_TABSTOP}|${ES_AUTOHSCROLL}|${ES_NUMBER}
|
||||
!define __NSD_Number_EXSTYLE ${WS_EX_WINDOWEDGE}|${WS_EX_CLIENTEDGE}
|
||||
|
||||
!define __NSD_FileRequest_CLASS EDIT
|
||||
!define __NSD_FileRequest_STYLE ${DEFAULT_STYLES}|${WS_TABSTOP}|${ES_AUTOHSCROLL}
|
||||
!define __NSD_FileRequest_EXSTYLE ${WS_EX_WINDOWEDGE}|${WS_EX_CLIENTEDGE}
|
||||
|
@ -264,6 +268,7 @@ Header file for creating custom installer pages with nsDialogs
|
|||
!insertmacro __NSD_DefineControl RadioButton
|
||||
!insertmacro __NSD_DefineControl Text
|
||||
!insertmacro __NSD_DefineControl Password
|
||||
!insertmacro __NSD_DefineControl Number
|
||||
!insertmacro __NSD_DefineControl FileRequest
|
||||
!insertmacro __NSD_DefineControl DirRequest
|
||||
!insertmacro __NSD_DefineControl ComboBox
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue