4 * Implementation of OLE IPicture and related interfaces
6 * Copyright 2000 Huw D M Davies for CodeWeavers.
7 * Copyright 2001 Marcus Meissner
9 * This library is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU Lesser General Public
11 * License as published by the Free Software Foundation; either
12 * version 2.1 of the License, or (at your option) any later version.
14 * This library is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * Lesser General Public License for more details.
19 * You should have received a copy of the GNU Lesser General Public
20 * License along with this library; if not, write to the Free Software
21 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
25 * Support PICTYPE_BITMAP and PICTYPE_ICON, altough only bitmaps very well..
26 * Lots of methods are just stubs.
29 * NOTES (or things that msdn doesn't tell you)
31 * The width and height properties are returned in HIMETRIC units (0.01mm)
32 * IPicture::Render also uses these to select a region of the src picture.
33 * A bitmap's size is converted into these units by using the screen resolution
34 * thus an 8x8 bitmap on a 96dpi screen has a size of 212x212 (8/96 * 2540).
39 #include "wine/port.h"
48 /* Must be before wine includes, the header has things conflicting with
52 #define NONAMELESSUNION
53 #define NONAMELESSSTRUCT
65 #include "wine/debug.h"
66 #include "wine/unicode.h"
68 #include "wine/wingdi16.h"
71 /* This is a hack, so jpeglib.h does not redefine INT32 and the like*/
73 #define UINT8 JPEG_UINT8
74 #define UINT16 JPEG_UINT16
76 #define boolean jpeg_boolean
89 WINE_DEFAULT_DEBUG_CHANNEL(ole);
102 } CURSORICONFILEDIRENTRY;
109 CURSORICONFILEDIRENTRY idEntries[1];
114 /*************************************************************************
115 * Declaration of implementation class
118 typedef struct OLEPictureImpl {
121 * IPicture handles IUnknown
124 const IPictureVtbl *lpVtbl;
125 const IDispatchVtbl *lpvtblIDispatch;
126 const IPersistStreamVtbl *lpvtblIPersistStream;
127 const IConnectionPointContainerVtbl *lpvtblIConnectionPointContainer;
129 /* Object reference count */
132 /* We own the object and must destroy it ourselves */
135 /* Picture description */
138 /* These are the pixel size of a bitmap */
142 /* And these are the size of the picture converted into HIMETRIC units */
143 OLE_XSIZE_HIMETRIC himetricWidth;
144 OLE_YSIZE_HIMETRIC himetricHeight;
146 IConnectionPoint *pCP;
151 /* Bitmap transparency mask */
159 BOOL bIsDirty; /* Set to TRUE if picture has changed */
160 unsigned int loadtime_magic; /* If a length header was found, saves value */
161 unsigned int loadtime_format; /* for PICTYPE_BITMAP only, keeps track of image format (GIF/BMP/JPEG) */
165 * Macros to retrieve pointer to IUnknown (IPicture) from the other VTables.
168 static inline OLEPictureImpl *impl_from_IDispatch( IDispatch *iface )
170 return (OLEPictureImpl *)((char*)iface - FIELD_OFFSET(OLEPictureImpl, lpvtblIDispatch));
173 static inline OLEPictureImpl *impl_from_IPersistStream( IPersistStream *iface )
175 return (OLEPictureImpl *)((char*)iface - FIELD_OFFSET(OLEPictureImpl, lpvtblIPersistStream));
178 static inline OLEPictureImpl *impl_from_IConnectionPointContainer( IConnectionPointContainer *iface )
180 return (OLEPictureImpl *)((char*)iface - FIELD_OFFSET(OLEPictureImpl, lpvtblIConnectionPointContainer));
184 * Predeclare VTables. They get initialized at the end.
186 static const IPictureVtbl OLEPictureImpl_VTable;
187 static const IDispatchVtbl OLEPictureImpl_IDispatch_VTable;
188 static const IPersistStreamVtbl OLEPictureImpl_IPersistStream_VTable;
189 static const IConnectionPointContainerVtbl OLEPictureImpl_IConnectionPointContainer_VTable;
191 /***********************************************************************
192 * Implementation of the OLEPictureImpl class.
195 static void OLEPictureImpl_SetBitmap(OLEPictureImpl*This) {
199 TRACE("bitmap handle %p\n", This->desc.u.bmp.hbitmap);
200 if(GetObjectA(This->desc.u.bmp.hbitmap, sizeof(bm), &bm) != sizeof(bm)) {
201 ERR("GetObject fails\n");
204 This->origWidth = bm.bmWidth;
205 This->origHeight = bm.bmHeight;
206 /* The width and height are stored in HIMETRIC units (0.01 mm),
207 so we take our pixel width divide by pixels per inch and
208 multiply by 25.4 * 100 */
209 /* Should we use GetBitmapDimension if available? */
210 hdcRef = CreateCompatibleDC(0);
211 This->himetricWidth =(bm.bmWidth *2540)/GetDeviceCaps(hdcRef, LOGPIXELSX);
212 This->himetricHeight=(bm.bmHeight*2540)/GetDeviceCaps(hdcRef, LOGPIXELSY);
216 static void OLEPictureImpl_SetIcon(OLEPictureImpl * This)
220 TRACE("icon handle %p\n", This->desc.u.icon.hicon);
221 if (GetIconInfo(This->desc.u.icon.hicon, &infoIcon)) {
225 TRACE("bitmap handle for icon is %p\n", infoIcon.hbmColor);
226 if(GetObjectA(infoIcon.hbmColor ? infoIcon.hbmColor : infoIcon.hbmMask, sizeof(bm), &bm) != sizeof(bm)) {
227 ERR("GetObject fails on icon bitmap\n");
231 This->origWidth = bm.bmWidth;
232 This->origHeight = infoIcon.hbmColor ? bm.bmHeight : bm.bmHeight / 2;
233 /* see comment on HIMETRIC on OLEPictureImpl_SetBitmap() */
235 This->himetricWidth = (This->origWidth *2540)/GetDeviceCaps(hdcRef, LOGPIXELSX);
236 This->himetricHeight= (This->origHeight *2540)/GetDeviceCaps(hdcRef, LOGPIXELSY);
237 ReleaseDC(0, hdcRef);
239 DeleteObject(infoIcon.hbmMask);
240 if (infoIcon.hbmColor) DeleteObject(infoIcon.hbmColor);
242 ERR("GetIconInfo() fails on icon %p\n", This->desc.u.icon.hicon);
246 /************************************************************************
247 * OLEPictureImpl_Construct
249 * This method will construct a new instance of the OLEPictureImpl
252 * The caller of this method must release the object when it's
255 static OLEPictureImpl* OLEPictureImpl_Construct(LPPICTDESC pictDesc, BOOL fOwn)
257 OLEPictureImpl* newObject = 0;
260 TRACE("(%p) type = %d\n", pictDesc, pictDesc->picType);
263 * Allocate space for the object.
265 newObject = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(OLEPictureImpl));
271 * Initialize the virtual function table.
273 newObject->lpVtbl = &OLEPictureImpl_VTable;
274 newObject->lpvtblIDispatch = &OLEPictureImpl_IDispatch_VTable;
275 newObject->lpvtblIPersistStream = &OLEPictureImpl_IPersistStream_VTable;
276 newObject->lpvtblIConnectionPointContainer = &OLEPictureImpl_IConnectionPointContainer_VTable;
278 newObject->pCP = NULL;
279 CreateConnectionPoint((IUnknown*)newObject,&IID_IPropertyNotifySink,&newObject->pCP);
282 HeapFree(GetProcessHeap(), 0, newObject);
287 * Start with one reference count. The caller of this function
288 * must release the interface pointer when it is done.
291 newObject->hDCCur = 0;
293 newObject->fOwn = fOwn;
295 /* dunno about original value */
296 newObject->keepOrigFormat = TRUE;
298 newObject->hbmMask = NULL;
299 newObject->hbmXor = NULL;
300 newObject->loadtime_magic = 0xdeadbeef;
301 newObject->loadtime_format = 0;
302 newObject->bIsDirty = FALSE;
305 memcpy(&newObject->desc, pictDesc, sizeof(PICTDESC));
307 switch(pictDesc->picType) {
309 OLEPictureImpl_SetBitmap(newObject);
312 case PICTYPE_METAFILE:
313 TRACE("metafile handle %p\n", pictDesc->u.wmf.hmeta);
314 newObject->himetricWidth = pictDesc->u.wmf.xExt;
315 newObject->himetricHeight = pictDesc->u.wmf.yExt;
319 /* not sure what to do here */
320 newObject->himetricWidth = newObject->himetricHeight = 0;
324 OLEPictureImpl_SetIcon(newObject);
326 case PICTYPE_ENHMETAFILE:
328 FIXME("Unsupported type %d\n", pictDesc->picType);
329 newObject->himetricWidth = newObject->himetricHeight = 0;
333 newObject->desc.picType = PICTYPE_UNINITIALIZED;
336 TRACE("returning %p\n", newObject);
340 /************************************************************************
341 * OLEPictureImpl_Destroy
343 * This method is called by the Release method when the reference
344 * count goes down to 0. It will free all resources used by
346 static void OLEPictureImpl_Destroy(OLEPictureImpl* Obj)
348 TRACE("(%p)\n", Obj);
351 IConnectionPoint_Release(Obj->pCP);
353 if(Obj->fOwn) { /* We need to destroy the picture */
354 switch(Obj->desc.picType) {
356 DeleteObject(Obj->desc.u.bmp.hbitmap);
357 if (Obj->hbmMask != NULL) DeleteObject(Obj->hbmMask);
358 if (Obj->hbmXor != NULL) DeleteObject(Obj->hbmXor);
360 case PICTYPE_METAFILE:
361 DeleteMetaFile(Obj->desc.u.wmf.hmeta);
364 DestroyIcon(Obj->desc.u.icon.hicon);
366 case PICTYPE_ENHMETAFILE:
367 DeleteEnhMetaFile(Obj->desc.u.emf.hemf);
370 case PICTYPE_UNINITIALIZED:
374 FIXME("Unsupported type %d - unable to delete\n", Obj->desc.picType);
378 HeapFree(GetProcessHeap(), 0, Obj->data);
379 HeapFree(GetProcessHeap(), 0, Obj);
383 /************************************************************************
384 * OLEPictureImpl_AddRef (IUnknown)
386 * See Windows documentation for more details on IUnknown methods.
388 static ULONG WINAPI OLEPictureImpl_AddRef(
391 OLEPictureImpl *This = (OLEPictureImpl *)iface;
392 ULONG refCount = InterlockedIncrement(&This->ref);
394 TRACE("(%p)->(ref before=%d)\n", This, refCount - 1);
399 /************************************************************************
400 * OLEPictureImpl_Release (IUnknown)
402 * See Windows documentation for more details on IUnknown methods.
404 static ULONG WINAPI OLEPictureImpl_Release(
407 OLEPictureImpl *This = (OLEPictureImpl *)iface;
408 ULONG refCount = InterlockedDecrement(&This->ref);
410 TRACE("(%p)->(ref before=%d)\n", This, refCount + 1);
413 * If the reference count goes down to 0, perform suicide.
415 if (!refCount) OLEPictureImpl_Destroy(This);
420 /************************************************************************
421 * OLEPictureImpl_QueryInterface (IUnknown)
423 * See Windows documentation for more details on IUnknown methods.
425 static HRESULT WINAPI OLEPictureImpl_QueryInterface(
430 OLEPictureImpl *This = (OLEPictureImpl *)iface;
431 TRACE("(%p)->(%s, %p)\n", This, debugstr_guid(riid), ppvObject);
434 * Perform a sanity check on the parameters.
436 if ( (This==0) || (ppvObject==0) )
440 * Initialize the return parameter.
445 * Compare the riid with the interface IDs implemented by this object.
447 if (IsEqualIID(&IID_IUnknown, riid) || IsEqualIID(&IID_IPicture, riid))
448 *ppvObject = (IPicture*)This;
449 else if (IsEqualIID(&IID_IDispatch, riid))
450 *ppvObject = (IDispatch*)&(This->lpvtblIDispatch);
451 else if (IsEqualIID(&IID_IPictureDisp, riid))
452 *ppvObject = (IDispatch*)&(This->lpvtblIDispatch);
453 else if (IsEqualIID(&IID_IPersist, riid) || IsEqualIID(&IID_IPersistStream, riid))
454 *ppvObject = (IPersistStream*)&(This->lpvtblIPersistStream);
455 else if (IsEqualIID(&IID_IConnectionPointContainer, riid))
456 *ppvObject = (IConnectionPointContainer*)&(This->lpvtblIConnectionPointContainer);
459 * Check that we obtained an interface.
463 FIXME("() : asking for un supported interface %s\n",debugstr_guid(riid));
464 return E_NOINTERFACE;
468 * Query Interface always increases the reference count by one when it is
471 OLEPictureImpl_AddRef((IPicture*)This);
476 /***********************************************************************
477 * OLEPicture_SendNotify (internal)
479 * Sends notification messages of changed properties to any interested
482 static void OLEPicture_SendNotify(OLEPictureImpl* this, DISPID dispID)
484 IEnumConnections *pEnum;
487 if (IConnectionPoint_EnumConnections(this->pCP, &pEnum))
489 while(IEnumConnections_Next(pEnum, 1, &CD, NULL) == S_OK) {
490 IPropertyNotifySink *sink;
492 IUnknown_QueryInterface(CD.pUnk, &IID_IPropertyNotifySink, (LPVOID)&sink);
493 IPropertyNotifySink_OnChanged(sink, dispID);
494 IPropertyNotifySink_Release(sink);
495 IUnknown_Release(CD.pUnk);
497 IEnumConnections_Release(pEnum);
501 /************************************************************************
502 * OLEPictureImpl_get_Handle
504 static HRESULT WINAPI OLEPictureImpl_get_Handle(IPicture *iface,
507 OLEPictureImpl *This = (OLEPictureImpl *)iface;
508 TRACE("(%p)->(%p)\n", This, phandle);
509 switch(This->desc.picType) {
511 case PICTYPE_UNINITIALIZED:
515 *phandle = (OLE_HANDLE)This->desc.u.bmp.hbitmap;
517 case PICTYPE_METAFILE:
518 *phandle = (OLE_HANDLE)This->desc.u.wmf.hmeta;
521 *phandle = (OLE_HANDLE)This->desc.u.icon.hicon;
523 case PICTYPE_ENHMETAFILE:
524 *phandle = (OLE_HANDLE)This->desc.u.emf.hemf;
527 FIXME("Unimplemented type %d\n", This->desc.picType);
530 TRACE("returning handle %08x\n", *phandle);
534 /************************************************************************
535 * OLEPictureImpl_get_hPal
537 static HRESULT WINAPI OLEPictureImpl_get_hPal(IPicture *iface,
540 OLEPictureImpl *This = (OLEPictureImpl *)iface;
542 TRACE("(%p)->(%p)\n", This, phandle);
547 switch (This->desc.picType) {
548 case PICTYPE_UNINITIALIZED:
554 *phandle = (OLE_HANDLE)This->desc.u.bmp.hpal;
558 case PICTYPE_METAFILE:
559 case PICTYPE_ENHMETAFILE:
561 FIXME("unimplemented for type %d. Returning 0 palette.\n",
567 TRACE("returning 0x%08x, palette handle %08x\n", hres, *phandle);
571 /************************************************************************
572 * OLEPictureImpl_get_Type
574 static HRESULT WINAPI OLEPictureImpl_get_Type(IPicture *iface,
577 OLEPictureImpl *This = (OLEPictureImpl *)iface;
578 TRACE("(%p)->(%p): type is %d\n", This, ptype, This->desc.picType);
579 *ptype = This->desc.picType;
583 /************************************************************************
584 * OLEPictureImpl_get_Width
586 static HRESULT WINAPI OLEPictureImpl_get_Width(IPicture *iface,
587 OLE_XSIZE_HIMETRIC *pwidth)
589 OLEPictureImpl *This = (OLEPictureImpl *)iface;
590 TRACE("(%p)->(%p): width is %d\n", This, pwidth, This->himetricWidth);
591 *pwidth = This->himetricWidth;
595 /************************************************************************
596 * OLEPictureImpl_get_Height
598 static HRESULT WINAPI OLEPictureImpl_get_Height(IPicture *iface,
599 OLE_YSIZE_HIMETRIC *pheight)
601 OLEPictureImpl *This = (OLEPictureImpl *)iface;
602 TRACE("(%p)->(%p): height is %d\n", This, pheight, This->himetricHeight);
603 *pheight = This->himetricHeight;
607 /************************************************************************
608 * OLEPictureImpl_Render
610 static HRESULT WINAPI OLEPictureImpl_Render(IPicture *iface, HDC hdc,
611 LONG x, LONG y, LONG cx, LONG cy,
612 OLE_XPOS_HIMETRIC xSrc,
613 OLE_YPOS_HIMETRIC ySrc,
614 OLE_XSIZE_HIMETRIC cxSrc,
615 OLE_YSIZE_HIMETRIC cySrc,
618 OLEPictureImpl *This = (OLEPictureImpl *)iface;
619 TRACE("(%p)->(%p, (%d,%d), (%d,%d) <- (%d,%d), (%d,%d), %p)\n",
620 This, hdc, x, y, cx, cy, xSrc, ySrc, cxSrc, cySrc, prcWBounds);
622 TRACE("prcWBounds (%d,%d) - (%d,%d)\n", prcWBounds->left, prcWBounds->top,
623 prcWBounds->right, prcWBounds->bottom);
626 * While the documentation suggests this to be here (or after rendering?)
627 * it does cause an endless recursion in my sample app. -MM 20010804
628 OLEPicture_SendNotify(This,DISPID_PICT_RENDER);
631 switch(This->desc.picType) {
637 /* Set a mapping mode that maps bitmap pixels into HIMETRIC units.
638 NB y-axis gets flipped */
640 hdcBmp = CreateCompatibleDC(0);
641 SetMapMode(hdcBmp, MM_ANISOTROPIC);
642 SetWindowOrgEx(hdcBmp, 0, 0, NULL);
643 SetWindowExtEx(hdcBmp, This->himetricWidth, This->himetricHeight, NULL);
644 SetViewportOrgEx(hdcBmp, 0, This->origHeight, NULL);
645 SetViewportExtEx(hdcBmp, This->origWidth, -This->origHeight, NULL);
648 HDC hdcMask = CreateCompatibleDC(0);
649 HBITMAP hOldbm = SelectObject(hdcMask, This->hbmMask);
651 hbmpOld = SelectObject(hdcBmp, This->hbmXor);
653 SetMapMode(hdcMask, MM_ANISOTROPIC);
654 SetWindowOrgEx(hdcMask, 0, 0, NULL);
655 SetWindowExtEx(hdcMask, This->himetricWidth, This->himetricHeight, NULL);
656 SetViewportOrgEx(hdcMask, 0, This->origHeight, NULL);
657 SetViewportExtEx(hdcMask, This->origWidth, -This->origHeight, NULL);
659 SetBkColor(hdc, RGB(255, 255, 255));
660 SetTextColor(hdc, RGB(0, 0, 0));
661 StretchBlt(hdc, x, y, cx, cy, hdcMask, xSrc, ySrc, cxSrc, cySrc, SRCAND);
662 StretchBlt(hdc, x, y, cx, cy, hdcBmp, xSrc, ySrc, cxSrc, cySrc, SRCPAINT);
664 SelectObject(hdcMask, hOldbm);
667 hbmpOld = SelectObject(hdcBmp, This->desc.u.bmp.hbitmap);
668 StretchBlt(hdc, x, y, cx, cy, hdcBmp, xSrc, ySrc, cxSrc, cySrc, SRCCOPY);
671 SelectObject(hdcBmp, hbmpOld);
676 FIXME("Not quite correct implementation of rendering icons...\n");
677 DrawIcon(hdc,x,y,This->desc.u.icon.hicon);
680 case PICTYPE_METAFILE:
681 PlayMetaFile(hdc, This->desc.u.wmf.hmeta);
684 case PICTYPE_ENHMETAFILE:
686 RECT rc = { x, y, cx, cy };
687 PlayEnhMetaFile(hdc, This->desc.u.emf.hemf, &rc);
692 FIXME("type %d not implemented\n", This->desc.picType);
698 /************************************************************************
699 * OLEPictureImpl_set_hPal
701 static HRESULT WINAPI OLEPictureImpl_set_hPal(IPicture *iface,
704 OLEPictureImpl *This = (OLEPictureImpl *)iface;
705 FIXME("(%p)->(%08x): stub\n", This, hpal);
706 OLEPicture_SendNotify(This,DISPID_PICT_HPAL);
710 /************************************************************************
711 * OLEPictureImpl_get_CurDC
713 static HRESULT WINAPI OLEPictureImpl_get_CurDC(IPicture *iface,
716 OLEPictureImpl *This = (OLEPictureImpl *)iface;
717 TRACE("(%p), returning %p\n", This, This->hDCCur);
718 if (phdc) *phdc = This->hDCCur;
722 /************************************************************************
723 * OLEPictureImpl_SelectPicture
725 static HRESULT WINAPI OLEPictureImpl_SelectPicture(IPicture *iface,
728 OLE_HANDLE *phbmpOut)
730 OLEPictureImpl *This = (OLEPictureImpl *)iface;
731 TRACE("(%p)->(%p, %p, %p)\n", This, hdcIn, phdcOut, phbmpOut);
732 if (This->desc.picType == PICTYPE_BITMAP) {
733 SelectObject(hdcIn,This->desc.u.bmp.hbitmap);
736 *phdcOut = This->hDCCur;
737 This->hDCCur = hdcIn;
739 *phbmpOut = (OLE_HANDLE)This->desc.u.bmp.hbitmap;
742 FIXME("Don't know how to select picture type %d\n",This->desc.picType);
747 /************************************************************************
748 * OLEPictureImpl_get_KeepOriginalFormat
750 static HRESULT WINAPI OLEPictureImpl_get_KeepOriginalFormat(IPicture *iface,
753 OLEPictureImpl *This = (OLEPictureImpl *)iface;
754 TRACE("(%p)->(%p)\n", This, pfKeep);
757 *pfKeep = This->keepOrigFormat;
761 /************************************************************************
762 * OLEPictureImpl_put_KeepOriginalFormat
764 static HRESULT WINAPI OLEPictureImpl_put_KeepOriginalFormat(IPicture *iface,
767 OLEPictureImpl *This = (OLEPictureImpl *)iface;
768 TRACE("(%p)->(%d)\n", This, keep);
769 This->keepOrigFormat = keep;
770 /* FIXME: what DISPID notification here? */
774 /************************************************************************
775 * OLEPictureImpl_PictureChanged
777 static HRESULT WINAPI OLEPictureImpl_PictureChanged(IPicture *iface)
779 OLEPictureImpl *This = (OLEPictureImpl *)iface;
780 TRACE("(%p)->()\n", This);
781 OLEPicture_SendNotify(This,DISPID_PICT_HANDLE);
782 This->bIsDirty = TRUE;
786 /************************************************************************
787 * OLEPictureImpl_SaveAsFile
789 static HRESULT WINAPI OLEPictureImpl_SaveAsFile(IPicture *iface,
794 OLEPictureImpl *This = (OLEPictureImpl *)iface;
795 FIXME("(%p)->(%p, %d, %p), hacked stub.\n", This, pstream, SaveMemCopy, pcbSize);
796 return IStream_Write(pstream,This->data,This->datalen,(ULONG*)pcbSize);
799 /************************************************************************
800 * OLEPictureImpl_get_Attributes
802 static HRESULT WINAPI OLEPictureImpl_get_Attributes(IPicture *iface,
805 OLEPictureImpl *This = (OLEPictureImpl *)iface;
806 TRACE("(%p)->(%p).\n", This, pdwAttr);
808 switch (This->desc.picType) {
809 case PICTYPE_BITMAP: if (This->hbmMask) *pdwAttr = PICTURE_TRANSPARENT; break; /* not 'truly' scalable, see MSDN. */
810 case PICTYPE_ICON: *pdwAttr = PICTURE_TRANSPARENT;break;
811 case PICTYPE_ENHMETAFILE: /* fall through */
812 case PICTYPE_METAFILE: *pdwAttr = PICTURE_TRANSPARENT|PICTURE_SCALABLE;break;
813 default:FIXME("Unknown pictype %d\n",This->desc.picType);break;
819 /************************************************************************
820 * IConnectionPointContainer
822 static HRESULT WINAPI OLEPictureImpl_IConnectionPointContainer_QueryInterface(
823 IConnectionPointContainer* iface,
827 OLEPictureImpl *This = impl_from_IConnectionPointContainer(iface);
829 return IPicture_QueryInterface((IPicture *)This,riid,ppvoid);
832 static ULONG WINAPI OLEPictureImpl_IConnectionPointContainer_AddRef(
833 IConnectionPointContainer* iface)
835 OLEPictureImpl *This = impl_from_IConnectionPointContainer(iface);
837 return IPicture_AddRef((IPicture *)This);
840 static ULONG WINAPI OLEPictureImpl_IConnectionPointContainer_Release(
841 IConnectionPointContainer* iface)
843 OLEPictureImpl *This = impl_from_IConnectionPointContainer(iface);
845 return IPicture_Release((IPicture *)This);
848 static HRESULT WINAPI OLEPictureImpl_EnumConnectionPoints(
849 IConnectionPointContainer* iface,
850 IEnumConnectionPoints** ppEnum)
852 OLEPictureImpl *This = impl_from_IConnectionPointContainer(iface);
854 FIXME("(%p,%p), stub!\n",This,ppEnum);
858 static HRESULT WINAPI OLEPictureImpl_FindConnectionPoint(
859 IConnectionPointContainer* iface,
861 IConnectionPoint **ppCP)
863 OLEPictureImpl *This = impl_from_IConnectionPointContainer(iface);
864 TRACE("(%p,%s,%p)\n",This,debugstr_guid(riid),ppCP);
868 if (IsEqualGUID(riid,&IID_IPropertyNotifySink))
869 return IConnectionPoint_QueryInterface(This->pCP,&IID_IConnectionPoint,(LPVOID)ppCP);
870 FIXME("no connection point for %s\n",debugstr_guid(riid));
871 return CONNECT_E_NOCONNECTION;
875 /************************************************************************
879 /************************************************************************
880 * OLEPictureImpl_IPersistStream_QueryInterface (IUnknown)
882 * See Windows documentation for more details on IUnknown methods.
884 static HRESULT WINAPI OLEPictureImpl_IPersistStream_QueryInterface(
885 IPersistStream* iface,
889 OLEPictureImpl *This = impl_from_IPersistStream(iface);
891 return IPicture_QueryInterface((IPicture *)This, riid, ppvoid);
894 /************************************************************************
895 * OLEPictureImpl_IPersistStream_AddRef (IUnknown)
897 * See Windows documentation for more details on IUnknown methods.
899 static ULONG WINAPI OLEPictureImpl_IPersistStream_AddRef(
900 IPersistStream* iface)
902 OLEPictureImpl *This = impl_from_IPersistStream(iface);
904 return IPicture_AddRef((IPicture *)This);
907 /************************************************************************
908 * OLEPictureImpl_IPersistStream_Release (IUnknown)
910 * See Windows documentation for more details on IUnknown methods.
912 static ULONG WINAPI OLEPictureImpl_IPersistStream_Release(
913 IPersistStream* iface)
915 OLEPictureImpl *This = impl_from_IPersistStream(iface);
917 return IPicture_Release((IPicture *)This);
920 /************************************************************************
921 * OLEPictureImpl_IPersistStream_GetClassID
923 static HRESULT WINAPI OLEPictureImpl_GetClassID(
924 IPersistStream* iface,CLSID* pClassID)
926 TRACE("(%p)\n", pClassID);
927 memcpy(pClassID, &CLSID_StdPicture, sizeof(*pClassID));
931 /************************************************************************
932 * OLEPictureImpl_IPersistStream_IsDirty
934 static HRESULT WINAPI OLEPictureImpl_IsDirty(
935 IPersistStream* iface)
937 OLEPictureImpl *This = impl_from_IPersistStream(iface);
938 FIXME("(%p),stub!\n",This);
942 #ifdef SONAME_LIBJPEG
944 static void *libjpeg_handle;
945 #define MAKE_FUNCPTR(f) static typeof(f) * p##f
946 MAKE_FUNCPTR(jpeg_std_error);
947 MAKE_FUNCPTR(jpeg_CreateDecompress);
948 MAKE_FUNCPTR(jpeg_read_header);
949 MAKE_FUNCPTR(jpeg_start_decompress);
950 MAKE_FUNCPTR(jpeg_read_scanlines);
951 MAKE_FUNCPTR(jpeg_finish_decompress);
952 MAKE_FUNCPTR(jpeg_destroy_decompress);
955 static void *load_libjpeg(void)
957 if((libjpeg_handle = wine_dlopen(SONAME_LIBJPEG, RTLD_NOW, NULL, 0)) != NULL) {
959 #define LOAD_FUNCPTR(f) \
960 if((p##f = wine_dlsym(libjpeg_handle, #f, NULL, 0)) == NULL) { \
961 libjpeg_handle = NULL; \
965 LOAD_FUNCPTR(jpeg_std_error);
966 LOAD_FUNCPTR(jpeg_CreateDecompress);
967 LOAD_FUNCPTR(jpeg_read_header);
968 LOAD_FUNCPTR(jpeg_start_decompress);
969 LOAD_FUNCPTR(jpeg_read_scanlines);
970 LOAD_FUNCPTR(jpeg_finish_decompress);
971 LOAD_FUNCPTR(jpeg_destroy_decompress);
974 return libjpeg_handle;
977 /* for the jpeg decompressor source manager. */
978 static void _jpeg_init_source(j_decompress_ptr cinfo) { }
980 static boolean _jpeg_fill_input_buffer(j_decompress_ptr cinfo) {
981 ERR("(), should not get here.\n");
985 static void _jpeg_skip_input_data(j_decompress_ptr cinfo,long num_bytes) {
986 TRACE("Skipping %ld bytes...\n", num_bytes);
987 cinfo->src->next_input_byte += num_bytes;
988 cinfo->src->bytes_in_buffer -= num_bytes;
991 static boolean _jpeg_resync_to_restart(j_decompress_ptr cinfo, int desired) {
992 ERR("(desired=%d), should not get here.\n",desired);
995 static void _jpeg_term_source(j_decompress_ptr cinfo) { }
996 #endif /* SONAME_LIBJPEG */
1000 unsigned int curoff;
1004 static int _gif_inputfunc(GifFileType *gif, GifByteType *data, int len) {
1005 struct gifdata *gd = (struct gifdata*)gif->UserData;
1007 if (len+gd->curoff > gd->len) {
1008 FIXME("Trying to read %d bytes, but only %d available.\n",len, gd->len-gd->curoff);
1009 len = gd->len - gd->curoff;
1011 memcpy(data, gd->data+gd->curoff, len);
1017 static HRESULT OLEPictureImpl_LoadGif(OLEPictureImpl *This, BYTE *xbuf, ULONG xread)
1028 int transparent = -1;
1035 gif = DGifOpen((void*)&gd, _gif_inputfunc);
1036 ret = DGifSlurp(gif);
1037 if (ret == GIF_ERROR) {
1038 FIXME("Failed reading GIF using libgif.\n");
1041 TRACE("screen height %d, width %d\n", gif->SWidth, gif->SHeight);
1042 TRACE("color res %d, backgcolor %d\n", gif->SColorResolution, gif->SBackGroundColor);
1043 TRACE("imgcnt %d\n", gif->ImageCount);
1044 if (gif->ImageCount<1) {
1045 FIXME("GIF stream does not have images inside?\n");
1048 TRACE("curimage: %d x %d, on %dx%d, interlace %d\n",
1049 gif->Image.Width, gif->Image.Height,
1050 gif->Image.Left, gif->Image.Top,
1051 gif->Image.Interlace
1054 padding = (gif->SWidth+3) & ~3;
1055 si = gif->SavedImages+0;
1056 gid = &(si->ImageDesc);
1058 if (!cm) cm = gif->SColorMap;
1059 bmi = HeapAlloc(GetProcessHeap(),0,sizeof(BITMAPINFOHEADER)+(cm->ColorCount)*sizeof(RGBQUAD));
1060 bytes= HeapAlloc(GetProcessHeap(),0,padding*gif->SHeight);
1062 /* look for the transparent color extension */
1063 for (i = 0; i < si->ExtensionBlockCount; ++i) {
1064 eb = si->ExtensionBlocks + i;
1065 if (eb->Function == 0xF9 && eb->ByteCount == 4) {
1066 if ((eb->Bytes[0] & 1) == 1) {
1067 transparent = (unsigned char)eb->Bytes[3];
1072 for (i = 0; i < cm->ColorCount; i++) {
1073 bmi->bmiColors[i].rgbRed = cm->Colors[i].Red;
1074 bmi->bmiColors[i].rgbGreen = cm->Colors[i].Green;
1075 bmi->bmiColors[i].rgbBlue = cm->Colors[i].Blue;
1076 if (i == transparent) {
1077 This->rgbTrans = RGB(bmi->bmiColors[i].rgbRed,
1078 bmi->bmiColors[i].rgbGreen,
1079 bmi->bmiColors[i].rgbBlue);
1083 /* Map to in picture coordinates */
1084 for (i = 0, j = 0; i < gid->Height; i++) {
1085 if (gif->Image.Interlace) {
1087 bytes + (gid->Top + j) * padding + gid->Left,
1088 si->RasterBits + i * gid->Width,
1091 /* Lower bits of interlaced counter encode current interlace */
1092 if (j & 1) j += 2; /* Currently filling odd rows */
1093 else if (j & 2) j += 4; /* Currently filling even rows not multiples of 4 */
1094 else j += 8; /* Currently filling every 8th row or 4th row in-between */
1096 if (j >= gid->Height && i < gid->Height && (j & 1) == 0) {
1097 /* End of current interlace, go to next interlace */
1098 if (j & 2) j = 1; /* Next iteration fills odd rows */
1099 else if (j & 4) j = 2; /* Next iteration fills even rows not mod 4 and not mod 8 */
1100 else j = 4; /* Next iteration fills rows in-between rows mod 6 */
1104 bytes + (gid->Top + i) * padding + gid->Left,
1105 si->RasterBits + i * gid->Width,
1110 bmi->bmiHeader.biSize = sizeof(BITMAPINFOHEADER);
1111 bmi->bmiHeader.biWidth = gif->SWidth;
1112 bmi->bmiHeader.biHeight = -gif->SHeight;
1113 bmi->bmiHeader.biPlanes = 1;
1114 bmi->bmiHeader.biBitCount = 8;
1115 bmi->bmiHeader.biCompression = BI_RGB;
1116 bmi->bmiHeader.biSizeImage = padding*gif->SHeight;
1117 bmi->bmiHeader.biXPelsPerMeter = 0;
1118 bmi->bmiHeader.biYPelsPerMeter = 0;
1119 bmi->bmiHeader.biClrUsed = cm->ColorCount;
1120 bmi->bmiHeader.biClrImportant = 0;
1123 This->desc.u.bmp.hbitmap=CreateDIBitmap(
1132 if (transparent > -1) {
1133 /* Create the Mask */
1134 HDC hdc = CreateCompatibleDC(0);
1135 HDC hdcMask = CreateCompatibleDC(0);
1137 HBITMAP hOldbitmapmask;
1139 unsigned int monopadding = (((unsigned)(gif->SWidth + 31)) >> 5) << 2;
1142 This->hbmXor = CreateDIBitmap(
1151 bmi->bmiColors[0].rgbRed = 0;
1152 bmi->bmiColors[0].rgbGreen = 0;
1153 bmi->bmiColors[0].rgbBlue = 0;
1154 bmi->bmiColors[1].rgbRed = 255;
1155 bmi->bmiColors[1].rgbGreen = 255;
1156 bmi->bmiColors[1].rgbBlue = 255;
1158 bmi->bmiHeader.biBitCount = 1;
1159 bmi->bmiHeader.biSizeImage = monopadding*gif->SHeight;
1160 bmi->bmiHeader.biClrUsed = 2;
1162 for (i = 0; i < gif->SHeight; i++) {
1163 unsigned char * colorPointer = bytes + padding * i;
1164 unsigned char * monoPointer = bytes + monopadding * i;
1165 for (j = 0; j < gif->SWidth; j++) {
1166 unsigned char pixel = colorPointer[j];
1167 if ((j & 7) == 0) monoPointer[j >> 3] = 0;
1168 if (pixel == (transparent & 0x000000FFU)) monoPointer[j >> 3] |= 1 << (7 - (j & 7));
1172 hTempMask = CreateDIBitmap(
1182 bmi->bmiHeader.biHeight = -bmi->bmiHeader.biHeight;
1183 This->hbmMask = CreateBitmap(bmi->bmiHeader.biWidth, bmi->bmiHeader.biHeight, 1, 1, NULL);
1184 hOldbitmap = SelectObject(hdc, hTempMask);
1185 hOldbitmapmask = SelectObject(hdcMask, This->hbmMask);
1187 SetBkColor(hdc, RGB(255, 255, 255));
1188 BitBlt(hdcMask, 0, 0, bmi->bmiHeader.biWidth, bmi->bmiHeader.biHeight, hdc, 0, 0, SRCCOPY);
1190 /* We no longer need the original bitmap, so we apply the first
1191 transformation with the mask to speed up the rendering */
1192 SelectObject(hdc, This->hbmXor);
1193 SetBkColor(hdc, RGB(0,0,0));
1194 SetTextColor(hdc, RGB(255,255,255));
1195 BitBlt(hdc, 0, 0, bmi->bmiHeader.biWidth, bmi->bmiHeader.biHeight,
1196 hdcMask, 0, 0, SRCAND);
1198 SelectObject(hdc, hOldbitmap);
1199 SelectObject(hdcMask, hOldbitmapmask);
1202 DeleteObject(hTempMask);
1206 This->desc.picType = PICTYPE_BITMAP;
1207 OLEPictureImpl_SetBitmap(This);
1209 HeapFree(GetProcessHeap(),0,bytes);
1213 static HRESULT OLEPictureImpl_LoadJpeg(OLEPictureImpl *This, BYTE *xbuf, ULONG xread)
1215 #ifdef SONAME_LIBJPEG
1216 struct jpeg_decompress_struct jd;
1217 struct jpeg_error_mgr jerr;
1220 JSAMPROW samprow,oldsamprow;
1221 BITMAPINFOHEADER bmi;
1224 struct jpeg_source_mgr xjsm;
1228 if(!libjpeg_handle) {
1229 if(!load_libjpeg()) {
1230 FIXME("Failed reading JPEG because unable to find %s\n", SONAME_LIBJPEG);
1235 /* This is basically so we can use in-memory data for jpeg decompression.
1236 * We need to have all the functions.
1238 xjsm.next_input_byte = xbuf;
1239 xjsm.bytes_in_buffer = xread;
1240 xjsm.init_source = _jpeg_init_source;
1241 xjsm.fill_input_buffer = _jpeg_fill_input_buffer;
1242 xjsm.skip_input_data = _jpeg_skip_input_data;
1243 xjsm.resync_to_restart = _jpeg_resync_to_restart;
1244 xjsm.term_source = _jpeg_term_source;
1246 jd.err = pjpeg_std_error(&jerr);
1247 /* jpeg_create_decompress is a macro that expands to jpeg_CreateDecompress - see jpeglib.h
1248 * jpeg_create_decompress(&jd); */
1249 pjpeg_CreateDecompress(&jd, JPEG_LIB_VERSION, (size_t) sizeof(struct jpeg_decompress_struct));
1251 ret=pjpeg_read_header(&jd,TRUE);
1252 jd.out_color_space = JCS_RGB;
1253 pjpeg_start_decompress(&jd);
1254 if (ret != JPEG_HEADER_OK) {
1255 ERR("Jpeg image in stream has bad format, read header returned %d.\n",ret);
1256 HeapFree(GetProcessHeap(),0,xbuf);
1260 bits = HeapAlloc(GetProcessHeap(),HEAP_ZERO_MEMORY,
1261 (jd.output_height+1) * ((jd.output_width*jd.output_components + 3) & ~3) );
1262 samprow=HeapAlloc(GetProcessHeap(),HEAP_ZERO_MEMORY,jd.output_width*jd.output_components);
1265 oldsamprow = samprow;
1266 while ( jd.output_scanline<jd.output_height ) {
1267 x = pjpeg_read_scanlines(&jd,&samprow,1);
1269 FIXME("failed to read current scanline?\n");
1272 /* We have to convert from RGB to BGR, see MSDN/ BITMAPINFOHEADER */
1273 for(i=0;i<jd.output_width;i++,samprow+=jd.output_components) {
1274 *(bits++) = *(samprow+2);
1275 *(bits++) = *(samprow+1);
1276 *(bits++) = *(samprow);
1278 bits = (LPBYTE)(((UINT_PTR)bits + 3) & ~3);
1279 samprow = oldsamprow;
1283 bmi.biSize = sizeof(bmi);
1284 bmi.biWidth = jd.output_width;
1285 bmi.biHeight = -jd.output_height;
1287 bmi.biBitCount = jd.output_components<<3;
1288 bmi.biCompression = BI_RGB;
1289 bmi.biSizeImage = jd.output_height*jd.output_width*jd.output_components;
1290 bmi.biXPelsPerMeter = 0;
1291 bmi.biYPelsPerMeter = 0;
1293 bmi.biClrImportant = 0;
1295 HeapFree(GetProcessHeap(),0,samprow);
1296 pjpeg_finish_decompress(&jd);
1297 pjpeg_destroy_decompress(&jd);
1299 This->desc.u.bmp.hbitmap=CreateDIBitmap(
1308 This->desc.picType = PICTYPE_BITMAP;
1309 OLEPictureImpl_SetBitmap(This);
1310 HeapFree(GetProcessHeap(),0,bits);
1313 ERR("Trying to load JPEG picture, but JPEG supported not compiled in.\n");
1318 static HRESULT OLEPictureImpl_LoadDIB(OLEPictureImpl *This, BYTE *xbuf, ULONG xread)
1320 BITMAPFILEHEADER *bfh = (BITMAPFILEHEADER*)xbuf;
1321 BITMAPINFO *bi = (BITMAPINFO*)(bfh+1);
1324 /* Does not matter whether this is a coreheader or not, we only use
1325 * components which are in both
1328 This->desc.u.bmp.hbitmap = CreateDIBitmap(
1332 xbuf+bfh->bfOffBits,
1337 This->desc.picType = PICTYPE_BITMAP;
1338 OLEPictureImpl_SetBitmap(This);
1342 /*****************************************************
1343 * start of PNG-specific code
1344 * currently only supports colortype PNG_COLOR_TYPE_RGB
1346 #ifdef SONAME_LIBPNG
1353 static void png_stream_read_data(png_structp png_ptr, png_bytep data,
1356 png_io * io_ptr = png_ptr->io_ptr;
1358 if(length + io_ptr->position > io_ptr->size){
1359 length = io_ptr->size - io_ptr->position;
1362 memcpy(data, io_ptr->buff + io_ptr->position, length);
1364 io_ptr->position += length;
1367 static void *libpng_handle;
1368 #define MAKE_FUNCPTR(f) static typeof(f) * p##f
1369 MAKE_FUNCPTR(png_create_read_struct);
1370 MAKE_FUNCPTR(png_create_info_struct);
1371 MAKE_FUNCPTR(png_set_read_fn);
1372 MAKE_FUNCPTR(png_read_info);
1373 MAKE_FUNCPTR(png_read_image);
1374 MAKE_FUNCPTR(png_get_rowbytes);
1375 MAKE_FUNCPTR(png_set_bgr);
1376 MAKE_FUNCPTR(png_destroy_read_struct);
1377 MAKE_FUNCPTR(png_set_palette_to_rgb);
1378 MAKE_FUNCPTR(png_read_update_info);
1381 static void *load_libpng(void)
1383 if((libpng_handle = wine_dlopen(SONAME_LIBPNG, RTLD_NOW, NULL, 0)) != NULL) {
1385 #define LOAD_FUNCPTR(f) \
1386 if((p##f = wine_dlsym(libpng_handle, #f, NULL, 0)) == NULL) { \
1387 libpng_handle = NULL; \
1390 LOAD_FUNCPTR(png_create_read_struct);
1391 LOAD_FUNCPTR(png_create_info_struct);
1392 LOAD_FUNCPTR(png_set_read_fn);
1393 LOAD_FUNCPTR(png_read_info);
1394 LOAD_FUNCPTR(png_read_image);
1395 LOAD_FUNCPTR(png_get_rowbytes);
1396 LOAD_FUNCPTR(png_set_bgr);
1397 LOAD_FUNCPTR(png_destroy_read_struct);
1398 LOAD_FUNCPTR(png_set_palette_to_rgb);
1399 LOAD_FUNCPTR(png_read_update_info);
1403 return libpng_handle;
1405 #endif /* SONAME_LIBPNG */
1407 static HRESULT OLEPictureImpl_LoadPNG(OLEPictureImpl *This, BYTE *xbuf, ULONG xread)
1409 #ifdef SONAME_LIBPNG
1411 png_structp png_ptr = NULL;
1412 png_infop info_ptr = NULL;
1413 INT row, rowsize, height, width;
1414 png_bytep* row_pointers = NULL;
1415 png_bytep pngdata = NULL;
1416 BITMAPINFOHEADER bmi;
1419 BOOL set_bgr = FALSE;
1421 if(!libpng_handle) {
1422 if(!load_libpng()) {
1423 ERR("Failed reading PNG because unable to find %s\n",SONAME_LIBPNG);
1432 png_ptr = ppng_create_read_struct(PNG_LIBPNG_VER_STRING,
1435 if(setjmp(png_jmpbuf(png_ptr))){
1436 TRACE("Error in libpng\n");
1441 info_ptr = ppng_create_info_struct(png_ptr);
1442 ppng_set_read_fn(png_ptr, &io, png_stream_read_data);
1443 ppng_read_info(png_ptr, info_ptr);
1445 if(!(png_ptr->color_type == PNG_COLOR_TYPE_RGB ||
1446 png_ptr->color_type == PNG_COLOR_TYPE_PALETTE)){
1447 FIXME("Unsupported .PNG type: %d\n", png_ptr->color_type);
1452 if (png_ptr->color_type == PNG_COLOR_TYPE_PALETTE){
1453 ppng_set_palette_to_rgb(png_ptr);
1457 if (png_ptr->color_type == PNG_COLOR_TYPE_RGB ||
1458 png_ptr->color_type == PNG_COLOR_TYPE_RGB_ALPHA ||
1460 ppng_set_bgr(png_ptr);
1463 ppng_read_update_info(png_ptr, info_ptr);
1465 rowsize = ppng_get_rowbytes(png_ptr, info_ptr);
1466 /* align rowsize to 4-byte boundary */
1467 rowsize = (rowsize + 3) & ~3;
1468 height = info_ptr->height;
1469 width = info_ptr->width;
1471 pngdata = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, height * rowsize);
1472 row_pointers = HeapAlloc(GetProcessHeap(), 0, height * (sizeof(VOID *)));
1474 if(!pngdata || !row_pointers){
1479 for (row = 0; row < height; row++){
1480 row_pointers[row] = pngdata + row * rowsize;
1483 ppng_read_image(png_ptr, row_pointers);
1485 bmi.biSize = sizeof(bmi);
1486 bmi.biWidth = width;
1487 bmi.biHeight = -height;
1489 bmi.biBitCount = info_ptr->channels * 8;
1490 bmi.biCompression = BI_RGB;
1491 bmi.biSizeImage = height * rowsize;
1492 bmi.biXPelsPerMeter = 0;
1493 bmi.biYPelsPerMeter = 0;
1495 bmi.biClrImportant = 0;
1498 This->desc.u.bmp.hbitmap = CreateDIBitmap(
1506 ReleaseDC(0, hdcref);
1507 This->desc.picType = PICTYPE_BITMAP;
1508 OLEPictureImpl_SetBitmap(This);
1513 ppng_destroy_read_struct(&png_ptr,
1514 (info_ptr ? &info_ptr : (png_infopp) NULL),
1516 HeapFree(GetProcessHeap(), 0, row_pointers);
1517 HeapFree(GetProcessHeap(), 0, pngdata);
1519 #else /* SONAME_LIBPNG */
1520 ERR("Trying to load PNG picture, but PNG supported not compiled in.\n");
1525 /*****************************************************
1526 * start of Icon-specific code
1529 static HRESULT OLEPictureImpl_LoadIcon(OLEPictureImpl *This, BYTE *xbuf, ULONG xread)
1532 CURSORICONFILEDIR *cifd = (CURSORICONFILEDIR*)xbuf;
1537 FIXME("icon.idReserved=%d\n",cifd->idReserved);
1538 FIXME("icon.idType=%d\n",cifd->idType);
1539 FIXME("icon.idCount=%d\n",cifd->idCount);
1541 for (i=0;i<cifd->idCount;i++) {
1542 FIXME("[%d] width %d\n",i,cifd->idEntries[i].bWidth);
1543 FIXME("[%d] height %d\n",i,cifd->idEntries[i].bHeight);
1544 FIXME("[%d] bColorCount %d\n",i,cifd->idEntries[i].bColorCount);
1545 FIXME("[%d] bReserved %d\n",i,cifd->idEntries[i].bReserved);
1546 FIXME("[%d] xHotspot %d\n",i,cifd->idEntries[i].xHotspot);
1547 FIXME("[%d] yHotspot %d\n",i,cifd->idEntries[i].yHotspot);
1548 FIXME("[%d] dwDIBSize %d\n",i,cifd->idEntries[i].dwDIBSize);
1549 FIXME("[%d] dwDIBOffset %d\n",i,cifd->idEntries[i].dwDIBOffset);
1553 /* If we have more than one icon, try to find the best.
1554 * this currently means '32 pixel wide'.
1556 if (cifd->idCount!=1) {
1557 for (i=0;i<cifd->idCount;i++) {
1558 if (cifd->idEntries[i].bWidth == 32)
1561 if (i==cifd->idCount) i=0;
1564 hicon = CreateIconFromResourceEx(
1565 xbuf+cifd->idEntries[i].dwDIBOffset,
1566 cifd->idEntries[i].dwDIBSize,
1569 cifd->idEntries[i].bWidth,
1570 cifd->idEntries[i].bHeight,
1574 FIXME("CreateIcon failed.\n");
1577 This->desc.picType = PICTYPE_ICON;
1578 This->desc.u.icon.hicon = hicon;
1579 This->origWidth = cifd->idEntries[i].bWidth;
1580 This->origHeight = cifd->idEntries[i].bHeight;
1581 hdcRef = CreateCompatibleDC(0);
1582 This->himetricWidth =(cifd->idEntries[i].bWidth *2540)/GetDeviceCaps(hdcRef, LOGPIXELSX);
1583 This->himetricHeight=(cifd->idEntries[i].bHeight*2540)/GetDeviceCaps(hdcRef, LOGPIXELSY);
1589 static HRESULT OLEPictureImpl_LoadMetafile(OLEPictureImpl *This,
1590 const BYTE *data, ULONG size)
1595 /* SetMetaFileBitsEx performs data check on its own */
1596 hmf = SetMetaFileBitsEx(size, data);
1599 This->desc.picType = PICTYPE_METAFILE;
1600 This->desc.u.wmf.hmeta = hmf;
1601 This->desc.u.wmf.xExt = 0;
1602 This->desc.u.wmf.yExt = 0;
1604 This->origWidth = 0;
1605 This->origHeight = 0;
1606 This->himetricWidth = 0;
1607 This->himetricHeight = 0;
1612 hemf = SetEnhMetaFileBits(size, data);
1613 if (!hemf) return E_FAIL;
1615 This->desc.picType = PICTYPE_ENHMETAFILE;
1616 This->desc.u.emf.hemf = hemf;
1618 This->origWidth = 0;
1619 This->origHeight = 0;
1620 This->himetricWidth = 0;
1621 This->himetricHeight = 0;
1626 /************************************************************************
1627 * OLEPictureImpl_IPersistStream_Load (IUnknown)
1629 * Loads the binary data from the IStream. Starts at current position.
1630 * There appears to be an 2 DWORD header:
1634 * Currently implemented: BITMAP, ICON, JPEG, GIF, WMF, EMF
1636 static HRESULT WINAPI OLEPictureImpl_Load(IPersistStream* iface,IStream*pStm) {
1637 HRESULT hr = E_FAIL;
1638 BOOL headerisdata = FALSE;
1639 BOOL statfailed = FALSE;
1640 ULONG xread, toread;
1646 OLEPictureImpl *This = impl_from_IPersistStream(iface);
1648 TRACE("(%p,%p)\n",This,pStm);
1650 /****************************************************************************************
1651 * Part 1: Load the data
1653 /* Sometimes we have a header, sometimes we don't. Apply some guesses to find
1654 * out whether we do.
1656 * UPDATE: the IStream can be mapped to a plain file instead of a stream in a
1657 * compound file. This may explain most, if not all, of the cases of "no
1658 * header", and the header validation should take this into account.
1659 * At least in Visual Basic 6, resource streams, valid headers are
1660 * header[0] == "lt\0\0",
1661 * header[1] == length_of_stream.
1663 * Also handle streams where we do not have a working "Stat" method by
1664 * reading all data until the end of the stream.
1666 hr=IStream_Stat(pStm,&statstg,STATFLAG_NONAME);
1668 TRACE("stat failed with hres %x, proceeding to read all data.\n",hr);
1670 /* we will read at least 8 byte ... just right below */
1671 statstg.cbSize.QuadPart = 8;
1676 headerisdata = FALSE;
1678 hr=IStream_Read(pStm,header,8,&xread);
1679 if (hr || xread!=8) {
1680 FIXME("Failure while reading picture header (hr is %x, nread is %d).\n",hr,xread);
1683 headerread += xread;
1686 if (!memcmp(&(header[0]),"lt\0\0", 4) && (statfailed || (header[1] + headerread <= statstg.cbSize.QuadPart))) {
1687 if (toread != 0 && toread != header[1])
1688 FIXME("varying lengths of image data (prev=%u curr=%u), only last one will be used\n",
1691 if (toread == 0) break;
1693 if (!memcmp(&(header[0]), "GIF8", 4) || /* GIF header */
1694 !memcmp(&(header[0]), "BM", 2) || /* BMP header */
1695 !memcmp(&(header[0]), "\xff\xd8", 2) || /* JPEG header */
1696 (header[1] > statstg.cbSize.QuadPart)|| /* invalid size */
1698 ) {/* Found start of bitmap data */
1699 headerisdata = TRUE;
1701 toread = statstg.cbSize.QuadPart-8;
1705 FIXME("Unknown stream header magic: %08x\n", header[0]);
1709 } while (!headerisdata);
1711 if (statfailed) { /* we don't know the size ... read all we get */
1713 int origsize = sizeinc;
1716 TRACE("Reading all data from stream.\n");
1717 xbuf = HeapAlloc (GetProcessHeap(), HEAP_ZERO_MEMORY, origsize);
1719 memcpy (xbuf, &header, 8);
1721 while (xread < origsize) {
1722 hr = IStream_Read(pStm,xbuf+xread,origsize-xread,&nread);
1727 if (!nread || hr) /* done, or error */
1729 if (xread == origsize) {
1730 origsize += sizeinc;
1731 sizeinc = 2*sizeinc; /* exponential increase */
1732 xbuf = HeapReAlloc (GetProcessHeap(), HEAP_ZERO_MEMORY, xbuf, origsize);
1736 TRACE("hr in no-stat loader case is %08x\n", hr);
1737 TRACE("loaded %d bytes.\n", xread);
1738 This->datalen = xread;
1741 This->datalen = toread+(headerisdata?8:0);
1742 xbuf = This->data = HeapAlloc (GetProcessHeap(), HEAP_ZERO_MEMORY, This->datalen);
1745 memcpy (xbuf, &header, 8);
1747 while (xread < This->datalen) {
1749 hr = IStream_Read(pStm,xbuf+xread,This->datalen-xread,&nread);
1754 if (xread != This->datalen)
1755 FIXME("Could only read %d of %d bytes out of stream?\n",xread,This->datalen);
1757 if (This->datalen == 0) { /* Marks the "NONE" picture */
1758 This->desc.picType = PICTYPE_NONE;
1763 /****************************************************************************************
1764 * Part 2: Process the loaded data
1767 magic = xbuf[0] + (xbuf[1]<<8);
1768 This->loadtime_format = magic;
1771 case 0x4947: /* GIF */
1772 hr = OLEPictureImpl_LoadGif(This, xbuf, xread);
1774 case 0xd8ff: /* JPEG */
1775 hr = OLEPictureImpl_LoadJpeg(This, xbuf, xread);
1777 case 0x4d42: /* Bitmap */
1778 hr = OLEPictureImpl_LoadDIB(This, xbuf, xread);
1780 case 0x5089: /* PNG */
1781 hr = OLEPictureImpl_LoadPNG(This, xbuf, xread);
1783 case 0x0000: { /* ICON , first word is dwReserved */
1784 hr = OLEPictureImpl_LoadIcon(This, xbuf, xread);
1791 /* let's see if it's a metafile */
1792 hr = OLEPictureImpl_LoadMetafile(This, xbuf, xread);
1793 if (hr == S_OK) break;
1795 FIXME("Unknown magic %04x, %d read bytes:\n",magic,xread);
1797 for (i=0;i<xread+8;i++) {
1798 if (i<8) MESSAGE("%02x ",((unsigned char*)&header)[i]);
1799 else MESSAGE("%02x ",xbuf[i-8]);
1800 if (i % 10 == 9) MESSAGE("\n");
1806 This->bIsDirty = FALSE;
1808 /* FIXME: this notify is not really documented */
1810 OLEPicture_SendNotify(This,DISPID_PICT_TYPE);
1814 static int serializeBMP(HBITMAP hBitmap, void ** ppBuffer, unsigned int * pLength)
1818 BITMAPINFO * pInfoBitmap;
1819 int iNumPaletteEntries;
1820 unsigned char * pPixelData;
1821 BITMAPFILEHEADER * pFileHeader;
1822 BITMAPINFO * pInfoHeader;
1824 pInfoBitmap = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY,
1825 sizeof(BITMAPINFOHEADER) + 256 * sizeof(RGBQUAD));
1827 /* Find out bitmap size and padded length */
1829 pInfoBitmap->bmiHeader.biSize = sizeof(pInfoBitmap->bmiHeader);
1830 GetDIBits(hDC, hBitmap, 0, 0, NULL, pInfoBitmap, DIB_RGB_COLORS);
1832 /* Fetch bitmap palette & pixel data */
1834 pPixelData = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, pInfoBitmap->bmiHeader.biSizeImage);
1835 GetDIBits(hDC, hBitmap, 0, pInfoBitmap->bmiHeader.biHeight, pPixelData, pInfoBitmap, DIB_RGB_COLORS);
1837 /* Calculate the total length required for the BMP data */
1838 if (pInfoBitmap->bmiHeader.biClrUsed != 0) {
1839 iNumPaletteEntries = pInfoBitmap->bmiHeader.biClrUsed;
1840 if (iNumPaletteEntries > 256) iNumPaletteEntries = 256;
1842 if (pInfoBitmap->bmiHeader.biBitCount <= 8)
1843 iNumPaletteEntries = 1 << pInfoBitmap->bmiHeader.biBitCount;
1845 iNumPaletteEntries = 0;
1848 sizeof(BITMAPFILEHEADER) +
1849 sizeof(BITMAPINFOHEADER) +
1850 iNumPaletteEntries * sizeof(RGBQUAD) +
1851 pInfoBitmap->bmiHeader.biSizeImage;
1852 *ppBuffer = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, *pLength);
1854 /* Fill the BITMAPFILEHEADER */
1855 pFileHeader = (BITMAPFILEHEADER *)(*ppBuffer);
1856 pFileHeader->bfType = 0x4d42;
1857 pFileHeader->bfSize = *pLength;
1858 pFileHeader->bfOffBits =
1859 sizeof(BITMAPFILEHEADER) +
1860 sizeof(BITMAPINFOHEADER) +
1861 iNumPaletteEntries * sizeof(RGBQUAD);
1863 /* Fill the BITMAPINFOHEADER and the palette data */
1864 pInfoHeader = (BITMAPINFO *)((unsigned char *)(*ppBuffer) + sizeof(BITMAPFILEHEADER));
1865 memcpy(pInfoHeader, pInfoBitmap, sizeof(BITMAPINFOHEADER) + iNumPaletteEntries * sizeof(RGBQUAD));
1867 (unsigned char *)(*ppBuffer) +
1868 sizeof(BITMAPFILEHEADER) +
1869 sizeof(BITMAPINFOHEADER) +
1870 iNumPaletteEntries * sizeof(RGBQUAD),
1871 pPixelData, pInfoBitmap->bmiHeader.biSizeImage);
1874 HeapFree(GetProcessHeap(), 0, pPixelData);
1875 HeapFree(GetProcessHeap(), 0, pInfoBitmap);
1879 static int serializeIcon(HICON hIcon, void ** ppBuffer, unsigned int * pLength)
1884 *ppBuffer = NULL; *pLength = 0;
1885 if (GetIconInfo(hIcon, &infoIcon)) {
1887 BITMAPINFO * pInfoBitmap;
1888 unsigned char * pIconData = NULL;
1889 unsigned int iDataSize = 0;
1891 pInfoBitmap = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(BITMAPINFOHEADER) + 256 * sizeof(RGBQUAD));
1893 /* Find out icon size */
1895 pInfoBitmap->bmiHeader.biSize = sizeof(pInfoBitmap->bmiHeader);
1896 GetDIBits(hDC, infoIcon.hbmColor, 0, 0, NULL, pInfoBitmap, DIB_RGB_COLORS);
1898 /* Auxiliary pointers */
1899 CURSORICONFILEDIR * pIconDir;
1900 CURSORICONFILEDIRENTRY * pIconEntry;
1901 BITMAPINFOHEADER * pIconBitmapHeader;
1902 unsigned int iOffsetPalette;
1903 unsigned int iOffsetColorData;
1904 unsigned int iOffsetMaskData;
1906 unsigned int iLengthScanLineColor;
1907 unsigned int iLengthScanLineMask;
1908 unsigned int iNumEntriesPalette;
1910 iLengthScanLineMask = ((pInfoBitmap->bmiHeader.biWidth + 31) >> 5) << 2;
1911 iLengthScanLineColor = ((pInfoBitmap->bmiHeader.biWidth * pInfoBitmap->bmiHeader.biBitCount + 31) >> 5) << 2;
1913 FIXME("DEBUG: bitmap size is %d x %d\n",
1914 pInfoBitmap->bmiHeader.biWidth,
1915 pInfoBitmap->bmiHeader.biHeight);
1916 FIXME("DEBUG: bitmap bpp is %d\n",
1917 pInfoBitmap->bmiHeader.biBitCount);
1918 FIXME("DEBUG: bitmap nplanes is %d\n",
1919 pInfoBitmap->bmiHeader.biPlanes);
1920 FIXME("DEBUG: bitmap biSizeImage is %u\n",
1921 pInfoBitmap->bmiHeader.biSizeImage);
1923 /* Let's start with one CURSORICONFILEDIR and one CURSORICONFILEDIRENTRY */
1924 iDataSize += 3 * sizeof(WORD) + sizeof(CURSORICONFILEDIRENTRY) + sizeof(BITMAPINFOHEADER);
1925 pIconData = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, iDataSize);
1927 /* Fill out the CURSORICONFILEDIR */
1928 pIconDir = (CURSORICONFILEDIR *)pIconData;
1929 pIconDir->idType = 1;
1930 pIconDir->idCount = 1;
1932 /* Fill out the CURSORICONFILEDIRENTRY */
1933 pIconEntry = (CURSORICONFILEDIRENTRY *)(pIconData + 3 * sizeof(WORD));
1934 pIconEntry->bWidth = (unsigned char)pInfoBitmap->bmiHeader.biWidth;
1935 pIconEntry->bHeight = (unsigned char)pInfoBitmap->bmiHeader.biHeight;
1936 pIconEntry->bColorCount =
1937 (pInfoBitmap->bmiHeader.biBitCount < 8)
1938 ? 1 << pInfoBitmap->bmiHeader.biBitCount
1940 pIconEntry->xHotspot = pInfoBitmap->bmiHeader.biPlanes;
1941 pIconEntry->yHotspot = pInfoBitmap->bmiHeader.biBitCount;
1942 pIconEntry->dwDIBSize = 0;
1943 pIconEntry->dwDIBOffset = 3 * sizeof(WORD) + sizeof(CURSORICONFILEDIRENTRY);
1945 /* Fill out the BITMAPINFOHEADER */
1946 pIconBitmapHeader = (BITMAPINFOHEADER *)(pIconData + 3 * sizeof(WORD) + sizeof(CURSORICONFILEDIRENTRY));
1947 memcpy(pIconBitmapHeader, &pInfoBitmap->bmiHeader, sizeof(BITMAPINFOHEADER));
1949 /* Find out whether a palette exists for the bitmap */
1950 if ( (pInfoBitmap->bmiHeader.biBitCount == 16 && pInfoBitmap->bmiHeader.biCompression == BI_RGB)
1951 || (pInfoBitmap->bmiHeader.biBitCount == 24)
1952 || (pInfoBitmap->bmiHeader.biBitCount == 32 && pInfoBitmap->bmiHeader.biCompression == BI_RGB)) {
1953 iNumEntriesPalette = pInfoBitmap->bmiHeader.biClrUsed;
1954 if (iNumEntriesPalette > 256) iNumEntriesPalette = 256;
1955 } else if ((pInfoBitmap->bmiHeader.biBitCount == 16 || pInfoBitmap->bmiHeader.biBitCount == 32)
1956 && pInfoBitmap->bmiHeader.biCompression == BI_BITFIELDS) {
1957 iNumEntriesPalette = 3;
1958 } else if (pInfoBitmap->bmiHeader.biBitCount <= 8) {
1959 iNumEntriesPalette = 1 << pInfoBitmap->bmiHeader.biBitCount;
1961 iNumEntriesPalette = 0;
1964 /* Add bitmap size and header size to icon data size. */
1965 iOffsetPalette = iDataSize;
1966 iDataSize += iNumEntriesPalette * sizeof(DWORD);
1967 iOffsetColorData = iDataSize;
1968 iDataSize += pIconBitmapHeader->biSizeImage;
1969 iOffsetMaskData = iDataSize;
1970 iDataSize += pIconBitmapHeader->biHeight * iLengthScanLineMask;
1971 pIconBitmapHeader->biSizeImage += pIconBitmapHeader->biHeight * iLengthScanLineMask;
1972 pIconBitmapHeader->biHeight *= 2;
1973 pIconData = HeapReAlloc(GetProcessHeap(), 0, pIconData, iDataSize);
1974 pIconEntry = (CURSORICONFILEDIRENTRY *)(pIconData + 3 * sizeof(WORD));
1975 pIconBitmapHeader = (BITMAPINFOHEADER *)(pIconData + 3 * sizeof(WORD) + sizeof(CURSORICONFILEDIRENTRY));
1976 pIconEntry->dwDIBSize = iDataSize - (3 * sizeof(WORD) + sizeof(CURSORICONFILEDIRENTRY));
1978 /* Get the actual bitmap data from the icon bitmap */
1979 GetDIBits(hDC, infoIcon.hbmColor, 0, pInfoBitmap->bmiHeader.biHeight,
1980 pIconData + iOffsetColorData, pInfoBitmap, DIB_RGB_COLORS);
1981 if (iNumEntriesPalette > 0) {
1982 memcpy(pIconData + iOffsetPalette, pInfoBitmap->bmiColors,
1983 iNumEntriesPalette * sizeof(RGBQUAD));
1986 /* Reset all values so that GetDIBits call succeeds */
1987 memset(pIconData + iOffsetMaskData, 0, iDataSize - iOffsetMaskData);
1988 memset(pInfoBitmap, 0, sizeof(BITMAPINFOHEADER) + 256 * sizeof(RGBQUAD));
1989 pInfoBitmap->bmiHeader.biSize = sizeof(pInfoBitmap->bmiHeader);
1991 if (!(GetDIBits(hDC, infoIcon.hbmMask, 0, 0, NULL, pInfoBitmap, DIB_RGB_COLORS)
1992 && GetDIBits(hDC, infoIcon.hbmMask, 0, pIconEntry->bHeight,
1993 pIconData + iOffsetMaskData, pInfoBitmap, DIB_RGB_COLORS))) {
1995 printf("ERROR: unable to get bitmap mask (error %u)\n",
2000 GetDIBits(hDC, infoIcon.hbmMask, 0, 0, NULL, pInfoBitmap, DIB_RGB_COLORS);
2001 GetDIBits(hDC, infoIcon.hbmMask, 0, pIconEntry->bHeight, pIconData + iOffsetMaskData, pInfoBitmap, DIB_RGB_COLORS);
2003 /* Write out everything produced so far to the stream */
2004 *ppBuffer = pIconData; *pLength = iDataSize;
2008 printf("ERROR: unable to get bitmap information via GetDIBits() (error %u)\n",
2013 Remarks (from MSDN entry on GetIconInfo):
2015 GetIconInfo creates bitmaps for the hbmMask and hbmColor
2016 members of ICONINFO. The calling application must manage
2017 these bitmaps and delete them when they are no longer
2020 if (hDC) ReleaseDC(0, hDC);
2021 DeleteObject(infoIcon.hbmMask);
2022 if (infoIcon.hbmColor) DeleteObject(infoIcon.hbmColor);
2023 HeapFree(GetProcessHeap(), 0, pInfoBitmap);
2025 printf("ERROR: Unable to get icon information (error %u)\n",
2031 static HRESULT WINAPI OLEPictureImpl_Save(
2032 IPersistStream* iface,IStream*pStm,BOOL fClearDirty)
2034 HRESULT hResult = E_NOTIMPL;
2036 unsigned int iDataSize;
2038 int iSerializeResult = 0;
2039 OLEPictureImpl *This = impl_from_IPersistStream(iface);
2041 TRACE("%p %p %d\n", This, pStm, fClearDirty);
2043 switch (This->desc.picType) {
2045 if (This->bIsDirty || !This->data) {
2046 if (!serializeIcon(This->desc.u.icon.hicon, &pIconData, &iDataSize)) {
2047 ERR("(%p,%p,%d), serializeIcon() failed\n", This, pStm, fClearDirty);
2051 HeapFree(GetProcessHeap(), 0, This->data);
2052 This->data = pIconData;
2053 This->datalen = iDataSize;
2055 if (This->loadtime_magic != 0xdeadbeef) {
2058 header[0] = This->loadtime_magic;
2059 header[1] = This->datalen;
2060 IStream_Write(pStm, header, 2 * sizeof(DWORD), &dummy);
2062 IStream_Write(pStm, This->data, This->datalen, &dummy);
2066 case PICTYPE_BITMAP:
2067 if (This->bIsDirty) {
2068 switch (This->keepOrigFormat ? This->loadtime_format : 0x4d42) {
2070 iSerializeResult = serializeBMP(This->desc.u.bmp.hbitmap, &pIconData, &iDataSize);
2073 FIXME("(%p,%p,%d), PICTYPE_BITMAP (format JPEG) not implemented!\n",This,pStm,fClearDirty);
2076 FIXME("(%p,%p,%d), PICTYPE_BITMAP (format GIF) not implemented!\n",This,pStm,fClearDirty);
2079 FIXME("(%p,%p,%d), PICTYPE_BITMAP (format PNG) not implemented!\n",This,pStm,fClearDirty);
2082 FIXME("(%p,%p,%d), PICTYPE_BITMAP (format UNKNOWN, using BMP?) not implemented!\n",This,pStm,fClearDirty);
2085 if (iSerializeResult) {
2087 if (This->loadtime_magic != 0xdeadbeef) {
2092 header[0] = (This->loadtime_magic != 0xdeadbeef) ? This->loadtime_magic : 0x0000746c;
2093 header[1] = iDataSize;
2094 IStream_Write(pStm, header, 2 * sizeof(DWORD), &dummy);
2096 IStream_Write(pStm, pIconData, iDataSize, &dummy);
2098 HeapFree(GetProcessHeap(), 0, This->data);
2099 This->data = pIconData;
2100 This->datalen = iDataSize;
2105 if (This->loadtime_magic != 0xdeadbeef) {
2110 header[0] = (This->loadtime_magic != 0xdeadbeef) ? This->loadtime_magic : 0x0000746c;
2111 header[1] = This->datalen;
2112 IStream_Write(pStm, header, 2 * sizeof(DWORD), &dummy);
2114 IStream_Write(pStm, This->data, This->datalen, &dummy);
2118 case PICTYPE_METAFILE:
2119 FIXME("(%p,%p,%d), PICTYPE_METAFILE not implemented!\n",This,pStm,fClearDirty);
2121 case PICTYPE_ENHMETAFILE:
2122 FIXME("(%p,%p,%d),PICTYPE_ENHMETAFILE not implemented!\n",This,pStm,fClearDirty);
2125 FIXME("(%p,%p,%d), [unknown type] not implemented!\n",This,pStm,fClearDirty);
2128 if (hResult == S_OK && fClearDirty) This->bIsDirty = FALSE;
2132 static HRESULT WINAPI OLEPictureImpl_GetSizeMax(
2133 IPersistStream* iface,ULARGE_INTEGER*pcbSize)
2135 OLEPictureImpl *This = impl_from_IPersistStream(iface);
2136 FIXME("(%p,%p),stub!\n",This,pcbSize);
2141 /************************************************************************
2145 /************************************************************************
2146 * OLEPictureImpl_IDispatch_QueryInterface (IUnknown)
2148 * See Windows documentation for more details on IUnknown methods.
2150 static HRESULT WINAPI OLEPictureImpl_IDispatch_QueryInterface(
2155 OLEPictureImpl *This = impl_from_IDispatch(iface);
2157 return IPicture_QueryInterface((IPicture *)This, riid, ppvoid);
2160 /************************************************************************
2161 * OLEPictureImpl_IDispatch_AddRef (IUnknown)
2163 * See Windows documentation for more details on IUnknown methods.
2165 static ULONG WINAPI OLEPictureImpl_IDispatch_AddRef(
2168 OLEPictureImpl *This = impl_from_IDispatch(iface);
2170 return IPicture_AddRef((IPicture *)This);
2173 /************************************************************************
2174 * OLEPictureImpl_IDispatch_Release (IUnknown)
2176 * See Windows documentation for more details on IUnknown methods.
2178 static ULONG WINAPI OLEPictureImpl_IDispatch_Release(
2181 OLEPictureImpl *This = impl_from_IDispatch(iface);
2183 return IPicture_Release((IPicture *)This);
2186 /************************************************************************
2187 * OLEPictureImpl_GetTypeInfoCount (IDispatch)
2189 * See Windows documentation for more details on IDispatch methods.
2191 static HRESULT WINAPI OLEPictureImpl_GetTypeInfoCount(
2193 unsigned int* pctinfo)
2195 TRACE("(%p)\n", pctinfo);
2202 /************************************************************************
2203 * OLEPictureImpl_GetTypeInfo (IDispatch)
2205 * See Windows documentation for more details on IDispatch methods.
2207 static HRESULT WINAPI OLEPictureImpl_GetTypeInfo(
2211 ITypeInfo** ppTInfo)
2213 static const WCHAR stdole2tlb[] = {'s','t','d','o','l','e','2','.','t','l','b',0};
2217 TRACE("(iTInfo=%d, lcid=%04x, %p)\n", iTInfo, (int)lcid, ppTInfo);
2222 hres = LoadTypeLib(stdole2tlb, &tl);
2225 ERR("Could not load stdole2.tlb\n");
2229 hres = ITypeLib_GetTypeInfoOfGuid(tl, &IID_IPictureDisp, ppTInfo);
2231 ERR("Did not get IPictureDisp typeinfo from typelib, hres %x\n", hres);
2236 /************************************************************************
2237 * OLEPictureImpl_GetIDsOfNames (IDispatch)
2239 * See Windows documentation for more details on IDispatch methods.
2241 static HRESULT WINAPI OLEPictureImpl_GetIDsOfNames(
2244 LPOLESTR* rgszNames,
2254 /************************************************************************
2255 * OLEPictureImpl_Invoke (IDispatch)
2257 * See Windows documentation for more details on IDispatch methods.
2259 static HRESULT WINAPI OLEPictureImpl_Invoke(
2261 DISPID dispIdMember,
2265 DISPPARAMS* pDispParams,
2266 VARIANT* pVarResult,
2267 EXCEPINFO* pExepInfo,
2270 OLEPictureImpl *This = impl_from_IDispatch(iface);
2272 /* validate parameters */
2274 if (!IsEqualIID(riid, &IID_NULL))
2276 ERR("riid was %s instead of IID_NULL\n", debugstr_guid(riid));
2277 return DISP_E_UNKNOWNNAME;
2282 ERR("null pDispParams not allowed\n");
2283 return DISP_E_PARAMNOTOPTIONAL;
2286 if (wFlags & DISPATCH_PROPERTYGET)
2288 if (pDispParams->cArgs != 0)
2290 ERR("param count for DISPATCH_PROPERTYGET was %d instead of 0\n", pDispParams->cArgs);
2291 return DISP_E_BADPARAMCOUNT;
2295 ERR("null pVarResult not allowed when DISPATCH_PROPERTYGET specified\n");
2296 return DISP_E_PARAMNOTOPTIONAL;
2299 else if (wFlags & DISPATCH_PROPERTYPUT)
2301 if (pDispParams->cArgs != 1)
2303 ERR("param count for DISPATCH_PROPERTYPUT was %d instead of 1\n", pDispParams->cArgs);
2304 return DISP_E_BADPARAMCOUNT;
2308 switch (dispIdMember)
2310 case DISPID_PICT_HANDLE:
2311 if (wFlags & DISPATCH_PROPERTYGET)
2313 TRACE("DISPID_PICT_HANDLE\n");
2314 V_VT(pVarResult) = VT_I4;
2315 return IPicture_get_Handle((IPicture *)&This->lpVtbl, &V_UINT(pVarResult));
2318 case DISPID_PICT_HPAL:
2319 if (wFlags & DISPATCH_PROPERTYGET)
2321 TRACE("DISPID_PICT_HPAL\n");
2322 V_VT(pVarResult) = VT_I4;
2323 return IPicture_get_hPal((IPicture *)&This->lpVtbl, &V_UINT(pVarResult));
2325 else if (wFlags & DISPATCH_PROPERTYPUT)
2329 TRACE("DISPID_PICT_HPAL\n");
2331 VariantInit(&vararg);
2332 hr = VariantChangeTypeEx(&vararg, &pDispParams->rgvarg[0], lcid, 0, VT_I4);
2336 hr = IPicture_set_hPal((IPicture *)&This->lpVtbl, V_I4(&vararg));
2338 VariantClear(&vararg);
2342 case DISPID_PICT_TYPE:
2343 if (wFlags & DISPATCH_PROPERTYGET)
2345 TRACE("DISPID_PICT_TYPE\n");
2346 V_VT(pVarResult) = VT_I2;
2347 return OLEPictureImpl_get_Type((IPicture *)&This->lpVtbl, &V_I2(pVarResult));
2350 case DISPID_PICT_WIDTH:
2351 if (wFlags & DISPATCH_PROPERTYGET)
2353 TRACE("DISPID_PICT_WIDTH\n");
2354 V_VT(pVarResult) = VT_I4;
2355 return IPicture_get_Width((IPicture *)&This->lpVtbl, &V_I4(pVarResult));
2358 case DISPID_PICT_HEIGHT:
2359 if (wFlags & DISPATCH_PROPERTYGET)
2361 TRACE("DISPID_PICT_HEIGHT\n");
2362 V_VT(pVarResult) = VT_I4;
2363 return IPicture_get_Height((IPicture *)&This->lpVtbl, &V_I4(pVarResult));
2368 ERR("invalid dispid 0x%x or wFlags 0x%x\n", dispIdMember, wFlags);
2369 return DISP_E_MEMBERNOTFOUND;
2373 static const IPictureVtbl OLEPictureImpl_VTable =
2375 OLEPictureImpl_QueryInterface,
2376 OLEPictureImpl_AddRef,
2377 OLEPictureImpl_Release,
2378 OLEPictureImpl_get_Handle,
2379 OLEPictureImpl_get_hPal,
2380 OLEPictureImpl_get_Type,
2381 OLEPictureImpl_get_Width,
2382 OLEPictureImpl_get_Height,
2383 OLEPictureImpl_Render,
2384 OLEPictureImpl_set_hPal,
2385 OLEPictureImpl_get_CurDC,
2386 OLEPictureImpl_SelectPicture,
2387 OLEPictureImpl_get_KeepOriginalFormat,
2388 OLEPictureImpl_put_KeepOriginalFormat,
2389 OLEPictureImpl_PictureChanged,
2390 OLEPictureImpl_SaveAsFile,
2391 OLEPictureImpl_get_Attributes
2394 static const IDispatchVtbl OLEPictureImpl_IDispatch_VTable =
2396 OLEPictureImpl_IDispatch_QueryInterface,
2397 OLEPictureImpl_IDispatch_AddRef,
2398 OLEPictureImpl_IDispatch_Release,
2399 OLEPictureImpl_GetTypeInfoCount,
2400 OLEPictureImpl_GetTypeInfo,
2401 OLEPictureImpl_GetIDsOfNames,
2402 OLEPictureImpl_Invoke
2405 static const IPersistStreamVtbl OLEPictureImpl_IPersistStream_VTable =
2407 OLEPictureImpl_IPersistStream_QueryInterface,
2408 OLEPictureImpl_IPersistStream_AddRef,
2409 OLEPictureImpl_IPersistStream_Release,
2410 OLEPictureImpl_GetClassID,
2411 OLEPictureImpl_IsDirty,
2412 OLEPictureImpl_Load,
2413 OLEPictureImpl_Save,
2414 OLEPictureImpl_GetSizeMax
2417 static const IConnectionPointContainerVtbl OLEPictureImpl_IConnectionPointContainer_VTable =
2419 OLEPictureImpl_IConnectionPointContainer_QueryInterface,
2420 OLEPictureImpl_IConnectionPointContainer_AddRef,
2421 OLEPictureImpl_IConnectionPointContainer_Release,
2422 OLEPictureImpl_EnumConnectionPoints,
2423 OLEPictureImpl_FindConnectionPoint
2426 /***********************************************************************
2427 * OleCreatePictureIndirect (OLEAUT32.419)
2429 HRESULT WINAPI OleCreatePictureIndirect(LPPICTDESC lpPictDesc, REFIID riid,
2430 BOOL fOwn, LPVOID *ppvObj )
2432 OLEPictureImpl* newPict = NULL;
2435 TRACE("(%p,%s,%d,%p)\n", lpPictDesc, debugstr_guid(riid), fOwn, ppvObj);
2446 * Try to construct a new instance of the class.
2448 newPict = OLEPictureImpl_Construct(lpPictDesc, fOwn);
2450 if (newPict == NULL)
2451 return E_OUTOFMEMORY;
2454 * Make sure it supports the interface required by the caller.
2456 hr = IPicture_QueryInterface((IPicture*)newPict, riid, ppvObj);
2459 * Release the reference obtained in the constructor. If
2460 * the QueryInterface was unsuccessful, it will free the class.
2462 IPicture_Release((IPicture*)newPict);
2468 /***********************************************************************
2469 * OleLoadPicture (OLEAUT32.418)
2471 HRESULT WINAPI OleLoadPicture( LPSTREAM lpstream, LONG lSize, BOOL fRunmode,
2472 REFIID riid, LPVOID *ppvObj )
2478 TRACE("(%p,%d,%d,%s,%p), partially implemented.\n",
2479 lpstream, lSize, fRunmode, debugstr_guid(riid), ppvObj);
2481 hr = OleCreatePictureIndirect(NULL,riid,!fRunmode,(LPVOID*)&newpic);
2484 hr = IPicture_QueryInterface(newpic,&IID_IPersistStream, (LPVOID*)&ps);
2486 FIXME("Could not get IPersistStream iface from Ole Picture?\n");
2487 IPicture_Release(newpic);
2491 IPersistStream_Load(ps,lpstream);
2492 IPersistStream_Release(ps);
2493 hr = IPicture_QueryInterface(newpic,riid,ppvObj);
2495 FIXME("Failed to get interface %s from IPicture.\n",debugstr_guid(riid));
2496 IPicture_Release(newpic);
2500 /***********************************************************************
2501 * OleLoadPictureEx (OLEAUT32.401)
2503 HRESULT WINAPI OleLoadPictureEx( LPSTREAM lpstream, LONG lSize, BOOL fRunmode,
2504 REFIID riid, DWORD xsiz, DWORD ysiz, DWORD flags, LPVOID *ppvObj )
2510 FIXME("(%p,%d,%d,%s,x=%d,y=%d,f=%x,%p), partially implemented.\n",
2511 lpstream, lSize, fRunmode, debugstr_guid(riid), xsiz, ysiz, flags, ppvObj);
2513 hr = OleCreatePictureIndirect(NULL,riid,!fRunmode,(LPVOID*)&newpic);
2516 hr = IPicture_QueryInterface(newpic,&IID_IPersistStream, (LPVOID*)&ps);
2518 FIXME("Could not get IPersistStream iface from Ole Picture?\n");
2519 IPicture_Release(newpic);
2523 IPersistStream_Load(ps,lpstream);
2524 IPersistStream_Release(ps);
2525 hr = IPicture_QueryInterface(newpic,riid,ppvObj);
2527 FIXME("Failed to get interface %s from IPicture.\n",debugstr_guid(riid));
2528 IPicture_Release(newpic);
2532 /***********************************************************************
2533 * OleLoadPicturePath (OLEAUT32.424)
2535 HRESULT WINAPI OleLoadPicturePath( LPOLESTR szURLorPath, LPUNKNOWN punkCaller,
2536 DWORD dwReserved, OLE_COLOR clrReserved, REFIID riid,
2539 static const WCHAR file[] = { 'f','i','l','e',':','/','/',0 };
2543 HGLOBAL hGlobal = NULL;
2544 DWORD dwBytesRead = 0;
2547 IPersistStream *pStream;
2550 TRACE("(%s,%p,%d,%08x,%s,%p): stub\n",
2551 debugstr_w(szURLorPath), punkCaller, dwReserved, clrReserved,
2552 debugstr_guid(riid), ppvRet);
2554 if (!ppvRet) return E_POINTER;
2556 if (strncmpW(szURLorPath, file, 7) == 0) {
2559 hFile = CreateFileW(szURLorPath, GENERIC_READ, 0, NULL, OPEN_EXISTING,
2561 if (hFile == INVALID_HANDLE_VALUE)
2562 return E_UNEXPECTED;
2564 dwFileSize = GetFileSize(hFile, NULL);
2565 if (dwFileSize != INVALID_FILE_SIZE )
2567 hGlobal = GlobalAlloc(GMEM_FIXED,dwFileSize);
2570 bRead = ReadFile(hFile, hGlobal, dwFileSize, &dwBytesRead, NULL);
2573 GlobalFree(hGlobal);
2581 return E_UNEXPECTED;
2583 hRes = CreateStreamOnHGlobal(hGlobal, TRUE, &stream);
2586 GlobalFree(hGlobal);
2593 hRes = CreateBindCtx(0, &pbc);
2594 if (SUCCEEDED(hRes))
2596 hRes = CreateURLMoniker(NULL, szURLorPath, &pmnk);
2597 if (SUCCEEDED(hRes))
2599 hRes = IMoniker_BindToStorage(pmnk, pbc, NULL, &IID_IStream, (LPVOID*)&stream);
2600 IMoniker_Release(pmnk);
2602 IBindCtx_Release(pbc);
2608 hRes = CoCreateInstance(&CLSID_StdPicture, punkCaller, CLSCTX_INPROC_SERVER,
2609 &IID_IPicture, (LPVOID*)&ipicture);
2611 IStream_Release(stream);
2615 hRes = IPicture_QueryInterface(ipicture, &IID_IPersistStream, (LPVOID*)&pStream);
2617 IStream_Release(stream);
2618 IPicture_Release(ipicture);
2622 hRes = IPersistStream_Load(pStream, stream);
2623 IPersistStream_Release(pStream);
2624 IStream_Release(stream);
2627 IPicture_Release(ipicture);
2631 hRes = IPicture_QueryInterface(ipicture,riid,ppvRet);
2633 FIXME("Failed to get interface %s from IPicture.\n",debugstr_guid(riid));
2635 IPicture_Release(ipicture);
2639 /*******************************************************************************
2640 * StdPic ClassFactory
2644 /* IUnknown fields */
2645 const IClassFactoryVtbl *lpVtbl;
2647 } IClassFactoryImpl;
2649 static HRESULT WINAPI
2650 SPCF_QueryInterface(LPCLASSFACTORY iface,REFIID riid,LPVOID *ppobj) {
2651 IClassFactoryImpl *This = (IClassFactoryImpl *)iface;
2653 FIXME("(%p)->(%s,%p),stub!\n",This,debugstr_guid(riid),ppobj);
2654 return E_NOINTERFACE;
2658 SPCF_AddRef(LPCLASSFACTORY iface) {
2659 IClassFactoryImpl *This = (IClassFactoryImpl *)iface;
2660 return InterlockedIncrement(&This->ref);
2663 static ULONG WINAPI SPCF_Release(LPCLASSFACTORY iface) {
2664 IClassFactoryImpl *This = (IClassFactoryImpl *)iface;
2665 /* static class, won't be freed */
2666 return InterlockedDecrement(&This->ref);
2669 static HRESULT WINAPI SPCF_CreateInstance(
2670 LPCLASSFACTORY iface,LPUNKNOWN pOuter,REFIID riid,LPVOID *ppobj
2672 /* Creates an uninitialized picture */
2673 return OleCreatePictureIndirect(NULL,riid,TRUE,ppobj);
2677 static HRESULT WINAPI SPCF_LockServer(LPCLASSFACTORY iface,BOOL dolock) {
2678 IClassFactoryImpl *This = (IClassFactoryImpl *)iface;
2679 FIXME("(%p)->(%d),stub!\n",This,dolock);
2683 static const IClassFactoryVtbl SPCF_Vtbl = {
2684 SPCF_QueryInterface,
2687 SPCF_CreateInstance,
2690 static IClassFactoryImpl STDPIC_CF = {&SPCF_Vtbl, 1 };
2692 void _get_STDPIC_CF(LPVOID *ppv) { *ppv = (LPVOID)&STDPIC_CF; }