applied patch #2135855 - Timer support for nsDialogs

also added progress bar support for the example

git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@5803 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
kichik 2008-11-29 17:56:54 +00:00
parent bbba2aaa6e
commit dba6bb4210
6 changed files with 785 additions and 548 deletions

View file

@ -39,6 +39,7 @@ SB Status bar window
SBM Scroll bar control
STM Static control
TCM Tab control
PBM Progress bar
-----------------------------------
NOT included messages (WM_USER + X)
@ -50,7 +51,6 @@ DTM Date and time picker control
HKM Hot key control
IPM IP address control
MCM Month calendar control
PBM Progress bar
PGM Pager control
PSM Property sheet
RB Rebar control
@ -579,5 +579,14 @@ UDM Up-down control
#Tab control#
!define TCM_FIRST 0x1300
#Progress bar control#
!define PBM_SETRANGE 0x0401
!define PBM_SETPOS 0x0402
!define PBM_DELTAPOS 0x0403
!define PBM_SETSTEP 0x0404
!define PBM_STEPIT 0x0405
!define PBM_GETPOS 0x0408
!define PBM_SETMARQUEE 0x040a
!verbose pop
!endif