fixed bug #1851136 - nsDialogs: ComboBox not like IO, DropList missing
git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@5397 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
parent
87b50cca3f
commit
4d0a2e3733
1 changed files with 7 additions and 1 deletions
|
@ -229,9 +229,13 @@ Header file for creating custom installer pages with nsDialogs
|
|||
!define __NSD_DirRequest_EXSTYLE ${WS_EX_WINDOWEDGE}|${WS_EX_CLIENTEDGE}
|
||||
|
||||
!define __NSD_ComboBox_CLASS COMBOBOX
|
||||
!define __NSD_ComboBox_STYLE ${DEFAULT_STYLES}|${WS_TABSTOP}|${WS_VSCROLL}|${WS_CLIPCHILDREN}|${CBS_AUTOHSCROLL}|${CBS_HASSTRINGS}
|
||||
!define __NSD_ComboBox_STYLE ${DEFAULT_STYLES}|${WS_TABSTOP}|${WS_VSCROLL}|${WS_CLIPCHILDREN}|${CBS_AUTOHSCROLL}|${CBS_HASSTRINGS}|${CBS_DROPDOWN}
|
||||
!define __NSD_ComboBox_EXSTYLE ${WS_EX_WINDOWEDGE}|${WS_EX_CLIENTEDGE}
|
||||
|
||||
!define __NSD_DropList_CLASS COMBOBOX
|
||||
!define __NSD_DropList_STYLE ${DEFAULT_STYLES}|${WS_TABSTOP}|${WS_VSCROLL}|${WS_CLIPCHILDREN}|${CBS_AUTOHSCROLL}|${CBS_HASSTRINGS}|${CBS_DROPDOWNLIST}
|
||||
!define __NSD_DropList_EXSTYLE ${WS_EX_WINDOWEDGE}|${WS_EX_CLIENTEDGE}
|
||||
|
||||
!define __NSD_ListBox_CLASS LISTBOX
|
||||
!define __NSD_ListBox_STYLE ${DEFAULT_STYLES}|${WS_TABSTOP}|${WS_VSCROLL}|${LBS_DISABLENOSCROLL}|${LBS_HASSTRINGS}|${LBS_NOINTEGRALHEIGHT}|${LBS_NOTIFY}
|
||||
!define __NSD_ListBox_EXSTYLE ${WS_EX_WINDOWEDGE}|${WS_EX_CLIENTEDGE}
|
||||
|
@ -258,6 +262,7 @@ Header file for creating custom installer pages with nsDialogs
|
|||
!insertmacro __NSD_DefineControl FileRequest
|
||||
!insertmacro __NSD_DefineControl DirRequest
|
||||
!insertmacro __NSD_DefineControl ComboBox
|
||||
!insertmacro __NSD_DefineControl DropList
|
||||
!insertmacro __NSD_DefineControl ListBox
|
||||
|
||||
!macro __NSD_OnEvent EVENT HWND FUNCTION
|
||||
|
@ -399,6 +404,7 @@ Header file for creating custom installer pages with nsDialogs
|
|||
!insertmacro __NSD_ControlCaseEx FileRequest
|
||||
!insertmacro __NSD_ControlCaseEx DirRequest
|
||||
!insertmacro __NSD_ControlCase ComboBox
|
||||
!insertmacro __NSD_ControlCase DropList
|
||||
!insertmacro __NSD_ControlCase ListBox
|
||||
${EndSwitch}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue