indent -nut -kr -bli0 -i2

git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@3847 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
kichik 2005-01-08 13:30:33 +00:00
parent c6dc4d76fe
commit 3b5782aa07

View file

@ -13,7 +13,8 @@ BITMAP bm;
HBITMAP g_hbm; HBITMAP g_hbm;
int g_rv; int g_rv;
int resolution; int resolution;
int sleep_val, fadein_val, fadeout_val, state, timeleft, keycolor, nt50, alphaparam; int sleep_val, fadein_val, fadeout_val, state, timeleft, keycolor, nt50,
alphaparam;
const char classname[4] = "_sp"; const char classname[4] = "_sp";
typedef BOOL(_stdcall * _tSetLayeredWindowAttributesProc) (HWND hwnd, // handle to the layered window typedef BOOL(_stdcall * _tSetLayeredWindowAttributesProc) (HWND hwnd, // handle to the layered window
@ -23,7 +24,8 @@ typedef BOOL (_stdcall *_tSetLayeredWindowAttributesProc)(HWND hwnd, // handle t
); );
_tSetLayeredWindowAttributesProc SetLayeredWindowAttributesProc; _tSetLayeredWindowAttributesProc SetLayeredWindowAttributesProc;
static LRESULT CALLBACK WndProc(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam) static LRESULT CALLBACK WndProc(HWND hwnd, UINT uMsg, WPARAM wParam,
LPARAM lParam)
{ {
PAINTSTRUCT ps; PAINTSTRUCT ps;
RECT r; RECT r;
@ -31,16 +33,14 @@ static LRESULT CALLBACK WndProc(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lPar
HDC hdc; HDC hdc;
HBITMAP oldbm; HBITMAP oldbm;
switch (uMsg) switch (uMsg) {
{
case WM_CREATE: case WM_CREATE:
SystemParametersInfo(SPI_GETWORKAREA, 0, &r, 0); SystemParametersInfo(SPI_GETWORKAREA, 0, &r, 0);
SetWindowLong(hwnd, GWL_STYLE, 0); SetWindowLong(hwnd, GWL_STYLE, 0);
SetWindowPos(hwnd, NULL, SetWindowPos(hwnd, NULL,
r.left + (r.right - r.left - bm.bmWidth) / 2, r.left + (r.right - r.left - bm.bmWidth) / 2,
r.top + (r.bottom - r.top - bm.bmHeight) / 2, r.top + (r.bottom - r.top - bm.bmHeight) / 2,
bm.bmWidth,bm.bmHeight, bm.bmWidth, bm.bmHeight, SWP_NOZORDER | SWP_SHOWWINDOW);
SWP_NOZORDER | SWP_SHOWWINDOW);
return 0; return 0;
case WM_PAINT: case WM_PAINT:
@ -49,7 +49,8 @@ static LRESULT CALLBACK WndProc(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lPar
GetClientRect(hwnd, &r); GetClientRect(hwnd, &r);
oldbm = SelectObject(hdc, g_hbm); oldbm = SelectObject(hdc, g_hbm);
BitBlt(curdc,r.left,r.top,r.right-r.left,r.bottom-r.top,hdc,0,0, SRCCOPY); BitBlt(curdc, r.left, r.top, r.right - r.left, r.bottom - r.top, hdc,
0, 0, SRCCOPY);
SelectObject(hdc, oldbm); SelectObject(hdc, oldbm);
DeleteDC(hdc); DeleteDC(hdc);
@ -92,18 +93,23 @@ void SetTransparentRegion(HWND myWnd)
region = CreateRectRgn(0, 0, bm.bmWidth, bm.bmHeight); region = CreateRectRgn(0, 0, bm.bmWidth, bm.bmHeight);
// Search for transparent pixels // Search for transparent pixels
for (y = bm.bmHeight-1; y >= 0; y--) for (y = bm.bmHeight - 1; y >= 0; y--) {
for (x = 0; x < bm.bmWidth; ) for (x = 0; x < bm.bmWidth;) {
if ((*bmp & 0xFFFFFF) == keycolor) if ((*bmp & 0xFFFFFF) == keycolor) {
{
int j = x; int j = x;
while ((x < bm.bmWidth) && ((*bmp & 0xFFFFFF) == keycolor)) bmp++, x++; while ((x < bm.bmWidth) && ((*bmp & 0xFFFFFF) == keycolor)) {
bmp++, x++;
}
// Cut transparent pixels from the original region // Cut transparent pixels from the original region
cutrgn = CreateRectRgn(j, y, x, y + 1); cutrgn = CreateRectRgn(j, y, x, y + 1);
CombineRgn(region, region, cutrgn, RGN_XOR); CombineRgn(region, region, cutrgn, RGN_XOR);
DeleteObject(cutrgn); DeleteObject(cutrgn);
} else bmp++, x++; } else {
bmp++, x++;
}
}
}
// Set resulting region. // Set resulting region.
SetWindowRgn(myWnd, region, TRUE); SetWindowRgn(myWnd, region, TRUE);
@ -112,48 +118,51 @@ void SetTransparentRegion(HWND myWnd)
GlobalFree(bmp); GlobalFree(bmp);
} }
BOOL WINAPI DllMain(HANDLE hInst, ULONG ul_reason_for_call, LPVOID lpReserved) BOOL WINAPI DllMain(HANDLE hInst, ULONG ul_reason_for_call,
LPVOID lpReserved)
{ {
g_hInstance = hInst; g_hInstance = hInst;
return TRUE; return TRUE;
} }
void CALLBACK TimeProc( void CALLBACK TimeProc(UINT uID,
UINT uID, UINT uMsg, DWORD dwUser, DWORD dw1, DWORD dw2)
UINT uMsg,
DWORD dwUser,
DWORD dw1,
DWORD dw2)
{ {
int call = -1; int call = -1;
switch (state) switch (state) {
{
// FadeIN // FadeIN
case 0: if (timeleft == 0) case 0:
{ if (timeleft == 0) {
timeleft = sleep_val; timeleft = sleep_val;
state++; state++;
if (nt50) call = 255; if (nt50)
} else { call = ((fadein_val-timeleft)*255)/fadein_val; break; } call = 255;
} else {
call = ((fadein_val - timeleft) * 255) / fadein_val;
break;
}
// Sleep // Sleep
case 1: if (timeleft == 0) case 1:
{ if (timeleft == 0) {
timeleft = fadeout_val; timeleft = fadeout_val;
state++; state++;
// fadeout // fadeout
} else break; } else
break;
// FadeOUT // FadeOUT
case 2: if (timeleft == 0) case 2:
{ if (timeleft == 0) {
PostMessage((HWND) dwUser, WM_TIMER, 0, 0); PostMessage((HWND) dwUser, WM_TIMER, 0, 0);
return; return;
} else { call = ((timeleft)*255)/fadeout_val; break; } } else {
call = ((timeleft) * 255) / fadeout_val;
break;
}
} }
// Transparency value aquired, and could be set... // Transparency value aquired, and could be set...
if ((call >= 0) && nt50) if ((call >= 0) && nt50)
SetLayeredWindowAttributesProc((HWND) dwUser, keycolor, SetLayeredWindowAttributesProc((HWND) dwUser, keycolor,
call, call, alphaparam);
alphaparam);
// Time is running out... // Time is running out...
timeleft--; timeleft--;
@ -161,7 +170,8 @@ void CALLBACK TimeProc(
int myatoi(char *s); int myatoi(char *s);
void __declspec(dllexport) show(HWND hwndParent, int string_size, char *variables, stack_t **stacktop) void __declspec(dllexport) show(HWND hwndParent, int string_size,
char *variables, stack_t ** stacktop)
{ {
DEVMODE dm; DEVMODE dm;
char fn[MAX_PATH]; char fn[MAX_PATH];
@ -185,63 +195,65 @@ void __declspec(dllexport) show(HWND hwndParent, int string_size, char *variable
dm.dmSize = sizeof(DEVMODE); dm.dmSize = sizeof(DEVMODE);
EnumDisplaySettings(NULL, ENUM_CURRENT_SETTINGS, &dm); EnumDisplaySettings(NULL, ENUM_CURRENT_SETTINGS, &dm);
// Check for winXP/2k at 32 bpp transparency // Check for winXP/2k at 32 bpp transparency
nt50 = (LOBYTE(LOWORD(GetVersion())) >= 5) && !((dm.dmBitsPerPel < 32) && (keycolor != -1)); nt50 = (LOBYTE(LOWORD(GetVersion())) >= 5) && !((dm.dmBitsPerPel < 32)
if (!nt50) && (keycolor != -1));
{ if (!nt50) {
// Fading+transparency is unsupported at old windows versions... // Fading+transparency is unsupported at old windows versions...
resolution = sleep_val + fadein_val + fadeout_val; resolution = sleep_val + fadein_val + fadeout_val;
fadeout_val = fadein_val = 0; fadeout_val = fadein_val = 0;
sleep_val = 1; sleep_val = 1;
} else } else {
{
// div them by resolution // div them by resolution
sleep_val >>= 5; sleep_val >>= 5;
fadein_val >>= 5; fadein_val >>= 5;
fadeout_val >>= 5; fadeout_val >>= 5;
alphaparam = LWA_ALPHA | ((keycolor == -1) ? (0) : (LWA_COLORKEY)); alphaparam = LWA_ALPHA | ((keycolor == -1) ? (0) : (LWA_COLORKEY));
keycolor = ((keycolor & 0xFF) << 16) + (keycolor & 0xFF00) + ((keycolor & 0xFF0000) >> 16); keycolor =
((keycolor & 0xFF) << 16) + (keycolor & 0xFF00) +
((keycolor & 0xFF0000) >> 16);
} }
if (fn[0] && ((sleep_val+fadein_val+fadeout_val)>0)) if (fn[0] && ((sleep_val + fadein_val + fadeout_val) > 0)) {
{
MSG msg; MSG msg;
static WNDCLASS wc; static WNDCLASS wc;
wc.lpfnWndProc = WndProc; wc.lpfnWndProc = WndProc;
wc.hInstance = g_hInstance; wc.hInstance = g_hInstance;
wc.hCursor = LoadCursor(NULL, IDC_ARROW); wc.hCursor = LoadCursor(NULL, IDC_ARROW);
wc.lpszClassName = classname; wc.lpszClassName = classname;
if (RegisterClass(&wc)) if (RegisterClass(&wc)) {
{
char fn2[MAX_PATH]; char fn2[MAX_PATH];
lstrcpy(fn2, fn); lstrcpy(fn2, fn);
lstrcat(fn, ".bmp"); lstrcat(fn, ".bmp");
lstrcat(fn2, ".wav"); lstrcat(fn2, ".wav");
g_hbm=LoadImage(NULL,fn,IMAGE_BITMAP,0,0,LR_CREATEDIBSECTION|LR_LOADFROMFILE); g_hbm =
if (g_hbm) LoadImage(NULL, fn, IMAGE_BITMAP, 0, 0,
{ LR_CREATEDIBSECTION | LR_LOADFROMFILE);
if (g_hbm) {
HWND myWnd; HWND myWnd;
UINT timerEvent; UINT timerEvent;
// Get Bitmap Information // Get Bitmap Information
GetObject(g_hbm, sizeof(bm), (LPSTR) & bm); GetObject(g_hbm, sizeof(bm), (LPSTR) & bm);
myWnd = CreateWindowEx(WS_EX_TOOLWINDOW | ((nt50)?(WS_EX_LAYERED):(0)),classname,classname, myWnd =
0,0,0,0,0,(HWND)hwndParent,NULL,g_hInstance,NULL); CreateWindowEx(WS_EX_TOOLWINDOW |
((nt50) ? (WS_EX_LAYERED) : (0)), classname,
classname, 0, 0, 0, 0, 0, (HWND) hwndParent,
NULL, g_hInstance, NULL);
// Set transparency / key color // Set transparency / key color
if (nt50) if (nt50) {
{
// Get blending proc address // Get blending proc address
HANDLE user32 = GetModuleHandle("user32"); HANDLE user32 = GetModuleHandle("user32");
SetLayeredWindowAttributesProc = (_tSetLayeredWindowAttributesProc) GetProcAddress(user32, "SetLayeredWindowAttributes"); SetLayeredWindowAttributesProc =
(_tSetLayeredWindowAttributesProc) GetProcAddress(user32,
"SetLayeredWindowAttributes");
// Use win2k method // Use win2k method
SetLayeredWindowAttributesProc(myWnd, keycolor, SetLayeredWindowAttributesProc(myWnd, keycolor,
(fadein_val > 0) ? (0) : (255), (fadein_val > 0) ? (0) : (255),
alphaparam); alphaparam);
} else } else if (keycolor != -1) {
if (keycolor != -1)
{
// transparency mode // transparency mode
SetTransparentRegion(myWnd); SetTransparentRegion(myWnd);
} }
@ -249,11 +261,13 @@ void __declspec(dllexport) show(HWND hwndParent, int string_size, char *variable
PlaySound(fn2, NULL, SND_ASYNC | SND_FILENAME | SND_NODEFAULT); PlaySound(fn2, NULL, SND_ASYNC | SND_FILENAME | SND_NODEFAULT);
// Start up timer... // Start up timer...
state = 0; timeleft = fadein_val; state = 0;
timerEvent = timeSetEvent(resolution, RESOLUTION/4, TimeProc, (DWORD_PTR)myWnd, TIME_PERIODIC); timeleft = fadein_val;
timerEvent =
timeSetEvent(resolution, RESOLUTION / 4, TimeProc,
(DWORD_PTR) myWnd, TIME_PERIODIC);
while (IsWindow(myWnd) && GetMessage(&msg,myWnd,0,0)) while (IsWindow(myWnd) && GetMessage(&msg, myWnd, 0, 0)) {
{
DispatchMessage(&msg); DispatchMessage(&msg);
} }
@ -265,7 +279,6 @@ void __declspec(dllexport) show(HWND hwndParent, int string_size, char *variable
DeleteObject(g_hbm); DeleteObject(g_hbm);
} }
// We should UnRegister class, since Windows NT series never does this by itself // We should UnRegister class, since Windows NT series never does this by itself
UnregisterClass(wc.lpszClassName, g_hInstance); UnregisterClass(wc.lpszClassName, g_hInstance);
} }
@ -277,44 +290,47 @@ void __declspec(dllexport) show(HWND hwndParent, int string_size, char *variable
int myatoi(char *s) int myatoi(char *s)
{ {
unsigned int v = 0; unsigned int v = 0;
if (*s == '0' && (s[1] == 'x' || s[1] == 'X')) if (*s == '0' && (s[1] == 'x' || s[1] == 'X')) {
{
s += 2; s += 2;
for (;;) for (;;) {
{
int c = *s++; int c = *s++;
if (c >= '0' && c <= '9') c-='0'; if (c >= '0' && c <= '9')
else if (c >= 'a' && c <= 'f') c-='a'-10; c -= '0';
else if (c >= 'A' && c <= 'F') c-='A'-10; else if (c >= 'a' && c <= 'f')
else break; c -= 'a' - 10;
else if (c >= 'A' && c <= 'F')
c -= 'A' - 10;
else
break;
v <<= 4; v <<= 4;
v += c; v += c;
} }
} } else if (*s == '0' && s[1] <= '7' && s[1] >= '0') {
else if (*s == '0' && s[1] <= '7' && s[1] >= '0')
{
s++; s++;
for (;;) for (;;) {
{
int c = *s++; int c = *s++;
if (c >= '0' && c <= '7') c-='0'; if (c >= '0' && c <= '7')
else break; c -= '0';
else
break;
v <<= 3; v <<= 3;
v += c; v += c;
} }
} } else {
else
{
int sign = 0; int sign = 0;
if (*s == '-') { s++; sign++; } if (*s == '-') {
for (;;) s++;
{ sign++;
}
for (;;) {
int c = *s++ - '0'; int c = *s++ - '0';
if (c < 0 || c > 9) break; if (c < 0 || c > 9)
break;
v *= 10; v *= 10;
v += c; v += c;
} }
if (sign) return -(int) v; if (sign)
return -(int) v;
} }
return (int) v; return (int) v;
} }