MakeNSISW is now System DPI aware (16x16, 24x24 and 32x32 toolbar images)

git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@7042 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
anders_k 2018-11-06 21:04:37 +00:00
parent b1240c82d9
commit 5642b70dd5
26 changed files with 146 additions and 113 deletions

View file

@ -24,8 +24,6 @@
#define TOOLBAR_H
#include <commctrl.h>
#define BUTTONCOUNT 15
#define TBB_LOADSCRIPT 0
#define TBB_SAVE 1
#define TBB_SEP1 2
@ -38,11 +36,7 @@
#define TBB_COMPRESSOR 9
#define TBB_EDITSCRIPT 10
#define TBB_BROWSESCR 11
#define TBB_SEP3 12
#define TBB_NSISHOME 13
#define TBB_DOCS 14
#define IMAGECOUNT 16
#define BUTTONCOUNT 12
#define IDB_LOADSCRIPT 0
#define IDB_SAVE 1
@ -53,14 +47,13 @@
#define IDB_EDITSCRIPT 6
#define IDB_BROWSESCR 7
#define IDB_CLEARLOG 8
#define IDB_NSISHOME 9
#define IDB_DOCS 10
#define IDB_COMPRESSOR 11
#define IDB_COMPRESSOR_SCRIPT 11
#define IDB_COMPRESSOR_BZIP2 12
#define IDB_COMPRESSOR_ZLIB 13
#define IDB_COMPRESSOR_BEST 14
#define IDB_COMPRESSOR_LZMA 15
#define IDB_COMPRESSOR_SCRIPT 9
#define IDB_COMPRESSOR_BZIP2 10
#define IDB_COMPRESSOR_ZLIB 11
#define IDB_COMPRESSOR_BEST 12
#define IDB_COMPRESSOR_LZMA 13
#define IMAGECOUNT 14
#define IDB_COMPRESSOR IDB_COMPRESSOR_SCRIPT
typedef struct ToolBarStruct {
HWND hwnd;