1 /* -*- tab-width: 8; c-basic-offset: 4 -*- */
5 * Copyright 1998, 1999 Eric Kohl
9 * I will only improve this control once in a while.
10 * Eric <ekohl@abo.rhein-zeitung.de>
13 * - check for the 'rec ' list in some AVI files
14 * - implement some missing flags (ACS_TRANSPARENT and ACS_CENTER)
15 * - protection between service thread and wndproc messages handling
16 * concurrent access to infoPtr
26 #include "debugtools.h"
28 DEFAULT_DEBUG_CHANNEL(animate);
30 #define ANIMATE_GetInfoPtr(hWnd) ((ANIMATE_INFO *)GetWindowLongA(hWnd, 0))
34 static void ANIMATE_Notify(ANIMATE_INFO* infoPtr, UINT notif)
36 SendMessageA(GetParent(infoPtr->hWnd), WM_COMMAND,
37 MAKEWPARAM(GetDlgCtrlID(infoPtr->hWnd), notif),
38 (LPARAM)infoPtr->hWnd);
41 static BOOL ANIMATE_LoadResA(ANIMATE_INFO *infoPtr, HINSTANCE hInst, LPSTR lpName)
47 hrsrc = FindResourceA(hInst, lpName, "AVI");
51 infoPtr->hRes = LoadResource(hInst, hrsrc);
55 lpAvi = LockResource(infoPtr->hRes);
59 memset(&mminfo, 0, sizeof(mminfo));
60 mminfo.fccIOProc = FOURCC_MEM;
61 mminfo.pchBuffer = (LPSTR)lpAvi;
62 mminfo.cchBuffer = SizeofResource(hInst, hrsrc);
63 infoPtr->hMMio = infoPtr->fnmmioOpenA(NULL, &mminfo, MMIO_READ);
65 if (!infoPtr->hMMio) {
66 GlobalFree((HGLOBAL)lpAvi);
74 static BOOL ANIMATE_LoadFileA(ANIMATE_INFO *infoPtr, LPSTR lpName)
76 infoPtr->hMMio = infoPtr->fnmmioOpenA((LPSTR)lpName, NULL,
77 MMIO_ALLOCBUF | MMIO_READ | MMIO_DENYWRITE);
86 static LRESULT ANIMATE_DoStop(ANIMATE_INFO *infoPtr)
88 EnterCriticalSection(&infoPtr->cs);
90 /* should stop playing */
91 if (infoPtr->hService) {
92 SERVICE_Delete(infoPtr->hService);
93 infoPtr->hService = 0;
95 if (infoPtr->uTimer) {
96 KillTimer(infoPtr->hWnd, infoPtr->uTimer);
100 LeaveCriticalSection(&infoPtr->cs);
102 ANIMATE_Notify(infoPtr, ACN_STOP);
108 static void ANIMATE_Free(ANIMATE_INFO *infoPtr)
110 if (infoPtr->hMMio) {
111 ANIMATE_DoStop(infoPtr);
112 infoPtr->fnmmioClose(infoPtr->hMMio, 0);
114 FreeResource(infoPtr->hRes);
117 if (infoPtr->lpIndex) {
118 HeapFree(GetProcessHeap(), 0, infoPtr->lpIndex);
119 infoPtr->lpIndex = NULL;
122 (infoPtr->fnICClose)(infoPtr->hic);
125 if (infoPtr->inbih) {
126 HeapFree(GetProcessHeap(), 0, infoPtr->inbih);
127 infoPtr->inbih = NULL;
129 if (infoPtr->outbih) {
130 HeapFree(GetProcessHeap(), 0, infoPtr->outbih);
131 infoPtr->outbih = NULL;
133 HeapFree(GetProcessHeap(), 0, infoPtr->indata);
134 HeapFree(GetProcessHeap(), 0, infoPtr->outdata);
135 infoPtr->indata = infoPtr->outdata = NULL;
138 memset(&infoPtr->mah, 0, sizeof(infoPtr->mah));
139 memset(&infoPtr->ash, 0, sizeof(infoPtr->ash));
140 infoPtr->nFromFrame = infoPtr->nToFrame = infoPtr->nLoop = infoPtr->currFrame = 0;
145 static LRESULT ANIMATE_PaintFrame(ANIMATE_INFO* infoPtr, HDC hDC)
147 if (!hDC || !infoPtr->inbih)
150 StretchDIBits(hDC, 0, 0, infoPtr->outbih->biWidth, infoPtr->outbih->biHeight,
151 0, 0, infoPtr->outbih->biWidth, infoPtr->outbih->biHeight,
152 infoPtr->outdata, (LPBITMAPINFO)infoPtr->outbih, DIB_RGB_COLORS,
155 StretchDIBits(hDC, 0, 0, infoPtr->inbih->biWidth, infoPtr->inbih->biHeight,
156 0, 0, infoPtr->inbih->biWidth, infoPtr->inbih->biHeight,
157 infoPtr->indata, (LPBITMAPINFO)infoPtr->inbih, DIB_RGB_COLORS,
163 static LRESULT ANIMATE_DrawFrame(ANIMATE_INFO* infoPtr)
167 TRACE("Drawing frame %d (loop %d)\n", infoPtr->currFrame, infoPtr->nLoop);
169 EnterCriticalSection(&infoPtr->cs);
171 infoPtr->fnmmioSeek(infoPtr->hMMio, infoPtr->lpIndex[infoPtr->currFrame], SEEK_SET);
172 infoPtr->fnmmioRead(infoPtr->hMMio, infoPtr->indata, infoPtr->ash.dwSuggestedBufferSize);
175 (infoPtr->fnICDecompress)(infoPtr->hic, 0, infoPtr->inbih, infoPtr->indata,
176 infoPtr->outbih, infoPtr->outdata) != ICERR_OK) {
177 LeaveCriticalSection(&infoPtr->cs);
178 WARN("Decompression error\n");
182 if ((hDC = GetDC(infoPtr->hWnd)) != 0) {
183 ANIMATE_PaintFrame(infoPtr, hDC);
184 ReleaseDC(infoPtr->hWnd, hDC);
187 if (infoPtr->currFrame++ >= infoPtr->nToFrame) {
188 infoPtr->currFrame = infoPtr->nFromFrame;
189 if (infoPtr->nLoop != -1) {
190 if (--infoPtr->nLoop == 0) {
191 ANIMATE_DoStop(infoPtr);
195 LeaveCriticalSection(&infoPtr->cs);
200 static void CALLBACK ANIMATE_ServiceCallback(ULONG_PTR ptr_)
202 ANIMATE_INFO* infoPtr = (ANIMATE_INFO*)ptr_;
204 EnterCriticalSection(&infoPtr->cs);
205 ANIMATE_DrawFrame(infoPtr);
206 LeaveCriticalSection(&infoPtr->cs);
209 static LRESULT ANIMATE_Play(HWND hWnd, WPARAM wParam, LPARAM lParam)
211 ANIMATE_INFO *infoPtr = ANIMATE_GetInfoPtr(hWnd);
217 if (infoPtr->hService || infoPtr->uTimer) {
218 FIXME("Already playing ? what should I do ??\n");
219 ANIMATE_DoStop(infoPtr);
222 infoPtr->nFromFrame = (INT)LOWORD(lParam);
223 infoPtr->nToFrame = (INT)HIWORD(lParam);
224 infoPtr->nLoop = (INT)wParam;
226 if (infoPtr->nToFrame == 0xFFFF)
227 infoPtr->nToFrame = infoPtr->mah.dwTotalFrames - 1;
229 TRACE("(repeat=%d from=%d to=%d);\n",
230 infoPtr->nLoop, infoPtr->nFromFrame, infoPtr->nToFrame);
232 if (infoPtr->nFromFrame >= infoPtr->nToFrame ||
233 infoPtr->nToFrame >= infoPtr->mah.dwTotalFrames)
236 infoPtr->currFrame = infoPtr->nFromFrame;
238 if (GetWindowLongA(hWnd, GWL_STYLE) & ACS_TIMER) {
239 TRACE("Using a timer\n");
240 /* create a timer to display AVI */
241 infoPtr->uTimer = SetTimer(hWnd, 1, infoPtr->mah.dwMicroSecPerFrame / 1000, NULL);
243 TRACE("Using the service thread\n");
245 infoPtr->hService = SERVICE_AddTimer(infoPtr->mah.dwMicroSecPerFrame / 1000,
246 ANIMATE_ServiceCallback, (DWORD)infoPtr);
249 ANIMATE_Notify(infoPtr, ACN_START);
255 static BOOL ANIMATE_GetAviInfo(ANIMATE_INFO *infoPtr)
264 if (infoPtr->fnmmioDescend(infoPtr->hMMio, &ckMainRIFF, NULL, 0) != 0) {
265 WARN("Can't find 'RIFF' chunk\n");
269 if ((ckMainRIFF.ckid != FOURCC_RIFF) ||
270 (ckMainRIFF.fccType != mmioFOURCC('A', 'V', 'I', ' '))) {
271 WARN("Can't find 'AVI ' chunk\n");
275 mmckHead.fccType = mmioFOURCC('h', 'd', 'r', 'l');
276 if (infoPtr->fnmmioDescend(infoPtr->hMMio, &mmckHead, &ckMainRIFF, MMIO_FINDLIST) != 0) {
277 WARN("Can't find 'hdrl' list\n");
281 mmckInfo.ckid = mmioFOURCC('a', 'v', 'i', 'h');
282 if (infoPtr->fnmmioDescend(infoPtr->hMMio, &mmckInfo, &mmckHead, MMIO_FINDCHUNK) != 0) {
283 WARN("Can't find 'avih' chunk\n");
287 infoPtr->fnmmioRead(infoPtr->hMMio, (LPSTR)&infoPtr->mah, sizeof(infoPtr->mah));
288 TRACE("mah.dwMicroSecPerFrame=%ld\n", infoPtr->mah.dwMicroSecPerFrame);
289 TRACE("mah.dwMaxBytesPerSec=%ld\n", infoPtr->mah.dwMaxBytesPerSec);
290 TRACE("mah.dwPaddingGranularity=%ld\n", infoPtr->mah.dwPaddingGranularity);
291 TRACE("mah.dwFlags=%ld\n", infoPtr->mah.dwFlags);
292 TRACE("mah.dwTotalFrames=%ld\n", infoPtr->mah.dwTotalFrames);
293 TRACE("mah.dwInitialFrames=%ld\n", infoPtr->mah.dwInitialFrames);
294 TRACE("mah.dwStreams=%ld\n", infoPtr->mah.dwStreams);
295 TRACE("mah.dwSuggestedBufferSize=%ld\n", infoPtr->mah.dwSuggestedBufferSize);
296 TRACE("mah.dwWidth=%ld\n", infoPtr->mah.dwWidth);
297 TRACE("mah.dwHeight=%ld\n", infoPtr->mah.dwHeight);
298 infoPtr->fnmmioAscend(infoPtr->hMMio, &mmckInfo, 0);
300 mmckList.fccType = mmioFOURCC('s', 't', 'r', 'l');
301 if (infoPtr->fnmmioDescend(infoPtr->hMMio, &mmckList, &mmckHead, MMIO_FINDLIST) != 0) {
302 WARN("Can't find 'strl' list\n");
306 mmckInfo.ckid = mmioFOURCC('s', 't', 'r', 'h');
307 if (infoPtr->fnmmioDescend(infoPtr->hMMio, &mmckInfo, &mmckList, MMIO_FINDCHUNK) != 0) {
308 WARN("Can't find 'strh' chunk\n");
312 infoPtr->fnmmioRead(infoPtr->hMMio, (LPSTR)&infoPtr->ash, sizeof(infoPtr->ash));
313 TRACE("ash.fccType='%c%c%c%c'\n", LOBYTE(LOWORD(infoPtr->ash.fccType)),
314 HIBYTE(LOWORD(infoPtr->ash.fccType)),
315 LOBYTE(HIWORD(infoPtr->ash.fccType)),
316 HIBYTE(HIWORD(infoPtr->ash.fccType)));
317 TRACE("ash.fccHandler='%c%c%c%c'\n", LOBYTE(LOWORD(infoPtr->ash.fccHandler)),
318 HIBYTE(LOWORD(infoPtr->ash.fccHandler)),
319 LOBYTE(HIWORD(infoPtr->ash.fccHandler)),
320 HIBYTE(HIWORD(infoPtr->ash.fccHandler)));
321 TRACE("ash.dwFlags=%ld\n", infoPtr->ash.dwFlags);
322 TRACE("ash.wPriority=%d\n", infoPtr->ash.wPriority);
323 TRACE("ash.wLanguage=%d\n", infoPtr->ash.wLanguage);
324 TRACE("ash.dwInitialFrames=%ld\n", infoPtr->ash.dwInitialFrames);
325 TRACE("ash.dwScale=%ld\n", infoPtr->ash.dwScale);
326 TRACE("ash.dwRate=%ld\n", infoPtr->ash.dwRate);
327 TRACE("ash.dwStart=%ld\n", infoPtr->ash.dwStart);
328 TRACE("ash.dwLength=%ld\n", infoPtr->ash.dwLength);
329 TRACE("ash.dwSuggestedBufferSize=%ld\n", infoPtr->ash.dwSuggestedBufferSize);
330 TRACE("ash.dwQuality=%ld\n", infoPtr->ash.dwQuality);
331 TRACE("ash.dwSampleSize=%ld\n", infoPtr->ash.dwSampleSize);
332 TRACE("ash.rcFrame=(%d,%d,%d,%d)\n", infoPtr->ash.rcFrame.top, infoPtr->ash.rcFrame.left,
333 infoPtr->ash.rcFrame.bottom, infoPtr->ash.rcFrame.right);
334 infoPtr->fnmmioAscend(infoPtr->hMMio, &mmckInfo, 0);
336 mmckInfo.ckid = mmioFOURCC('s', 't', 'r', 'f');
337 if (infoPtr->fnmmioDescend(infoPtr->hMMio, &mmckInfo, &mmckList, MMIO_FINDCHUNK) != 0) {
338 WARN("Can't find 'strh' chunk\n");
342 infoPtr->inbih = HeapAlloc(GetProcessHeap(), 0, mmckInfo.cksize);
343 if (!infoPtr->inbih) {
344 WARN("Can't alloc input BIH\n");
348 infoPtr->fnmmioRead(infoPtr->hMMio, (LPSTR)infoPtr->inbih, mmckInfo.cksize);
349 TRACE("bih.biSize=%ld\n", infoPtr->inbih->biSize);
350 TRACE("bih.biWidth=%ld\n", infoPtr->inbih->biWidth);
351 TRACE("bih.biHeight=%ld\n", infoPtr->inbih->biHeight);
352 TRACE("bih.biPlanes=%d\n", infoPtr->inbih->biPlanes);
353 TRACE("bih.biBitCount=%d\n", infoPtr->inbih->biBitCount);
354 TRACE("bih.biCompression=%ld\n", infoPtr->inbih->biCompression);
355 TRACE("bih.biSizeImage=%ld\n", infoPtr->inbih->biSizeImage);
356 TRACE("bih.biXPelsPerMeter=%ld\n", infoPtr->inbih->biXPelsPerMeter);
357 TRACE("bih.biYPelsPerMeter=%ld\n", infoPtr->inbih->biYPelsPerMeter);
358 TRACE("bih.biClrUsed=%ld\n", infoPtr->inbih->biClrUsed);
359 TRACE("bih.biClrImportant=%ld\n", infoPtr->inbih->biClrImportant);
360 infoPtr->fnmmioAscend(infoPtr->hMMio, &mmckInfo, 0);
362 infoPtr->fnmmioAscend(infoPtr->hMMio, &mmckList, 0);
365 /* an AVI has 0 or 1 video stream, and to be animated should not contain
366 * an audio stream, so only one strl is allowed
368 mmckList.fccType = mmioFOURCC('s', 't', 'r', 'l');
369 if (infoPtr->fnmmioDescend(infoPtr->hMMio, &mmckList, &mmckHead, MMIO_FINDLIST) == 0) {
370 WARN("There should be a single 'strl' list\n");
375 infoPtr->fnmmioAscend(infoPtr->hMMio, &mmckHead, 0);
377 /* no need to read optional JUNK chunk */
379 mmckList.fccType = mmioFOURCC('m', 'o', 'v', 'i');
380 if (infoPtr->fnmmioDescend(infoPtr->hMMio, &mmckList, &ckMainRIFF, MMIO_FINDLIST) != 0) {
381 WARN("Can't find 'movi' list\n");
385 /* FIXME: should handle the 'rec ' LIST when present */
387 infoPtr->lpIndex = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY,
388 infoPtr->mah.dwTotalFrames * sizeof(DWORD));
389 if (!infoPtr->lpIndex) {
390 WARN("Can't alloc index array\n");
394 numFrame = insize = 0;
395 while (infoPtr->fnmmioDescend(infoPtr->hMMio, &mmckInfo, &mmckList, 0) == 0 &&
396 numFrame < infoPtr->mah.dwTotalFrames) {
397 infoPtr->lpIndex[numFrame] = mmckInfo.dwDataOffset;
398 if (insize < mmckInfo.cksize)
399 insize = mmckInfo.cksize;
401 infoPtr->fnmmioAscend(infoPtr->hMMio, &mmckInfo, 0);
403 if (numFrame != infoPtr->mah.dwTotalFrames) {
404 WARN("Found %ld frames (/%ld)\n", numFrame, infoPtr->mah.dwTotalFrames);
407 if (insize > infoPtr->ash.dwSuggestedBufferSize) {
408 WARN("insize=%ld suggestedSize=%ld\n", insize, infoPtr->ash.dwSuggestedBufferSize);
409 infoPtr->ash.dwSuggestedBufferSize = insize;
412 infoPtr->indata = HeapAlloc(GetProcessHeap(), 0, infoPtr->ash.dwSuggestedBufferSize);
413 if (!infoPtr->indata) {
414 WARN("Can't alloc input buffer\n");
422 static BOOL ANIMATE_GetAviCodec(ANIMATE_INFO *infoPtr)
426 /* check uncompressed AVI */
427 if (infoPtr->ash.fccHandler == mmioFOURCC('D', 'I', 'B', ' ') ||
428 infoPtr->ash.fccHandler == mmioFOURCC('R', 'L', 'E', ' ')) {
433 /* try to get a decompressor for that type */
434 infoPtr->hic = (infoPtr->fnICOpen)(ICTYPE_VIDEO,
435 infoPtr->ash.fccHandler,
438 WARN("Can't load codec for the file\n");
442 outSize = (infoPtr->fnICSendMessage)(infoPtr->hic,
443 ICM_DECOMPRESS_GET_FORMAT,
444 (DWORD)infoPtr->inbih, 0L);
445 infoPtr->outbih = HeapAlloc(GetProcessHeap(), 0, outSize);
446 if (!infoPtr->outbih) {
447 WARN("Can't alloc output BIH\n");
451 if ((infoPtr->fnICSendMessage)(infoPtr->hic, ICM_DECOMPRESS_GET_FORMAT,
452 (DWORD)infoPtr->inbih,
453 (DWORD)infoPtr->outbih) != ICERR_OK) {
454 WARN("Can't get output BIH\n");
458 infoPtr->outdata = HeapAlloc(GetProcessHeap(), 0, infoPtr->outbih->biSizeImage);
459 if (!infoPtr->outdata) {
460 WARN("Can't alloc output buffer\n");
464 if ((infoPtr->fnICSendMessage)(infoPtr->hic, ICM_DECOMPRESS_BEGIN,
465 (DWORD)infoPtr->inbih,
466 (DWORD)infoPtr->outbih) != ICERR_OK) {
467 WARN("Can't begin decompression\n");
474 static LRESULT ANIMATE_OpenA(HWND hWnd, WPARAM wParam, LPARAM lParam)
476 ANIMATE_INFO *infoPtr = ANIMATE_GetInfoPtr(hWnd);
477 HINSTANCE hInstance = (HINSTANCE)wParam;
479 ANIMATE_Free(infoPtr);
482 TRACE("Closing avi!\n");
487 hInstance = GetWindowLongA(hWnd, GWL_HINSTANCE);
489 if (HIWORD(lParam)) {
490 TRACE("(\"%s\");\n", (LPSTR)lParam);
492 if (!ANIMATE_LoadResA(infoPtr, hInstance, (LPSTR)lParam)) {
493 TRACE("No AVI resource found!\n");
494 if (!ANIMATE_LoadFileA(infoPtr, (LPSTR)lParam)) {
495 WARN("No AVI file found!\n");
500 TRACE("(%u);\n", (WORD)LOWORD(lParam));
502 if (!ANIMATE_LoadResA(infoPtr, hInstance,
503 MAKEINTRESOURCEA((INT)lParam))) {
504 WARN("No AVI resource found!\n");
509 if (!ANIMATE_GetAviInfo(infoPtr)) {
510 WARN("Can't get AVI information\n");
511 ANIMATE_Free(infoPtr);
515 if (!ANIMATE_GetAviCodec(infoPtr)) {
516 WARN("Can't get AVI Codec\n");
517 ANIMATE_Free(infoPtr);
521 if (GetWindowLongA(hWnd, GWL_STYLE) & ACS_CENTER) {
522 FIXME("ACS_CENTER: NIY\n");
524 /* MoveWindow(hWnd, 0, 0, infoPtr->mah.dwWidth, infoPtr->mah.dwHeight, FALSE);*/
525 SetWindowPos(hWnd, 0, 0, 0, infoPtr->mah.dwWidth, infoPtr->mah.dwHeight,
526 SWP_NOACTIVATE | SWP_NOMOVE | SWP_NOZORDER);
529 if (GetWindowLongA(hWnd, GWL_STYLE) & ACS_TRANSPARENT) {
530 FIXME("ACS_TRANSPARENT: NIY\n");
533 if (GetWindowLongA(hWnd, GWL_STYLE) & ACS_AUTOPLAY) {
534 return ANIMATE_Play(hWnd, -1, (LPARAM)MAKELONG(0, infoPtr->mah.dwTotalFrames-1));
541 /* << ANIMATE_Open32W >> */
543 static LRESULT ANIMATE_Stop(HWND hWnd, WPARAM wParam, LPARAM lParam)
545 ANIMATE_INFO *infoPtr = ANIMATE_GetInfoPtr(hWnd);
551 ANIMATE_DoStop(infoPtr);
556 static LRESULT ANIMATE_Create(HWND hWnd, WPARAM wParam, LPARAM lParam)
558 ANIMATE_INFO* infoPtr;
559 HMODULE hModule = LoadLibraryA("msvfw32.dll");
564 /* allocate memory for info structure */
565 infoPtr = (ANIMATE_INFO *)COMCTL32_Alloc(sizeof(ANIMATE_INFO));
567 ERR("could not allocate info memory!\n");
571 /* Temporary hack until we get dllglue up and running */
572 infoPtr->fnICOpen = (void*)GetProcAddress(hModule, "ICOpen");
573 infoPtr->fnICClose = (void*)GetProcAddress(hModule, "ICClose");
574 infoPtr->fnICSendMessage = (void*)GetProcAddress(hModule, "ICSendMessage");
575 infoPtr->fnICDecompress = (void*)GetProcAddress(hModule, "ICDecompress");
577 TRACE("Animate style=0x%08lx, parent=%08lx\n", GetWindowLongA(hWnd, GWL_STYLE), (DWORD)GetParent(hWnd));
579 /* store crossref hWnd <-> info structure */
580 SetWindowLongA(hWnd, 0, (DWORD)infoPtr);
581 infoPtr->hWnd = hWnd;
583 hModWinmm = LoadLibraryA("WINMM");
585 infoPtr->fnmmioOpenA = (void*)GetProcAddress(hModWinmm, "mmioOpenA");
586 infoPtr->fnmmioClose = (void*)GetProcAddress(hModWinmm, "mmioClose");
587 infoPtr->fnmmioAscend = (void*)GetProcAddress(hModWinmm, "mmioAscend");
588 infoPtr->fnmmioDescend = (void*)GetProcAddress(hModWinmm, "mmioDescend");
589 infoPtr->fnmmioSeek = (void*)GetProcAddress(hModWinmm, "mmioSeek");
590 infoPtr->fnmmioRead = (void*)GetProcAddress(hModWinmm, "mmioRead");
592 InitializeCriticalSection(&infoPtr->cs);
598 static LRESULT ANIMATE_Destroy(HWND hWnd, WPARAM wParam, LPARAM lParam)
600 ANIMATE_INFO *infoPtr = ANIMATE_GetInfoPtr(hWnd);
604 ANIMATE_Free(infoPtr);
606 /* free animate info data */
607 COMCTL32_Free(infoPtr);
608 SetWindowLongA(hWnd, 0, 0);
610 FreeLibrary(hModWinmm);
615 static LRESULT ANIMATE_EraseBackground(HWND hWnd, WPARAM wParam, LPARAM lParam)
619 GetClientRect(hWnd, &rect);
621 HBRUSH hBrush = CreateSolidBrush(infoPtr->clrBk);
623 FillRect((HDC)wParam, &rect, hBrush);
624 DeleteObject(hBrush);
626 FillRect((HDC)wParam, &rect, GetSysColorBrush(COLOR_WINDOW));
631 static LRESULT WINAPI ANIMATE_Size(HWND hWnd, WPARAM wParam, LPARAM lParam)
633 ANIMATE_INFO *infoPtr = ANIMATE_GetInfoPtr(hWnd);
635 if (GetWindowLongA(hWnd, GWL_STYLE) & ACS_CENTER) {
637 if (infoPtr->hMMio) {
638 /* centers the animation in the control, invalidates the control
641 InvalidateRect(hWnd, NULL, TRUE);
646 static LRESULT WINAPI ANIMATE_WindowProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
648 TRACE("hwnd=%x msg=%x wparam=%x lparam=%lx\n", hWnd, uMsg, wParam, lParam);
649 if (!ANIMATE_GetInfoPtr(hWnd) && (uMsg != WM_NCCREATE))
650 return DefWindowProcA(hWnd, uMsg, wParam, lParam);
654 return ANIMATE_OpenA(hWnd, wParam, lParam);
656 /* case ACM_OPEN32W: FIXME!! */
657 /* return ANIMATE_Open32W(hWnd, wParam, lParam); */
660 return ANIMATE_Play(hWnd, wParam, lParam);
663 return ANIMATE_Stop(hWnd, wParam, lParam);
666 ANIMATE_Create(hWnd, wParam, lParam);
667 return DefWindowProcA(hWnd, uMsg, wParam, lParam);
670 return HTTRANSPARENT;
673 ANIMATE_Destroy(hWnd, wParam, lParam);
674 return DefWindowProcA(hWnd, uMsg, wParam, lParam);
677 ANIMATE_EraseBackground(hWnd, wParam, lParam);
680 /* case WM_STYLECHANGED: FIXME shall we do something ?? */
683 return ANIMATE_DrawFrame(ANIMATE_GetInfoPtr(hWnd));
686 ANIMATE_Free(ANIMATE_GetInfoPtr(hWnd));
691 ANIMATE_PaintFrame(ANIMATE_GetInfoPtr(hWnd), (HDC)wParam);
694 HDC hDC = BeginPaint(hWnd, &ps);
695 ANIMATE_PaintFrame(ANIMATE_GetInfoPtr(hWnd), hDC);
701 ANIMATE_Size(hWnd, wParam, lParam);
702 return DefWindowProcA(hWnd, uMsg, wParam, lParam);
706 ERR("unknown msg %04x wp=%08x lp=%08lx\n", uMsg, wParam, lParam);
708 return DefWindowProcA(hWnd, uMsg, wParam, lParam);
714 void ANIMATE_Register(void)
718 ZeroMemory(&wndClass, sizeof(WNDCLASSA));
719 wndClass.style = CS_GLOBALCLASS | CS_DBLCLKS;
720 wndClass.lpfnWndProc = (WNDPROC)ANIMATE_WindowProc;
721 wndClass.cbClsExtra = 0;
722 wndClass.cbWndExtra = sizeof(ANIMATE_INFO *);
723 wndClass.hCursor = LoadCursorA(0, IDC_ARROWA);
724 wndClass.hbrBackground = (HBRUSH)(COLOR_BTNFACE + 1);
725 wndClass.lpszClassName = ANIMATE_CLASSA;
727 RegisterClassA(&wndClass);
731 void ANIMATE_Unregister(void)
733 UnregisterClassA(ANIMATE_CLASSA, (HINSTANCE)NULL);