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, although 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"
49 /* This is a hack, so jpeglib.h does not redefine INT32 and the like*/
51 #define UINT8 JPEG_UINT8
52 #define UINT16 JPEG_UINT16
53 #define boolean jpeg_boolean
64 /* Must be before wine includes, the header has things conflicting with
68 #define NONAMELESSUNION
69 #define NONAMELESSSTRUCT
81 #include "wine/debug.h"
82 #include "wine/unicode.h"
84 #include "wine/wingdi16.h"
88 WINE_DEFAULT_DEBUG_CHANNEL(ole
);
92 /* Header for Aldus Placable Metafiles - a standard metafile follows */
93 typedef struct _APM_HEADER
115 } CURSORICONFILEDIRENTRY
;
122 CURSORICONFILEDIRENTRY idEntries
[1];
127 /*************************************************************************
128 * Declaration of implementation class
131 typedef struct OLEPictureImpl
{
134 * IPicture handles IUnknown
137 const IPictureVtbl
*lpVtbl
;
138 const IDispatchVtbl
*lpvtblIDispatch
;
139 const IPersistStreamVtbl
*lpvtblIPersistStream
;
140 const IConnectionPointContainerVtbl
*lpvtblIConnectionPointContainer
;
142 /* Object reference count */
145 /* We own the object and must destroy it ourselves */
148 /* Picture description */
151 /* These are the pixel size of a bitmap */
155 /* And these are the size of the picture converted into HIMETRIC units */
156 OLE_XSIZE_HIMETRIC himetricWidth
;
157 OLE_YSIZE_HIMETRIC himetricHeight
;
159 IConnectionPoint
*pCP
;
164 /* Bitmap transparency mask */
172 BOOL bIsDirty
; /* Set to TRUE if picture has changed */
173 unsigned int loadtime_magic
; /* If a length header was found, saves value */
174 unsigned int loadtime_format
; /* for PICTYPE_BITMAP only, keeps track of image format (GIF/BMP/JPEG) */
178 * Macros to retrieve pointer to IUnknown (IPicture) from the other VTables.
181 static inline OLEPictureImpl
*impl_from_IDispatch( IDispatch
*iface
)
183 return (OLEPictureImpl
*)((char*)iface
- FIELD_OFFSET(OLEPictureImpl
, lpvtblIDispatch
));
186 static inline OLEPictureImpl
*impl_from_IPersistStream( IPersistStream
*iface
)
188 return (OLEPictureImpl
*)((char*)iface
- FIELD_OFFSET(OLEPictureImpl
, lpvtblIPersistStream
));
191 static inline OLEPictureImpl
*impl_from_IConnectionPointContainer( IConnectionPointContainer
*iface
)
193 return (OLEPictureImpl
*)((char*)iface
- FIELD_OFFSET(OLEPictureImpl
, lpvtblIConnectionPointContainer
));
197 * Predeclare VTables. They get initialized at the end.
199 static const IPictureVtbl OLEPictureImpl_VTable
;
200 static const IDispatchVtbl OLEPictureImpl_IDispatch_VTable
;
201 static const IPersistStreamVtbl OLEPictureImpl_IPersistStream_VTable
;
202 static const IConnectionPointContainerVtbl OLEPictureImpl_IConnectionPointContainer_VTable
;
204 /***********************************************************************
205 * Implementation of the OLEPictureImpl class.
208 static void OLEPictureImpl_SetBitmap(OLEPictureImpl
*This
) {
212 TRACE("bitmap handle %p\n", This
->desc
.u
.bmp
.hbitmap
);
213 if(GetObjectA(This
->desc
.u
.bmp
.hbitmap
, sizeof(bm
), &bm
) != sizeof(bm
)) {
214 ERR("GetObject fails\n");
217 This
->origWidth
= bm
.bmWidth
;
218 This
->origHeight
= bm
.bmHeight
;
219 /* The width and height are stored in HIMETRIC units (0.01 mm),
220 so we take our pixel width divide by pixels per inch and
221 multiply by 25.4 * 100 */
222 /* Should we use GetBitmapDimension if available? */
223 hdcRef
= CreateCompatibleDC(0);
224 This
->himetricWidth
=(bm
.bmWidth
*2540)/GetDeviceCaps(hdcRef
, LOGPIXELSX
);
225 This
->himetricHeight
=(bm
.bmHeight
*2540)/GetDeviceCaps(hdcRef
, LOGPIXELSY
);
229 static void OLEPictureImpl_SetIcon(OLEPictureImpl
* This
)
233 TRACE("icon handle %p\n", This
->desc
.u
.icon
.hicon
);
234 if (GetIconInfo(This
->desc
.u
.icon
.hicon
, &infoIcon
)) {
238 TRACE("bitmap handle for icon is %p\n", infoIcon
.hbmColor
);
239 if(GetObjectA(infoIcon
.hbmColor
? infoIcon
.hbmColor
: infoIcon
.hbmMask
, sizeof(bm
), &bm
) != sizeof(bm
)) {
240 ERR("GetObject fails on icon bitmap\n");
244 This
->origWidth
= bm
.bmWidth
;
245 This
->origHeight
= infoIcon
.hbmColor
? bm
.bmHeight
: bm
.bmHeight
/ 2;
246 /* see comment on HIMETRIC on OLEPictureImpl_SetBitmap() */
248 This
->himetricWidth
= (This
->origWidth
*2540)/GetDeviceCaps(hdcRef
, LOGPIXELSX
);
249 This
->himetricHeight
= (This
->origHeight
*2540)/GetDeviceCaps(hdcRef
, LOGPIXELSY
);
250 ReleaseDC(0, hdcRef
);
252 DeleteObject(infoIcon
.hbmMask
);
253 if (infoIcon
.hbmColor
) DeleteObject(infoIcon
.hbmColor
);
255 ERR("GetIconInfo() fails on icon %p\n", This
->desc
.u
.icon
.hicon
);
259 /************************************************************************
260 * OLEPictureImpl_Construct
262 * This method will construct a new instance of the OLEPictureImpl
265 * The caller of this method must release the object when it's
268 static OLEPictureImpl
* OLEPictureImpl_Construct(LPPICTDESC pictDesc
, BOOL fOwn
)
270 OLEPictureImpl
* newObject
= 0;
273 TRACE("(%p) type = %d\n", pictDesc
, pictDesc
->picType
);
276 * Allocate space for the object.
278 newObject
= HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY
, sizeof(OLEPictureImpl
));
284 * Initialize the virtual function table.
286 newObject
->lpVtbl
= &OLEPictureImpl_VTable
;
287 newObject
->lpvtblIDispatch
= &OLEPictureImpl_IDispatch_VTable
;
288 newObject
->lpvtblIPersistStream
= &OLEPictureImpl_IPersistStream_VTable
;
289 newObject
->lpvtblIConnectionPointContainer
= &OLEPictureImpl_IConnectionPointContainer_VTable
;
291 newObject
->pCP
= NULL
;
292 CreateConnectionPoint((IUnknown
*)newObject
,&IID_IPropertyNotifySink
,&newObject
->pCP
);
295 HeapFree(GetProcessHeap(), 0, newObject
);
300 * Start with one reference count. The caller of this function
301 * must release the interface pointer when it is done.
304 newObject
->hDCCur
= 0;
306 newObject
->fOwn
= fOwn
;
308 /* dunno about original value */
309 newObject
->keepOrigFormat
= TRUE
;
311 newObject
->hbmMask
= NULL
;
312 newObject
->hbmXor
= NULL
;
313 newObject
->loadtime_magic
= 0xdeadbeef;
314 newObject
->loadtime_format
= 0;
315 newObject
->bIsDirty
= FALSE
;
318 newObject
->desc
= *pictDesc
;
320 switch(pictDesc
->picType
) {
322 OLEPictureImpl_SetBitmap(newObject
);
325 case PICTYPE_METAFILE
:
326 TRACE("metafile handle %p\n", pictDesc
->u
.wmf
.hmeta
);
327 newObject
->himetricWidth
= pictDesc
->u
.wmf
.xExt
;
328 newObject
->himetricHeight
= pictDesc
->u
.wmf
.yExt
;
332 /* not sure what to do here */
333 newObject
->himetricWidth
= newObject
->himetricHeight
= 0;
337 OLEPictureImpl_SetIcon(newObject
);
339 case PICTYPE_ENHMETAFILE
:
341 FIXME("Unsupported type %d\n", pictDesc
->picType
);
342 newObject
->himetricWidth
= newObject
->himetricHeight
= 0;
346 newObject
->desc
.picType
= PICTYPE_UNINITIALIZED
;
349 TRACE("returning %p\n", newObject
);
353 /************************************************************************
354 * OLEPictureImpl_Destroy
356 * This method is called by the Release method when the reference
357 * count goes down to 0. It will free all resources used by
359 static void OLEPictureImpl_Destroy(OLEPictureImpl
* Obj
)
361 TRACE("(%p)\n", Obj
);
364 IConnectionPoint_Release(Obj
->pCP
);
366 if(Obj
->fOwn
) { /* We need to destroy the picture */
367 switch(Obj
->desc
.picType
) {
369 DeleteObject(Obj
->desc
.u
.bmp
.hbitmap
);
370 if (Obj
->hbmMask
!= NULL
) DeleteObject(Obj
->hbmMask
);
371 if (Obj
->hbmXor
!= NULL
) DeleteObject(Obj
->hbmXor
);
373 case PICTYPE_METAFILE
:
374 DeleteMetaFile(Obj
->desc
.u
.wmf
.hmeta
);
377 DestroyIcon(Obj
->desc
.u
.icon
.hicon
);
379 case PICTYPE_ENHMETAFILE
:
380 DeleteEnhMetaFile(Obj
->desc
.u
.emf
.hemf
);
383 case PICTYPE_UNINITIALIZED
:
387 FIXME("Unsupported type %d - unable to delete\n", Obj
->desc
.picType
);
391 HeapFree(GetProcessHeap(), 0, Obj
->data
);
392 HeapFree(GetProcessHeap(), 0, Obj
);
396 /************************************************************************
397 * OLEPictureImpl_AddRef (IUnknown)
399 * See Windows documentation for more details on IUnknown methods.
401 static ULONG WINAPI
OLEPictureImpl_AddRef(
404 OLEPictureImpl
*This
= (OLEPictureImpl
*)iface
;
405 ULONG refCount
= InterlockedIncrement(&This
->ref
);
407 TRACE("(%p)->(ref before=%d)\n", This
, refCount
- 1);
412 /************************************************************************
413 * OLEPictureImpl_Release (IUnknown)
415 * See Windows documentation for more details on IUnknown methods.
417 static ULONG WINAPI
OLEPictureImpl_Release(
420 OLEPictureImpl
*This
= (OLEPictureImpl
*)iface
;
421 ULONG refCount
= InterlockedDecrement(&This
->ref
);
423 TRACE("(%p)->(ref before=%d)\n", This
, refCount
+ 1);
426 * If the reference count goes down to 0, perform suicide.
428 if (!refCount
) OLEPictureImpl_Destroy(This
);
433 /************************************************************************
434 * OLEPictureImpl_QueryInterface (IUnknown)
436 * See Windows documentation for more details on IUnknown methods.
438 static HRESULT WINAPI
OLEPictureImpl_QueryInterface(
443 OLEPictureImpl
*This
= (OLEPictureImpl
*)iface
;
444 TRACE("(%p)->(%s, %p)\n", This
, debugstr_guid(riid
), ppvObject
);
447 * Perform a sanity check on the parameters.
449 if ( (This
==0) || (ppvObject
==0) )
453 * Initialize the return parameter.
458 * Compare the riid with the interface IDs implemented by this object.
460 if (IsEqualIID(&IID_IUnknown
, riid
) || IsEqualIID(&IID_IPicture
, riid
))
461 *ppvObject
= (IPicture
*)This
;
462 else if (IsEqualIID(&IID_IDispatch
, riid
))
463 *ppvObject
= (IDispatch
*)&(This
->lpvtblIDispatch
);
464 else if (IsEqualIID(&IID_IPictureDisp
, riid
))
465 *ppvObject
= (IDispatch
*)&(This
->lpvtblIDispatch
);
466 else if (IsEqualIID(&IID_IPersist
, riid
) || IsEqualIID(&IID_IPersistStream
, riid
))
467 *ppvObject
= (IPersistStream
*)&(This
->lpvtblIPersistStream
);
468 else if (IsEqualIID(&IID_IConnectionPointContainer
, riid
))
469 *ppvObject
= (IConnectionPointContainer
*)&(This
->lpvtblIConnectionPointContainer
);
472 * Check that we obtained an interface.
476 FIXME("() : asking for un supported interface %s\n",debugstr_guid(riid
));
477 return E_NOINTERFACE
;
481 * Query Interface always increases the reference count by one when it is
484 OLEPictureImpl_AddRef((IPicture
*)This
);
489 /***********************************************************************
490 * OLEPicture_SendNotify (internal)
492 * Sends notification messages of changed properties to any interested
495 static void OLEPicture_SendNotify(OLEPictureImpl
* this, DISPID dispID
)
497 IEnumConnections
*pEnum
;
500 if (IConnectionPoint_EnumConnections(this->pCP
, &pEnum
))
502 while(IEnumConnections_Next(pEnum
, 1, &CD
, NULL
) == S_OK
) {
503 IPropertyNotifySink
*sink
;
505 IUnknown_QueryInterface(CD
.pUnk
, &IID_IPropertyNotifySink
, (LPVOID
)&sink
);
506 IPropertyNotifySink_OnChanged(sink
, dispID
);
507 IPropertyNotifySink_Release(sink
);
508 IUnknown_Release(CD
.pUnk
);
510 IEnumConnections_Release(pEnum
);
514 /************************************************************************
515 * OLEPictureImpl_get_Handle
517 static HRESULT WINAPI
OLEPictureImpl_get_Handle(IPicture
*iface
,
520 OLEPictureImpl
*This
= (OLEPictureImpl
*)iface
;
521 TRACE("(%p)->(%p)\n", This
, phandle
);
522 switch(This
->desc
.picType
) {
524 case PICTYPE_UNINITIALIZED
:
528 *phandle
= (OLE_HANDLE
)This
->desc
.u
.bmp
.hbitmap
;
530 case PICTYPE_METAFILE
:
531 *phandle
= (OLE_HANDLE
)This
->desc
.u
.wmf
.hmeta
;
534 *phandle
= (OLE_HANDLE
)This
->desc
.u
.icon
.hicon
;
536 case PICTYPE_ENHMETAFILE
:
537 *phandle
= (OLE_HANDLE
)This
->desc
.u
.emf
.hemf
;
540 FIXME("Unimplemented type %d\n", This
->desc
.picType
);
543 TRACE("returning handle %08x\n", *phandle
);
547 /************************************************************************
548 * OLEPictureImpl_get_hPal
550 static HRESULT WINAPI
OLEPictureImpl_get_hPal(IPicture
*iface
,
553 OLEPictureImpl
*This
= (OLEPictureImpl
*)iface
;
555 TRACE("(%p)->(%p)\n", This
, phandle
);
560 switch (This
->desc
.picType
) {
561 case (UINT
)PICTYPE_UNINITIALIZED
:
567 *phandle
= (OLE_HANDLE
)This
->desc
.u
.bmp
.hpal
;
570 case PICTYPE_METAFILE
:
574 case PICTYPE_ENHMETAFILE
:
576 FIXME("unimplemented for type %d. Returning 0 palette.\n",
582 TRACE("returning 0x%08x, palette handle %08x\n", hres
, *phandle
);
586 /************************************************************************
587 * OLEPictureImpl_get_Type
589 static HRESULT WINAPI
OLEPictureImpl_get_Type(IPicture
*iface
,
592 OLEPictureImpl
*This
= (OLEPictureImpl
*)iface
;
593 TRACE("(%p)->(%p): type is %d\n", This
, ptype
, This
->desc
.picType
);
594 *ptype
= This
->desc
.picType
;
598 /************************************************************************
599 * OLEPictureImpl_get_Width
601 static HRESULT WINAPI
OLEPictureImpl_get_Width(IPicture
*iface
,
602 OLE_XSIZE_HIMETRIC
*pwidth
)
604 OLEPictureImpl
*This
= (OLEPictureImpl
*)iface
;
605 TRACE("(%p)->(%p): width is %d\n", This
, pwidth
, This
->himetricWidth
);
606 *pwidth
= This
->himetricWidth
;
610 /************************************************************************
611 * OLEPictureImpl_get_Height
613 static HRESULT WINAPI
OLEPictureImpl_get_Height(IPicture
*iface
,
614 OLE_YSIZE_HIMETRIC
*pheight
)
616 OLEPictureImpl
*This
= (OLEPictureImpl
*)iface
;
617 TRACE("(%p)->(%p): height is %d\n", This
, pheight
, This
->himetricHeight
);
618 *pheight
= This
->himetricHeight
;
622 /************************************************************************
623 * OLEPictureImpl_Render
625 static HRESULT WINAPI
OLEPictureImpl_Render(IPicture
*iface
, HDC hdc
,
626 LONG x
, LONG y
, LONG cx
, LONG cy
,
627 OLE_XPOS_HIMETRIC xSrc
,
628 OLE_YPOS_HIMETRIC ySrc
,
629 OLE_XSIZE_HIMETRIC cxSrc
,
630 OLE_YSIZE_HIMETRIC cySrc
,
633 OLEPictureImpl
*This
= (OLEPictureImpl
*)iface
;
634 TRACE("(%p)->(%p, (%d,%d), (%d,%d) <- (%d,%d), (%d,%d), %p)\n",
635 This
, hdc
, x
, y
, cx
, cy
, xSrc
, ySrc
, cxSrc
, cySrc
, prcWBounds
);
637 TRACE("prcWBounds (%d,%d) - (%d,%d)\n", prcWBounds
->left
, prcWBounds
->top
,
638 prcWBounds
->right
, prcWBounds
->bottom
);
641 * While the documentation suggests this to be here (or after rendering?)
642 * it does cause an endless recursion in my sample app. -MM 20010804
643 OLEPicture_SendNotify(This,DISPID_PICT_RENDER);
646 switch(This
->desc
.picType
) {
652 /* Set a mapping mode that maps bitmap pixels into HIMETRIC units.
653 NB y-axis gets flipped */
655 hdcBmp
= CreateCompatibleDC(0);
656 SetMapMode(hdcBmp
, MM_ANISOTROPIC
);
657 SetWindowOrgEx(hdcBmp
, 0, 0, NULL
);
658 SetWindowExtEx(hdcBmp
, This
->himetricWidth
, This
->himetricHeight
, NULL
);
659 SetViewportOrgEx(hdcBmp
, 0, This
->origHeight
, NULL
);
660 SetViewportExtEx(hdcBmp
, This
->origWidth
, -This
->origHeight
, NULL
);
663 HDC hdcMask
= CreateCompatibleDC(0);
664 HBITMAP hOldbm
= SelectObject(hdcMask
, This
->hbmMask
);
666 hbmpOld
= SelectObject(hdcBmp
, This
->hbmXor
);
668 SetMapMode(hdcMask
, MM_ANISOTROPIC
);
669 SetWindowOrgEx(hdcMask
, 0, 0, NULL
);
670 SetWindowExtEx(hdcMask
, This
->himetricWidth
, This
->himetricHeight
, NULL
);
671 SetViewportOrgEx(hdcMask
, 0, This
->origHeight
, NULL
);
672 SetViewportExtEx(hdcMask
, This
->origWidth
, -This
->origHeight
, NULL
);
674 SetBkColor(hdc
, RGB(255, 255, 255));
675 SetTextColor(hdc
, RGB(0, 0, 0));
676 StretchBlt(hdc
, x
, y
, cx
, cy
, hdcMask
, xSrc
, ySrc
, cxSrc
, cySrc
, SRCAND
);
677 StretchBlt(hdc
, x
, y
, cx
, cy
, hdcBmp
, xSrc
, ySrc
, cxSrc
, cySrc
, SRCPAINT
);
679 SelectObject(hdcMask
, hOldbm
);
682 hbmpOld
= SelectObject(hdcBmp
, This
->desc
.u
.bmp
.hbitmap
);
683 StretchBlt(hdc
, x
, y
, cx
, cy
, hdcBmp
, xSrc
, ySrc
, cxSrc
, cySrc
, SRCCOPY
);
686 SelectObject(hdcBmp
, hbmpOld
);
691 FIXME("Not quite correct implementation of rendering icons...\n");
692 DrawIcon(hdc
,x
,y
,This
->desc
.u
.icon
.hicon
);
695 case PICTYPE_METAFILE
:
701 oldmode
= SetMapMode(hdc
, MM_ANISOTROPIC
);
702 SetViewportOrgEx(hdc
, x
, y
, &prevOrg
);
703 SetViewportExtEx(hdc
, cx
, cy
, &prevExt
);
705 if (!PlayMetaFile(hdc
, This
->desc
.u
.wmf
.hmeta
))
706 ERR("PlayMetaFile failed!\n");
708 SetViewportExtEx(hdc
, prevExt
.cx
, prevExt
.cy
, NULL
);
709 SetViewportOrgEx(hdc
, prevOrg
.x
, prevOrg
.y
, NULL
);
710 SetMapMode(hdc
, oldmode
);
714 case PICTYPE_ENHMETAFILE
:
716 RECT rc
= { x
, y
, x
+ cx
, y
+ cy
};
717 PlayEnhMetaFile(hdc
, This
->desc
.u
.emf
.hemf
, &rc
);
722 FIXME("type %d not implemented\n", This
->desc
.picType
);
728 /************************************************************************
729 * OLEPictureImpl_set_hPal
731 static HRESULT WINAPI
OLEPictureImpl_set_hPal(IPicture
*iface
,
734 OLEPictureImpl
*This
= (OLEPictureImpl
*)iface
;
735 FIXME("(%p)->(%08x): stub\n", This
, hpal
);
736 OLEPicture_SendNotify(This
,DISPID_PICT_HPAL
);
740 /************************************************************************
741 * OLEPictureImpl_get_CurDC
743 static HRESULT WINAPI
OLEPictureImpl_get_CurDC(IPicture
*iface
,
746 OLEPictureImpl
*This
= (OLEPictureImpl
*)iface
;
747 TRACE("(%p), returning %p\n", This
, This
->hDCCur
);
748 if (phdc
) *phdc
= This
->hDCCur
;
752 /************************************************************************
753 * OLEPictureImpl_SelectPicture
755 static HRESULT WINAPI
OLEPictureImpl_SelectPicture(IPicture
*iface
,
758 OLE_HANDLE
*phbmpOut
)
760 OLEPictureImpl
*This
= (OLEPictureImpl
*)iface
;
761 TRACE("(%p)->(%p, %p, %p)\n", This
, hdcIn
, phdcOut
, phbmpOut
);
762 if (This
->desc
.picType
== PICTYPE_BITMAP
) {
763 SelectObject(hdcIn
,This
->desc
.u
.bmp
.hbitmap
);
766 *phdcOut
= This
->hDCCur
;
767 This
->hDCCur
= hdcIn
;
769 *phbmpOut
= (OLE_HANDLE
)This
->desc
.u
.bmp
.hbitmap
;
772 FIXME("Don't know how to select picture type %d\n",This
->desc
.picType
);
777 /************************************************************************
778 * OLEPictureImpl_get_KeepOriginalFormat
780 static HRESULT WINAPI
OLEPictureImpl_get_KeepOriginalFormat(IPicture
*iface
,
783 OLEPictureImpl
*This
= (OLEPictureImpl
*)iface
;
784 TRACE("(%p)->(%p)\n", This
, pfKeep
);
787 *pfKeep
= This
->keepOrigFormat
;
791 /************************************************************************
792 * OLEPictureImpl_put_KeepOriginalFormat
794 static HRESULT WINAPI
OLEPictureImpl_put_KeepOriginalFormat(IPicture
*iface
,
797 OLEPictureImpl
*This
= (OLEPictureImpl
*)iface
;
798 TRACE("(%p)->(%d)\n", This
, keep
);
799 This
->keepOrigFormat
= keep
;
800 /* FIXME: what DISPID notification here? */
804 /************************************************************************
805 * OLEPictureImpl_PictureChanged
807 static HRESULT WINAPI
OLEPictureImpl_PictureChanged(IPicture
*iface
)
809 OLEPictureImpl
*This
= (OLEPictureImpl
*)iface
;
810 TRACE("(%p)->()\n", This
);
811 OLEPicture_SendNotify(This
,DISPID_PICT_HANDLE
);
812 This
->bIsDirty
= TRUE
;
816 /************************************************************************
817 * OLEPictureImpl_SaveAsFile
819 static HRESULT WINAPI
OLEPictureImpl_SaveAsFile(IPicture
*iface
,
824 OLEPictureImpl
*This
= (OLEPictureImpl
*)iface
;
825 FIXME("(%p)->(%p, %d, %p), hacked stub.\n", This
, pstream
, SaveMemCopy
, pcbSize
);
826 return IStream_Write(pstream
,This
->data
,This
->datalen
,(ULONG
*)pcbSize
);
829 /************************************************************************
830 * OLEPictureImpl_get_Attributes
832 static HRESULT WINAPI
OLEPictureImpl_get_Attributes(IPicture
*iface
,
835 OLEPictureImpl
*This
= (OLEPictureImpl
*)iface
;
836 TRACE("(%p)->(%p).\n", This
, pdwAttr
);
838 switch (This
->desc
.picType
) {
839 case PICTYPE_BITMAP
: if (This
->hbmMask
) *pdwAttr
= PICTURE_TRANSPARENT
; break; /* not 'truly' scalable, see MSDN. */
840 case PICTYPE_ICON
: *pdwAttr
= PICTURE_TRANSPARENT
;break;
841 case PICTYPE_ENHMETAFILE
: /* fall through */
842 case PICTYPE_METAFILE
: *pdwAttr
= PICTURE_TRANSPARENT
|PICTURE_SCALABLE
;break;
843 default:FIXME("Unknown pictype %d\n",This
->desc
.picType
);break;
849 /************************************************************************
850 * IConnectionPointContainer
852 static HRESULT WINAPI
OLEPictureImpl_IConnectionPointContainer_QueryInterface(
853 IConnectionPointContainer
* iface
,
857 OLEPictureImpl
*This
= impl_from_IConnectionPointContainer(iface
);
859 return IPicture_QueryInterface((IPicture
*)This
,riid
,ppvoid
);
862 static ULONG WINAPI
OLEPictureImpl_IConnectionPointContainer_AddRef(
863 IConnectionPointContainer
* iface
)
865 OLEPictureImpl
*This
= impl_from_IConnectionPointContainer(iface
);
867 return IPicture_AddRef((IPicture
*)This
);
870 static ULONG WINAPI
OLEPictureImpl_IConnectionPointContainer_Release(
871 IConnectionPointContainer
* iface
)
873 OLEPictureImpl
*This
= impl_from_IConnectionPointContainer(iface
);
875 return IPicture_Release((IPicture
*)This
);
878 static HRESULT WINAPI
OLEPictureImpl_EnumConnectionPoints(
879 IConnectionPointContainer
* iface
,
880 IEnumConnectionPoints
** ppEnum
)
882 OLEPictureImpl
*This
= impl_from_IConnectionPointContainer(iface
);
884 FIXME("(%p,%p), stub!\n",This
,ppEnum
);
888 static HRESULT WINAPI
OLEPictureImpl_FindConnectionPoint(
889 IConnectionPointContainer
* iface
,
891 IConnectionPoint
**ppCP
)
893 OLEPictureImpl
*This
= impl_from_IConnectionPointContainer(iface
);
894 TRACE("(%p,%s,%p)\n",This
,debugstr_guid(riid
),ppCP
);
898 if (IsEqualGUID(riid
,&IID_IPropertyNotifySink
))
899 return IConnectionPoint_QueryInterface(This
->pCP
,&IID_IConnectionPoint
,(LPVOID
)ppCP
);
900 FIXME("no connection point for %s\n",debugstr_guid(riid
));
901 return CONNECT_E_NOCONNECTION
;
905 /************************************************************************
909 /************************************************************************
910 * OLEPictureImpl_IPersistStream_QueryInterface (IUnknown)
912 * See Windows documentation for more details on IUnknown methods.
914 static HRESULT WINAPI
OLEPictureImpl_IPersistStream_QueryInterface(
915 IPersistStream
* iface
,
919 OLEPictureImpl
*This
= impl_from_IPersistStream(iface
);
921 return IPicture_QueryInterface((IPicture
*)This
, riid
, ppvoid
);
924 /************************************************************************
925 * OLEPictureImpl_IPersistStream_AddRef (IUnknown)
927 * See Windows documentation for more details on IUnknown methods.
929 static ULONG WINAPI
OLEPictureImpl_IPersistStream_AddRef(
930 IPersistStream
* iface
)
932 OLEPictureImpl
*This
= impl_from_IPersistStream(iface
);
934 return IPicture_AddRef((IPicture
*)This
);
937 /************************************************************************
938 * OLEPictureImpl_IPersistStream_Release (IUnknown)
940 * See Windows documentation for more details on IUnknown methods.
942 static ULONG WINAPI
OLEPictureImpl_IPersistStream_Release(
943 IPersistStream
* iface
)
945 OLEPictureImpl
*This
= impl_from_IPersistStream(iface
);
947 return IPicture_Release((IPicture
*)This
);
950 /************************************************************************
951 * OLEPictureImpl_IPersistStream_GetClassID
953 static HRESULT WINAPI
OLEPictureImpl_GetClassID(
954 IPersistStream
* iface
,CLSID
* pClassID
)
956 TRACE("(%p)\n", pClassID
);
957 *pClassID
= CLSID_StdPicture
;
961 /************************************************************************
962 * OLEPictureImpl_IPersistStream_IsDirty
964 static HRESULT WINAPI
OLEPictureImpl_IsDirty(
965 IPersistStream
* iface
)
967 OLEPictureImpl
*This
= impl_from_IPersistStream(iface
);
968 FIXME("(%p),stub!\n",This
);
972 #ifdef SONAME_LIBJPEG
974 static void *libjpeg_handle
;
975 #define MAKE_FUNCPTR(f) static typeof(f) * p##f
976 MAKE_FUNCPTR(jpeg_std_error
);
977 MAKE_FUNCPTR(jpeg_CreateDecompress
);
978 MAKE_FUNCPTR(jpeg_read_header
);
979 MAKE_FUNCPTR(jpeg_start_decompress
);
980 MAKE_FUNCPTR(jpeg_read_scanlines
);
981 MAKE_FUNCPTR(jpeg_finish_decompress
);
982 MAKE_FUNCPTR(jpeg_destroy_decompress
);
985 static void *load_libjpeg(void)
987 if((libjpeg_handle
= wine_dlopen(SONAME_LIBJPEG
, RTLD_NOW
, NULL
, 0)) != NULL
) {
989 #define LOAD_FUNCPTR(f) \
990 if((p##f = wine_dlsym(libjpeg_handle, #f, NULL, 0)) == NULL) { \
991 libjpeg_handle = NULL; \
995 LOAD_FUNCPTR(jpeg_std_error
);
996 LOAD_FUNCPTR(jpeg_CreateDecompress
);
997 LOAD_FUNCPTR(jpeg_read_header
);
998 LOAD_FUNCPTR(jpeg_start_decompress
);
999 LOAD_FUNCPTR(jpeg_read_scanlines
);
1000 LOAD_FUNCPTR(jpeg_finish_decompress
);
1001 LOAD_FUNCPTR(jpeg_destroy_decompress
);
1004 return libjpeg_handle
;
1007 /* for the jpeg decompressor source manager. */
1008 static void _jpeg_init_source(j_decompress_ptr cinfo
) { }
1010 static jpeg_boolean
_jpeg_fill_input_buffer(j_decompress_ptr cinfo
) {
1011 ERR("(), should not get here.\n");
1015 static void _jpeg_skip_input_data(j_decompress_ptr cinfo
,long num_bytes
) {
1016 TRACE("Skipping %ld bytes...\n", num_bytes
);
1017 cinfo
->src
->next_input_byte
+= num_bytes
;
1018 cinfo
->src
->bytes_in_buffer
-= num_bytes
;
1021 static jpeg_boolean
_jpeg_resync_to_restart(j_decompress_ptr cinfo
, int desired
) {
1022 ERR("(desired=%d), should not get here.\n",desired
);
1025 static void _jpeg_term_source(j_decompress_ptr cinfo
) { }
1026 #endif /* SONAME_LIBJPEG */
1029 unsigned char *data
;
1030 unsigned int curoff
;
1034 static int _gif_inputfunc(GifFileType
*gif
, GifByteType
*data
, int len
) {
1035 struct gifdata
*gd
= (struct gifdata
*)gif
->UserData
;
1037 if (len
+gd
->curoff
> gd
->len
) {
1038 FIXME("Trying to read %d bytes, but only %d available.\n",len
, gd
->len
-gd
->curoff
);
1039 len
= gd
->len
- gd
->curoff
;
1041 memcpy(data
, gd
->data
+gd
->curoff
, len
);
1047 static HRESULT
OLEPictureImpl_LoadGif(OLEPictureImpl
*This
, BYTE
*xbuf
, ULONG xread
)
1058 int transparent
= -1;
1065 gif
= DGifOpen((void*)&gd
, _gif_inputfunc
);
1066 ret
= DGifSlurp(gif
);
1067 if (ret
== GIF_ERROR
) {
1068 FIXME("Failed reading GIF using libgif.\n");
1071 TRACE("screen height %d, width %d\n", gif
->SWidth
, gif
->SHeight
);
1072 TRACE("color res %d, backgcolor %d\n", gif
->SColorResolution
, gif
->SBackGroundColor
);
1073 TRACE("imgcnt %d\n", gif
->ImageCount
);
1074 if (gif
->ImageCount
<1) {
1075 FIXME("GIF stream does not have images inside?\n");
1078 TRACE("curimage: %d x %d, on %dx%d, interlace %d\n",
1079 gif
->Image
.Width
, gif
->Image
.Height
,
1080 gif
->Image
.Left
, gif
->Image
.Top
,
1081 gif
->Image
.Interlace
1084 padding
= (gif
->SWidth
+3) & ~3;
1085 si
= gif
->SavedImages
+0;
1086 gid
= &(si
->ImageDesc
);
1088 if (!cm
) cm
= gif
->SColorMap
;
1089 bmi
= HeapAlloc(GetProcessHeap(),0,sizeof(BITMAPINFOHEADER
)+(cm
->ColorCount
)*sizeof(RGBQUAD
));
1090 bytes
= HeapAlloc(GetProcessHeap(),0,padding
*gif
->SHeight
);
1092 /* look for the transparent color extension */
1093 for (i
= 0; i
< si
->ExtensionBlockCount
; ++i
) {
1094 eb
= si
->ExtensionBlocks
+ i
;
1095 if (eb
->Function
== 0xF9 && eb
->ByteCount
== 4) {
1096 if ((eb
->Bytes
[0] & 1) == 1) {
1097 transparent
= (unsigned char)eb
->Bytes
[3];
1102 for (i
= 0; i
< cm
->ColorCount
; i
++) {
1103 bmi
->bmiColors
[i
].rgbRed
= cm
->Colors
[i
].Red
;
1104 bmi
->bmiColors
[i
].rgbGreen
= cm
->Colors
[i
].Green
;
1105 bmi
->bmiColors
[i
].rgbBlue
= cm
->Colors
[i
].Blue
;
1106 if (i
== transparent
) {
1107 This
->rgbTrans
= RGB(bmi
->bmiColors
[i
].rgbRed
,
1108 bmi
->bmiColors
[i
].rgbGreen
,
1109 bmi
->bmiColors
[i
].rgbBlue
);
1113 /* Map to in picture coordinates */
1114 for (i
= 0, j
= 0; i
< gid
->Height
; i
++) {
1115 if (gif
->Image
.Interlace
) {
1117 bytes
+ (gid
->Top
+ j
) * padding
+ gid
->Left
,
1118 si
->RasterBits
+ i
* gid
->Width
,
1121 /* Lower bits of interlaced counter encode current interlace */
1122 if (j
& 1) j
+= 2; /* Currently filling odd rows */
1123 else if (j
& 2) j
+= 4; /* Currently filling even rows not multiples of 4 */
1124 else j
+= 8; /* Currently filling every 8th row or 4th row in-between */
1126 if (j
>= gid
->Height
&& i
< gid
->Height
&& (j
& 1) == 0) {
1127 /* End of current interlace, go to next interlace */
1128 if (j
& 2) j
= 1; /* Next iteration fills odd rows */
1129 else if (j
& 4) j
= 2; /* Next iteration fills even rows not mod 4 and not mod 8 */
1130 else j
= 4; /* Next iteration fills rows in-between rows mod 6 */
1134 bytes
+ (gid
->Top
+ i
) * padding
+ gid
->Left
,
1135 si
->RasterBits
+ i
* gid
->Width
,
1140 bmi
->bmiHeader
.biSize
= sizeof(BITMAPINFOHEADER
);
1141 bmi
->bmiHeader
.biWidth
= gif
->SWidth
;
1142 bmi
->bmiHeader
.biHeight
= -gif
->SHeight
;
1143 bmi
->bmiHeader
.biPlanes
= 1;
1144 bmi
->bmiHeader
.biBitCount
= 8;
1145 bmi
->bmiHeader
.biCompression
= BI_RGB
;
1146 bmi
->bmiHeader
.biSizeImage
= padding
*gif
->SHeight
;
1147 bmi
->bmiHeader
.biXPelsPerMeter
= 0;
1148 bmi
->bmiHeader
.biYPelsPerMeter
= 0;
1149 bmi
->bmiHeader
.biClrUsed
= cm
->ColorCount
;
1150 bmi
->bmiHeader
.biClrImportant
= 0;
1153 This
->desc
.u
.bmp
.hbitmap
=CreateDIBitmap(
1162 if (transparent
> -1) {
1163 /* Create the Mask */
1164 HDC hdc
= CreateCompatibleDC(0);
1165 HDC hdcMask
= CreateCompatibleDC(0);
1167 HBITMAP hOldbitmapmask
;
1169 unsigned int monopadding
= (((unsigned)(gif
->SWidth
+ 31)) >> 5) << 2;
1172 This
->hbmXor
= CreateDIBitmap(
1181 bmi
->bmiColors
[0].rgbRed
= 0;
1182 bmi
->bmiColors
[0].rgbGreen
= 0;
1183 bmi
->bmiColors
[0].rgbBlue
= 0;
1184 bmi
->bmiColors
[1].rgbRed
= 255;
1185 bmi
->bmiColors
[1].rgbGreen
= 255;
1186 bmi
->bmiColors
[1].rgbBlue
= 255;
1188 bmi
->bmiHeader
.biBitCount
= 1;
1189 bmi
->bmiHeader
.biSizeImage
= monopadding
*gif
->SHeight
;
1190 bmi
->bmiHeader
.biClrUsed
= 2;
1192 for (i
= 0; i
< gif
->SHeight
; i
++) {
1193 unsigned char * colorPointer
= bytes
+ padding
* i
;
1194 unsigned char * monoPointer
= bytes
+ monopadding
* i
;
1195 for (j
= 0; j
< gif
->SWidth
; j
++) {
1196 unsigned char pixel
= colorPointer
[j
];
1197 if ((j
& 7) == 0) monoPointer
[j
>> 3] = 0;
1198 if (pixel
== (transparent
& 0x000000FFU
)) monoPointer
[j
>> 3] |= 1 << (7 - (j
& 7));
1202 hTempMask
= CreateDIBitmap(
1212 bmi
->bmiHeader
.biHeight
= -bmi
->bmiHeader
.biHeight
;
1213 This
->hbmMask
= CreateBitmap(bmi
->bmiHeader
.biWidth
, bmi
->bmiHeader
.biHeight
, 1, 1, NULL
);
1214 hOldbitmap
= SelectObject(hdc
, hTempMask
);
1215 hOldbitmapmask
= SelectObject(hdcMask
, This
->hbmMask
);
1217 SetBkColor(hdc
, RGB(255, 255, 255));
1218 BitBlt(hdcMask
, 0, 0, bmi
->bmiHeader
.biWidth
, bmi
->bmiHeader
.biHeight
, hdc
, 0, 0, SRCCOPY
);
1220 /* We no longer need the original bitmap, so we apply the first
1221 transformation with the mask to speed up the rendering */
1222 SelectObject(hdc
, This
->hbmXor
);
1223 SetBkColor(hdc
, RGB(0,0,0));
1224 SetTextColor(hdc
, RGB(255,255,255));
1225 BitBlt(hdc
, 0, 0, bmi
->bmiHeader
.biWidth
, bmi
->bmiHeader
.biHeight
,
1226 hdcMask
, 0, 0, SRCAND
);
1228 SelectObject(hdc
, hOldbitmap
);
1229 SelectObject(hdcMask
, hOldbitmapmask
);
1232 DeleteObject(hTempMask
);
1236 This
->desc
.picType
= PICTYPE_BITMAP
;
1237 OLEPictureImpl_SetBitmap(This
);
1239 HeapFree(GetProcessHeap(),0,bmi
);
1240 HeapFree(GetProcessHeap(),0,bytes
);
1244 static HRESULT
OLEPictureImpl_LoadJpeg(OLEPictureImpl
*This
, BYTE
*xbuf
, ULONG xread
)
1246 #ifdef SONAME_LIBJPEG
1247 struct jpeg_decompress_struct jd
;
1248 struct jpeg_error_mgr jerr
;
1251 JSAMPROW samprow
,oldsamprow
;
1252 BITMAPINFOHEADER bmi
;
1255 struct jpeg_source_mgr xjsm
;
1259 if(!libjpeg_handle
) {
1260 if(!load_libjpeg()) {
1261 FIXME("Failed reading JPEG because unable to find %s\n", SONAME_LIBJPEG
);
1266 /* This is basically so we can use in-memory data for jpeg decompression.
1267 * We need to have all the functions.
1269 xjsm
.next_input_byte
= xbuf
;
1270 xjsm
.bytes_in_buffer
= xread
;
1271 xjsm
.init_source
= _jpeg_init_source
;
1272 xjsm
.fill_input_buffer
= _jpeg_fill_input_buffer
;
1273 xjsm
.skip_input_data
= _jpeg_skip_input_data
;
1274 xjsm
.resync_to_restart
= _jpeg_resync_to_restart
;
1275 xjsm
.term_source
= _jpeg_term_source
;
1277 jd
.err
= pjpeg_std_error(&jerr
);
1278 /* jpeg_create_decompress is a macro that expands to jpeg_CreateDecompress - see jpeglib.h
1279 * jpeg_create_decompress(&jd); */
1280 pjpeg_CreateDecompress(&jd
, JPEG_LIB_VERSION
, sizeof(struct jpeg_decompress_struct
));
1282 ret
=pjpeg_read_header(&jd
,TRUE
);
1283 jd
.out_color_space
= JCS_RGB
;
1284 pjpeg_start_decompress(&jd
);
1285 if (ret
!= JPEG_HEADER_OK
) {
1286 ERR("Jpeg image in stream has bad format, read header returned %d.\n",ret
);
1287 HeapFree(GetProcessHeap(),0,xbuf
);
1291 bits
= HeapAlloc(GetProcessHeap(),HEAP_ZERO_MEMORY
,
1292 (jd
.output_height
+1) * ((jd
.output_width
*jd
.output_components
+ 3) & ~3) );
1293 samprow
=HeapAlloc(GetProcessHeap(),HEAP_ZERO_MEMORY
,jd
.output_width
*jd
.output_components
);
1296 oldsamprow
= samprow
;
1297 while ( jd
.output_scanline
<jd
.output_height
) {
1298 x
= pjpeg_read_scanlines(&jd
,&samprow
,1);
1300 FIXME("failed to read current scanline?\n");
1303 /* We have to convert from RGB to BGR, see MSDN/ BITMAPINFOHEADER */
1304 for(i
=0;i
<jd
.output_width
;i
++,samprow
+=jd
.output_components
) {
1305 *(bits
++) = *(samprow
+2);
1306 *(bits
++) = *(samprow
+1);
1307 *(bits
++) = *(samprow
);
1309 bits
= (LPBYTE
)(((UINT_PTR
)bits
+ 3) & ~3);
1310 samprow
= oldsamprow
;
1314 bmi
.biSize
= sizeof(bmi
);
1315 bmi
.biWidth
= jd
.output_width
;
1316 bmi
.biHeight
= -jd
.output_height
;
1318 bmi
.biBitCount
= jd
.output_components
<<3;
1319 bmi
.biCompression
= BI_RGB
;
1320 bmi
.biSizeImage
= jd
.output_height
*jd
.output_width
*jd
.output_components
;
1321 bmi
.biXPelsPerMeter
= 0;
1322 bmi
.biYPelsPerMeter
= 0;
1324 bmi
.biClrImportant
= 0;
1326 HeapFree(GetProcessHeap(),0,samprow
);
1327 pjpeg_finish_decompress(&jd
);
1328 pjpeg_destroy_decompress(&jd
);
1330 This
->desc
.u
.bmp
.hbitmap
=CreateDIBitmap(
1339 This
->desc
.picType
= PICTYPE_BITMAP
;
1340 OLEPictureImpl_SetBitmap(This
);
1341 HeapFree(GetProcessHeap(),0,bits
);
1344 ERR("Trying to load JPEG picture, but JPEG supported not compiled in.\n");
1349 static HRESULT
OLEPictureImpl_LoadDIB(OLEPictureImpl
*This
, BYTE
*xbuf
, ULONG xread
)
1351 BITMAPFILEHEADER
*bfh
= (BITMAPFILEHEADER
*)xbuf
;
1352 BITMAPINFO
*bi
= (BITMAPINFO
*)(bfh
+1);
1355 /* Does not matter whether this is a coreheader or not, we only use
1356 * components which are in both
1359 This
->desc
.u
.bmp
.hbitmap
= CreateDIBitmap(
1363 xbuf
+bfh
->bfOffBits
,
1368 if (This
->desc
.u
.bmp
.hbitmap
== 0)
1370 This
->desc
.picType
= PICTYPE_BITMAP
;
1371 OLEPictureImpl_SetBitmap(This
);
1375 /*****************************************************
1376 * start of PNG-specific code
1377 * currently only supports colortype PNG_COLOR_TYPE_RGB
1379 #ifdef SONAME_LIBPNG
1386 static void png_stream_read_data(png_structp png_ptr
, png_bytep data
,
1389 png_io
* io_ptr
= png_ptr
->io_ptr
;
1391 if(length
+ io_ptr
->position
> io_ptr
->size
){
1392 length
= io_ptr
->size
- io_ptr
->position
;
1395 memcpy(data
, io_ptr
->buff
+ io_ptr
->position
, length
);
1397 io_ptr
->position
+= length
;
1400 static void *libpng_handle
;
1401 #define MAKE_FUNCPTR(f) static typeof(f) * p##f
1402 MAKE_FUNCPTR(png_create_read_struct
);
1403 MAKE_FUNCPTR(png_create_info_struct
);
1404 MAKE_FUNCPTR(png_set_read_fn
);
1405 MAKE_FUNCPTR(png_read_info
);
1406 MAKE_FUNCPTR(png_read_image
);
1407 MAKE_FUNCPTR(png_get_rowbytes
);
1408 MAKE_FUNCPTR(png_set_bgr
);
1409 MAKE_FUNCPTR(png_destroy_read_struct
);
1410 MAKE_FUNCPTR(png_set_palette_to_rgb
);
1411 MAKE_FUNCPTR(png_read_update_info
);
1412 MAKE_FUNCPTR(png_get_tRNS
);
1413 MAKE_FUNCPTR(png_get_PLTE
);
1414 MAKE_FUNCPTR(png_set_expand
);
1417 static void *load_libpng(void)
1419 if((libpng_handle
= wine_dlopen(SONAME_LIBPNG
, RTLD_NOW
, NULL
, 0)) != NULL
) {
1421 #define LOAD_FUNCPTR(f) \
1422 if((p##f = wine_dlsym(libpng_handle, #f, NULL, 0)) == NULL) { \
1423 libpng_handle = NULL; \
1426 LOAD_FUNCPTR(png_create_read_struct
);
1427 LOAD_FUNCPTR(png_create_info_struct
);
1428 LOAD_FUNCPTR(png_set_read_fn
);
1429 LOAD_FUNCPTR(png_read_info
);
1430 LOAD_FUNCPTR(png_read_image
);
1431 LOAD_FUNCPTR(png_get_rowbytes
);
1432 LOAD_FUNCPTR(png_set_bgr
);
1433 LOAD_FUNCPTR(png_destroy_read_struct
);
1434 LOAD_FUNCPTR(png_set_palette_to_rgb
);
1435 LOAD_FUNCPTR(png_read_update_info
);
1436 LOAD_FUNCPTR(png_get_tRNS
);
1437 LOAD_FUNCPTR(png_get_PLTE
);
1438 LOAD_FUNCPTR(png_set_expand
);
1442 return libpng_handle
;
1444 #endif /* SONAME_LIBPNG */
1446 static HRESULT
OLEPictureImpl_LoadPNG(OLEPictureImpl
*This
, BYTE
*xbuf
, ULONG xread
)
1448 #ifdef SONAME_LIBPNG
1450 png_structp png_ptr
= NULL
;
1451 png_infop info_ptr
= NULL
;
1452 INT row
, rowsize
, height
, width
, num_trans
, i
, j
;
1453 png_bytep
* row_pointers
= NULL
;
1454 png_bytep pngdata
= NULL
;
1455 BITMAPINFOHEADER bmi
;
1456 HDC hdcref
= NULL
, hdcXor
, hdcMask
;
1460 png_color_16p trans_values
;
1461 COLORREF white
= RGB(255, 255, 255), black
= RGB(0, 0, 0);
1462 HBITMAP hbmoldXor
, hbmoldMask
, temp
;
1464 if(!libpng_handle
) {
1465 if(!load_libpng()) {
1466 ERR("Failed reading PNG because unable to find %s\n",SONAME_LIBPNG
);
1475 png_ptr
= ppng_create_read_struct(PNG_LIBPNG_VER_STRING
,
1478 if(setjmp(png_jmpbuf(png_ptr
))){
1479 TRACE("Error in libpng\n");
1484 info_ptr
= ppng_create_info_struct(png_ptr
);
1485 ppng_set_read_fn(png_ptr
, &io
, png_stream_read_data
);
1486 ppng_read_info(png_ptr
, info_ptr
);
1488 if(!(png_ptr
->color_type
== PNG_COLOR_TYPE_RGB
||
1489 png_ptr
->color_type
== PNG_COLOR_TYPE_PALETTE
||
1490 png_ptr
->color_type
== PNG_COLOR_TYPE_RGB_ALPHA
)){
1491 FIXME("Unsupported .PNG type: %d\n", png_ptr
->color_type
);
1496 transparency
= (ppng_get_tRNS(png_ptr
, info_ptr
, &trans
, &num_trans
, &trans_values
)
1499 /* sets format from anything to RGBA */
1500 ppng_set_expand(png_ptr
);
1501 /* sets format to BGRA */
1502 ppng_set_bgr(png_ptr
);
1504 ppng_read_update_info(png_ptr
, info_ptr
);
1506 rowsize
= ppng_get_rowbytes(png_ptr
, info_ptr
);
1507 /* align rowsize to 4-byte boundary */
1508 rowsize
= (rowsize
+ 3) & ~3;
1509 height
= info_ptr
->height
;
1510 width
= info_ptr
->width
;
1512 pngdata
= HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY
, height
* rowsize
);
1513 row_pointers
= HeapAlloc(GetProcessHeap(), 0, height
* (sizeof(VOID
*)));
1515 if(!pngdata
|| !row_pointers
){
1520 for (row
= 0; row
< height
; row
++){
1521 row_pointers
[row
] = pngdata
+ row
* rowsize
;
1524 ppng_read_image(png_ptr
, row_pointers
);
1526 bmi
.biSize
= sizeof(bmi
);
1527 bmi
.biWidth
= width
;
1528 bmi
.biHeight
= -height
;
1530 bmi
.biBitCount
= info_ptr
->channels
* 8;
1531 bmi
.biCompression
= BI_RGB
;
1532 bmi
.biSizeImage
= height
* rowsize
;
1533 bmi
.biXPelsPerMeter
= 0;
1534 bmi
.biYPelsPerMeter
= 0;
1536 bmi
.biClrImportant
= 0;
1539 This
->desc
.u
.bmp
.hbitmap
= CreateDIBitmap(
1548 /* only fully-transparent alpha is handled */
1549 if((info_ptr
->channels
!= 4) || !transparency
){
1550 ReleaseDC(0, hdcref
);
1554 This
->hbmXor
= CreateDIBitmap(
1563 /* set transparent pixels to black, all others to white */
1564 for(i
= 0; i
< height
; i
++){
1565 for(j
= 3; j
< rowsize
; j
+= 4){
1566 if(row_pointers
[i
][j
] == 0)
1567 *((DWORD
*)(&row_pointers
[i
][j
- 3])) = black
;
1569 *((DWORD
*)(&row_pointers
[i
][j
- 3])) = white
;
1573 temp
= CreateDIBitmap(
1582 ReleaseDC(0, hdcref
);
1584 This
->hbmMask
= CreateBitmap(width
,-height
,1,1,NULL
);
1585 hdcXor
= CreateCompatibleDC(NULL
);
1586 hdcMask
= CreateCompatibleDC(NULL
);
1588 hbmoldXor
= SelectObject(hdcXor
,temp
);
1589 hbmoldMask
= SelectObject(hdcMask
,This
->hbmMask
);
1590 SetBkColor(hdcXor
,black
);
1591 BitBlt(hdcMask
,0,0,width
,height
,hdcXor
,0,0,SRCCOPY
);
1593 SelectObject(hdcXor
,This
->hbmXor
);
1596 SetTextColor(hdcXor
,white
);
1597 SetBkColor(hdcXor
,black
);
1598 BitBlt(hdcXor
,0,0,width
,height
,hdcMask
,0,0,SRCAND
);
1600 SelectObject(hdcXor
,hbmoldXor
);
1601 SelectObject(hdcMask
,hbmoldMask
);
1607 This
->desc
.picType
= PICTYPE_BITMAP
;
1608 OLEPictureImpl_SetBitmap(This
);
1613 ppng_destroy_read_struct(&png_ptr
,
1614 (info_ptr
? &info_ptr
: (png_infopp
) NULL
),
1616 HeapFree(GetProcessHeap(), 0, row_pointers
);
1617 HeapFree(GetProcessHeap(), 0, pngdata
);
1619 #else /* SONAME_LIBPNG */
1620 ERR("Trying to load PNG picture, but PNG supported not compiled in.\n");
1625 /*****************************************************
1626 * start of Icon-specific code
1629 static HRESULT
OLEPictureImpl_LoadIcon(OLEPictureImpl
*This
, BYTE
*xbuf
, ULONG xread
)
1632 CURSORICONFILEDIR
*cifd
= (CURSORICONFILEDIR
*)xbuf
;
1637 FIXME("icon.idReserved=%d\n",cifd->idReserved);
1638 FIXME("icon.idType=%d\n",cifd->idType);
1639 FIXME("icon.idCount=%d\n",cifd->idCount);
1641 for (i=0;i<cifd->idCount;i++) {
1642 FIXME("[%d] width %d\n",i,cifd->idEntries[i].bWidth);
1643 FIXME("[%d] height %d\n",i,cifd->idEntries[i].bHeight);
1644 FIXME("[%d] bColorCount %d\n",i,cifd->idEntries[i].bColorCount);
1645 FIXME("[%d] bReserved %d\n",i,cifd->idEntries[i].bReserved);
1646 FIXME("[%d] xHotspot %d\n",i,cifd->idEntries[i].xHotspot);
1647 FIXME("[%d] yHotspot %d\n",i,cifd->idEntries[i].yHotspot);
1648 FIXME("[%d] dwDIBSize %d\n",i,cifd->idEntries[i].dwDIBSize);
1649 FIXME("[%d] dwDIBOffset %d\n",i,cifd->idEntries[i].dwDIBOffset);
1653 /* If we have more than one icon, try to find the best.
1654 * this currently means '32 pixel wide'.
1656 if (cifd
->idCount
!=1) {
1657 for (i
=0;i
<cifd
->idCount
;i
++) {
1658 if (cifd
->idEntries
[i
].bWidth
== 32)
1661 if (i
==cifd
->idCount
) i
=0;
1664 hicon
= CreateIconFromResourceEx(
1665 xbuf
+cifd
->idEntries
[i
].dwDIBOffset
,
1666 cifd
->idEntries
[i
].dwDIBSize
,
1669 cifd
->idEntries
[i
].bWidth
,
1670 cifd
->idEntries
[i
].bHeight
,
1674 FIXME("CreateIcon failed.\n");
1677 This
->desc
.picType
= PICTYPE_ICON
;
1678 This
->desc
.u
.icon
.hicon
= hicon
;
1679 This
->origWidth
= cifd
->idEntries
[i
].bWidth
;
1680 This
->origHeight
= cifd
->idEntries
[i
].bHeight
;
1681 hdcRef
= CreateCompatibleDC(0);
1682 This
->himetricWidth
=(cifd
->idEntries
[i
].bWidth
*2540)/GetDeviceCaps(hdcRef
, LOGPIXELSX
);
1683 This
->himetricHeight
=(cifd
->idEntries
[i
].bHeight
*2540)/GetDeviceCaps(hdcRef
, LOGPIXELSY
);
1689 static HRESULT
OLEPictureImpl_LoadMetafile(OLEPictureImpl
*This
,
1690 const BYTE
*data
, ULONG size
)
1695 /* SetMetaFileBitsEx performs data check on its own */
1696 hmf
= SetMetaFileBitsEx(size
, data
);
1699 This
->desc
.picType
= PICTYPE_METAFILE
;
1700 This
->desc
.u
.wmf
.hmeta
= hmf
;
1701 This
->desc
.u
.wmf
.xExt
= 0;
1702 This
->desc
.u
.wmf
.yExt
= 0;
1704 This
->origWidth
= 0;
1705 This
->origHeight
= 0;
1706 This
->himetricWidth
= 0;
1707 This
->himetricHeight
= 0;
1712 hemf
= SetEnhMetaFileBits(size
, data
);
1713 if (!hemf
) return E_FAIL
;
1715 This
->desc
.picType
= PICTYPE_ENHMETAFILE
;
1716 This
->desc
.u
.emf
.hemf
= hemf
;
1718 This
->origWidth
= 0;
1719 This
->origHeight
= 0;
1720 This
->himetricWidth
= 0;
1721 This
->himetricHeight
= 0;
1726 static HRESULT
OLEPictureImpl_LoadAPM(OLEPictureImpl
*This
,
1727 const BYTE
*data
, ULONG size
)
1729 APM_HEADER
*header
= (APM_HEADER
*)data
;
1732 if (size
< sizeof(APM_HEADER
))
1734 if (header
->key
!= 0x9ac6cdd7)
1737 if ((hr
= OLEPictureImpl_LoadMetafile(This
, data
+ sizeof(APM_HEADER
), size
- sizeof(*header
))) != S_OK
)
1740 This
->himetricWidth
= MulDiv((INT
)header
->right
- header
->left
, 2540, header
->inch
);
1741 This
->himetricHeight
= MulDiv((INT
)header
->bottom
- header
->top
, 2540, header
->inch
);
1745 /************************************************************************
1746 * BITMAP FORMAT FLAGS -
1747 * Flags that differentiate between different types of bitmaps.
1750 #define BITMAP_FORMAT_BMP 0x4d42 /* "BM" */
1751 #define BITMAP_FORMAT_JPEG 0xd8ff
1752 #define BITMAP_FORMAT_GIF 0x4947
1753 #define BITMAP_FORMAT_PNG 0x5089
1754 #define BITMAP_FORMAT_APM 0xcdd7
1756 /************************************************************************
1757 * OLEPictureImpl_IPersistStream_Load (IUnknown)
1759 * Loads the binary data from the IStream. Starts at current position.
1760 * There appears to be an 2 DWORD header:
1764 * Currently implemented: BITMAP, ICON, JPEG, GIF, WMF, EMF
1766 static HRESULT WINAPI
OLEPictureImpl_Load(IPersistStream
* iface
,IStream
*pStm
) {
1767 HRESULT hr
= E_FAIL
;
1768 BOOL headerisdata
= FALSE
;
1769 BOOL statfailed
= FALSE
;
1770 ULONG xread
, toread
;
1776 OLEPictureImpl
*This
= impl_from_IPersistStream(iface
);
1778 TRACE("(%p,%p)\n",This
,pStm
);
1780 /****************************************************************************************
1781 * Part 1: Load the data
1783 /* Sometimes we have a header, sometimes we don't. Apply some guesses to find
1784 * out whether we do.
1786 * UPDATE: the IStream can be mapped to a plain file instead of a stream in a
1787 * compound file. This may explain most, if not all, of the cases of "no
1788 * header", and the header validation should take this into account.
1789 * At least in Visual Basic 6, resource streams, valid headers are
1790 * header[0] == "lt\0\0",
1791 * header[1] == length_of_stream.
1793 * Also handle streams where we do not have a working "Stat" method by
1794 * reading all data until the end of the stream.
1796 hr
=IStream_Stat(pStm
,&statstg
,STATFLAG_NONAME
);
1798 TRACE("stat failed with hres %x, proceeding to read all data.\n",hr
);
1800 /* we will read at least 8 byte ... just right below */
1801 statstg
.cbSize
.QuadPart
= 8;
1806 headerisdata
= FALSE
;
1808 hr
=IStream_Read(pStm
,header
,8,&xread
);
1809 if (hr
|| xread
!=8) {
1810 FIXME("Failure while reading picture header (hr is %x, nread is %d).\n",hr
,xread
);
1813 headerread
+= xread
;
1816 if (!memcmp(&(header
[0]),"lt\0\0", 4) && (statfailed
|| (header
[1] + headerread
<= statstg
.cbSize
.QuadPart
))) {
1817 if (toread
!= 0 && toread
!= header
[1])
1818 FIXME("varying lengths of image data (prev=%u curr=%u), only last one will be used\n",
1821 if (toread
== 0) break;
1823 if (!memcmp(&(header
[0]), "GIF8", 4) || /* GIF header */
1824 !memcmp(&(header
[0]), "BM", 2) || /* BMP header */
1825 !memcmp(&(header
[0]), "\xff\xd8", 2) || /* JPEG header */
1826 (header
[0] == EMR_HEADER
) || /* EMF header */
1827 (header
[1] > statstg
.cbSize
.QuadPart
)|| /* invalid size */
1829 ) {/* Found start of bitmap data */
1830 headerisdata
= TRUE
;
1832 toread
= statstg
.cbSize
.QuadPart
-8;
1836 FIXME("Unknown stream header magic: %08x\n", header
[0]);
1840 } while (!headerisdata
);
1842 if (statfailed
) { /* we don't know the size ... read all we get */
1844 int origsize
= sizeinc
;
1847 TRACE("Reading all data from stream.\n");
1848 xbuf
= HeapAlloc (GetProcessHeap(), HEAP_ZERO_MEMORY
, origsize
);
1850 memcpy (xbuf
, header
, 8);
1852 while (xread
< origsize
) {
1853 hr
= IStream_Read(pStm
,xbuf
+xread
,origsize
-xread
,&nread
);
1858 if (!nread
|| hr
) /* done, or error */
1860 if (xread
== origsize
) {
1861 origsize
+= sizeinc
;
1862 sizeinc
= 2*sizeinc
; /* exponential increase */
1863 xbuf
= HeapReAlloc (GetProcessHeap(), HEAP_ZERO_MEMORY
, xbuf
, origsize
);
1867 TRACE("hr in no-stat loader case is %08x\n", hr
);
1868 TRACE("loaded %d bytes.\n", xread
);
1869 This
->datalen
= xread
;
1872 This
->datalen
= toread
+(headerisdata
?8:0);
1873 xbuf
= This
->data
= HeapAlloc (GetProcessHeap(), HEAP_ZERO_MEMORY
, This
->datalen
);
1875 return E_OUTOFMEMORY
;
1878 memcpy (xbuf
, header
, 8);
1880 while (xread
< This
->datalen
) {
1882 hr
= IStream_Read(pStm
,xbuf
+xread
,This
->datalen
-xread
,&nread
);
1887 if (xread
!= This
->datalen
)
1888 FIXME("Could only read %d of %d bytes out of stream?\n",xread
,This
->datalen
);
1890 if (This
->datalen
== 0) { /* Marks the "NONE" picture */
1891 This
->desc
.picType
= PICTYPE_NONE
;
1896 /****************************************************************************************
1897 * Part 2: Process the loaded data
1900 magic
= xbuf
[0] + (xbuf
[1]<<8);
1901 This
->loadtime_format
= magic
;
1904 case BITMAP_FORMAT_GIF
: /* GIF */
1905 hr
= OLEPictureImpl_LoadGif(This
, xbuf
, xread
);
1907 case BITMAP_FORMAT_JPEG
: /* JPEG */
1908 hr
= OLEPictureImpl_LoadJpeg(This
, xbuf
, xread
);
1910 case BITMAP_FORMAT_BMP
: /* Bitmap */
1911 hr
= OLEPictureImpl_LoadDIB(This
, xbuf
, xread
);
1913 case BITMAP_FORMAT_PNG
: /* PNG */
1914 hr
= OLEPictureImpl_LoadPNG(This
, xbuf
, xread
);
1916 case BITMAP_FORMAT_APM
: /* APM */
1917 hr
= OLEPictureImpl_LoadAPM(This
, xbuf
, xread
);
1919 case 0x0000: { /* ICON , first word is dwReserved */
1920 hr
= OLEPictureImpl_LoadIcon(This
, xbuf
, xread
);
1927 /* let's see if it's a metafile */
1928 hr
= OLEPictureImpl_LoadMetafile(This
, xbuf
, xread
);
1929 if (hr
== S_OK
) break;
1931 FIXME("Unknown magic %04x, %d read bytes:\n",magic
,xread
);
1933 for (i
=0;i
<xread
+8;i
++) {
1934 if (i
<8) MESSAGE("%02x ",((unsigned char*)header
)[i
]);
1935 else MESSAGE("%02x ",xbuf
[i
-8]);
1936 if (i
% 10 == 9) MESSAGE("\n");
1942 This
->bIsDirty
= FALSE
;
1944 /* FIXME: this notify is not really documented */
1946 OLEPicture_SendNotify(This
,DISPID_PICT_TYPE
);
1950 static int serializeBMP(HBITMAP hBitmap
, void ** ppBuffer
, unsigned int * pLength
)
1954 BITMAPINFO
* pInfoBitmap
;
1955 int iNumPaletteEntries
;
1956 unsigned char * pPixelData
;
1957 BITMAPFILEHEADER
* pFileHeader
;
1958 BITMAPINFO
* pInfoHeader
;
1960 pInfoBitmap
= HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY
,
1961 sizeof(BITMAPINFOHEADER
) + 256 * sizeof(RGBQUAD
));
1963 /* Find out bitmap size and padded length */
1965 pInfoBitmap
->bmiHeader
.biSize
= sizeof(pInfoBitmap
->bmiHeader
);
1966 GetDIBits(hDC
, hBitmap
, 0, 0, NULL
, pInfoBitmap
, DIB_RGB_COLORS
);
1968 /* Fetch bitmap palette & pixel data */
1970 pPixelData
= HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY
, pInfoBitmap
->bmiHeader
.biSizeImage
);
1971 GetDIBits(hDC
, hBitmap
, 0, pInfoBitmap
->bmiHeader
.biHeight
, pPixelData
, pInfoBitmap
, DIB_RGB_COLORS
);
1973 /* Calculate the total length required for the BMP data */
1974 if (pInfoBitmap
->bmiHeader
.biClrUsed
!= 0) {
1975 iNumPaletteEntries
= pInfoBitmap
->bmiHeader
.biClrUsed
;
1976 if (iNumPaletteEntries
> 256) iNumPaletteEntries
= 256;
1978 if (pInfoBitmap
->bmiHeader
.biBitCount
<= 8)
1979 iNumPaletteEntries
= 1 << pInfoBitmap
->bmiHeader
.biBitCount
;
1981 iNumPaletteEntries
= 0;
1984 sizeof(BITMAPFILEHEADER
) +
1985 sizeof(BITMAPINFOHEADER
) +
1986 iNumPaletteEntries
* sizeof(RGBQUAD
) +
1987 pInfoBitmap
->bmiHeader
.biSizeImage
;
1988 *ppBuffer
= HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY
, *pLength
);
1990 /* Fill the BITMAPFILEHEADER */
1991 pFileHeader
= (BITMAPFILEHEADER
*)(*ppBuffer
);
1992 pFileHeader
->bfType
= BITMAP_FORMAT_BMP
;
1993 pFileHeader
->bfSize
= *pLength
;
1994 pFileHeader
->bfOffBits
=
1995 sizeof(BITMAPFILEHEADER
) +
1996 sizeof(BITMAPINFOHEADER
) +
1997 iNumPaletteEntries
* sizeof(RGBQUAD
);
1999 /* Fill the BITMAPINFOHEADER and the palette data */
2000 pInfoHeader
= (BITMAPINFO
*)((unsigned char *)(*ppBuffer
) + sizeof(BITMAPFILEHEADER
));
2001 memcpy(pInfoHeader
, pInfoBitmap
, sizeof(BITMAPINFOHEADER
) + iNumPaletteEntries
* sizeof(RGBQUAD
));
2003 (unsigned char *)(*ppBuffer
) +
2004 sizeof(BITMAPFILEHEADER
) +
2005 sizeof(BITMAPINFOHEADER
) +
2006 iNumPaletteEntries
* sizeof(RGBQUAD
),
2007 pPixelData
, pInfoBitmap
->bmiHeader
.biSizeImage
);
2010 HeapFree(GetProcessHeap(), 0, pPixelData
);
2011 HeapFree(GetProcessHeap(), 0, pInfoBitmap
);
2015 static int serializeIcon(HICON hIcon
, void ** ppBuffer
, unsigned int * pLength
)
2020 *ppBuffer
= NULL
; *pLength
= 0;
2021 if (GetIconInfo(hIcon
, &infoIcon
)) {
2023 BITMAPINFO
* pInfoBitmap
;
2024 unsigned char * pIconData
= NULL
;
2025 unsigned int iDataSize
= 0;
2027 pInfoBitmap
= HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY
, sizeof(BITMAPINFOHEADER
) + 256 * sizeof(RGBQUAD
));
2029 /* Find out icon size */
2031 pInfoBitmap
->bmiHeader
.biSize
= sizeof(pInfoBitmap
->bmiHeader
);
2032 GetDIBits(hDC
, infoIcon
.hbmColor
, 0, 0, NULL
, pInfoBitmap
, DIB_RGB_COLORS
);
2034 /* Auxiliary pointers */
2035 CURSORICONFILEDIR
* pIconDir
;
2036 CURSORICONFILEDIRENTRY
* pIconEntry
;
2037 BITMAPINFOHEADER
* pIconBitmapHeader
;
2038 unsigned int iOffsetPalette
;
2039 unsigned int iOffsetColorData
;
2040 unsigned int iOffsetMaskData
;
2042 unsigned int iLengthScanLineColor
;
2043 unsigned int iLengthScanLineMask
;
2044 unsigned int iNumEntriesPalette
;
2046 iLengthScanLineMask
= ((pInfoBitmap
->bmiHeader
.biWidth
+ 31) >> 5) << 2;
2047 iLengthScanLineColor
= ((pInfoBitmap
->bmiHeader
.biWidth
* pInfoBitmap
->bmiHeader
.biBitCount
+ 31) >> 5) << 2;
2049 FIXME("DEBUG: bitmap size is %d x %d\n",
2050 pInfoBitmap->bmiHeader.biWidth,
2051 pInfoBitmap->bmiHeader.biHeight);
2052 FIXME("DEBUG: bitmap bpp is %d\n",
2053 pInfoBitmap->bmiHeader.biBitCount);
2054 FIXME("DEBUG: bitmap nplanes is %d\n",
2055 pInfoBitmap->bmiHeader.biPlanes);
2056 FIXME("DEBUG: bitmap biSizeImage is %u\n",
2057 pInfoBitmap->bmiHeader.biSizeImage);
2059 /* Let's start with one CURSORICONFILEDIR and one CURSORICONFILEDIRENTRY */
2060 iDataSize
+= 3 * sizeof(WORD
) + sizeof(CURSORICONFILEDIRENTRY
) + sizeof(BITMAPINFOHEADER
);
2061 pIconData
= HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY
, iDataSize
);
2063 /* Fill out the CURSORICONFILEDIR */
2064 pIconDir
= (CURSORICONFILEDIR
*)pIconData
;
2065 pIconDir
->idType
= 1;
2066 pIconDir
->idCount
= 1;
2068 /* Fill out the CURSORICONFILEDIRENTRY */
2069 pIconEntry
= (CURSORICONFILEDIRENTRY
*)(pIconData
+ 3 * sizeof(WORD
));
2070 pIconEntry
->bWidth
= (unsigned char)pInfoBitmap
->bmiHeader
.biWidth
;
2071 pIconEntry
->bHeight
= (unsigned char)pInfoBitmap
->bmiHeader
.biHeight
;
2072 pIconEntry
->bColorCount
=
2073 (pInfoBitmap
->bmiHeader
.biBitCount
< 8)
2074 ? 1 << pInfoBitmap
->bmiHeader
.biBitCount
2076 pIconEntry
->xHotspot
= pInfoBitmap
->bmiHeader
.biPlanes
;
2077 pIconEntry
->yHotspot
= pInfoBitmap
->bmiHeader
.biBitCount
;
2078 pIconEntry
->dwDIBSize
= 0;
2079 pIconEntry
->dwDIBOffset
= 3 * sizeof(WORD
) + sizeof(CURSORICONFILEDIRENTRY
);
2081 /* Fill out the BITMAPINFOHEADER */
2082 pIconBitmapHeader
= (BITMAPINFOHEADER
*)(pIconData
+ 3 * sizeof(WORD
) + sizeof(CURSORICONFILEDIRENTRY
));
2083 *pIconBitmapHeader
= pInfoBitmap
->bmiHeader
;
2085 /* Find out whether a palette exists for the bitmap */
2086 if ( (pInfoBitmap
->bmiHeader
.biBitCount
== 16 && pInfoBitmap
->bmiHeader
.biCompression
== BI_RGB
)
2087 || (pInfoBitmap
->bmiHeader
.biBitCount
== 24)
2088 || (pInfoBitmap
->bmiHeader
.biBitCount
== 32 && pInfoBitmap
->bmiHeader
.biCompression
== BI_RGB
)) {
2089 iNumEntriesPalette
= pInfoBitmap
->bmiHeader
.biClrUsed
;
2090 if (iNumEntriesPalette
> 256) iNumEntriesPalette
= 256;
2091 } else if ((pInfoBitmap
->bmiHeader
.biBitCount
== 16 || pInfoBitmap
->bmiHeader
.biBitCount
== 32)
2092 && pInfoBitmap
->bmiHeader
.biCompression
== BI_BITFIELDS
) {
2093 iNumEntriesPalette
= 3;
2094 } else if (pInfoBitmap
->bmiHeader
.biBitCount
<= 8) {
2095 iNumEntriesPalette
= 1 << pInfoBitmap
->bmiHeader
.biBitCount
;
2097 iNumEntriesPalette
= 0;
2100 /* Add bitmap size and header size to icon data size. */
2101 iOffsetPalette
= iDataSize
;
2102 iDataSize
+= iNumEntriesPalette
* sizeof(DWORD
);
2103 iOffsetColorData
= iDataSize
;
2104 iDataSize
+= pIconBitmapHeader
->biSizeImage
;
2105 iOffsetMaskData
= iDataSize
;
2106 iDataSize
+= pIconBitmapHeader
->biHeight
* iLengthScanLineMask
;
2107 pIconBitmapHeader
->biSizeImage
+= pIconBitmapHeader
->biHeight
* iLengthScanLineMask
;
2108 pIconBitmapHeader
->biHeight
*= 2;
2109 pIconData
= HeapReAlloc(GetProcessHeap(), 0, pIconData
, iDataSize
);
2110 pIconEntry
= (CURSORICONFILEDIRENTRY
*)(pIconData
+ 3 * sizeof(WORD
));
2111 pIconBitmapHeader
= (BITMAPINFOHEADER
*)(pIconData
+ 3 * sizeof(WORD
) + sizeof(CURSORICONFILEDIRENTRY
));
2112 pIconEntry
->dwDIBSize
= iDataSize
- (3 * sizeof(WORD
) + sizeof(CURSORICONFILEDIRENTRY
));
2114 /* Get the actual bitmap data from the icon bitmap */
2115 GetDIBits(hDC
, infoIcon
.hbmColor
, 0, pInfoBitmap
->bmiHeader
.biHeight
,
2116 pIconData
+ iOffsetColorData
, pInfoBitmap
, DIB_RGB_COLORS
);
2117 if (iNumEntriesPalette
> 0) {
2118 memcpy(pIconData
+ iOffsetPalette
, pInfoBitmap
->bmiColors
,
2119 iNumEntriesPalette
* sizeof(RGBQUAD
));
2122 /* Reset all values so that GetDIBits call succeeds */
2123 memset(pIconData
+ iOffsetMaskData
, 0, iDataSize
- iOffsetMaskData
);
2124 memset(pInfoBitmap
, 0, sizeof(BITMAPINFOHEADER
) + 256 * sizeof(RGBQUAD
));
2125 pInfoBitmap
->bmiHeader
.biSize
= sizeof(pInfoBitmap
->bmiHeader
);
2127 if (!(GetDIBits(hDC, infoIcon.hbmMask, 0, 0, NULL, pInfoBitmap, DIB_RGB_COLORS)
2128 && GetDIBits(hDC, infoIcon.hbmMask, 0, pIconEntry->bHeight,
2129 pIconData + iOffsetMaskData, pInfoBitmap, DIB_RGB_COLORS))) {
2131 printf("ERROR: unable to get bitmap mask (error %u)\n",
2136 GetDIBits(hDC
, infoIcon
.hbmMask
, 0, 0, NULL
, pInfoBitmap
, DIB_RGB_COLORS
);
2137 GetDIBits(hDC
, infoIcon
.hbmMask
, 0, pIconEntry
->bHeight
, pIconData
+ iOffsetMaskData
, pInfoBitmap
, DIB_RGB_COLORS
);
2139 /* Write out everything produced so far to the stream */
2140 *ppBuffer
= pIconData
; *pLength
= iDataSize
;
2144 printf("ERROR: unable to get bitmap information via GetDIBits() (error %u)\n",
2149 Remarks (from MSDN entry on GetIconInfo):
2151 GetIconInfo creates bitmaps for the hbmMask and hbmColor
2152 members of ICONINFO. The calling application must manage
2153 these bitmaps and delete them when they are no longer
2156 if (hDC
) ReleaseDC(0, hDC
);
2157 DeleteObject(infoIcon
.hbmMask
);
2158 if (infoIcon
.hbmColor
) DeleteObject(infoIcon
.hbmColor
);
2159 HeapFree(GetProcessHeap(), 0, pInfoBitmap
);
2161 printf("ERROR: Unable to get icon information (error %u)\n",
2167 static HRESULT WINAPI
OLEPictureImpl_Save(
2168 IPersistStream
* iface
,IStream
*pStm
,BOOL fClearDirty
)
2170 HRESULT hResult
= E_NOTIMPL
;
2172 unsigned int iDataSize
;
2174 int iSerializeResult
= 0;
2175 OLEPictureImpl
*This
= impl_from_IPersistStream(iface
);
2177 TRACE("%p %p %d\n", This
, pStm
, fClearDirty
);
2179 switch (This
->desc
.picType
) {
2181 if (This
->bIsDirty
|| !This
->data
) {
2182 if (!serializeIcon(This
->desc
.u
.icon
.hicon
, &pIconData
, &iDataSize
)) {
2183 ERR("(%p,%p,%d), serializeIcon() failed\n", This
, pStm
, fClearDirty
);
2187 HeapFree(GetProcessHeap(), 0, This
->data
);
2188 This
->data
= pIconData
;
2189 This
->datalen
= iDataSize
;
2191 if (This
->loadtime_magic
!= 0xdeadbeef) {
2194 header
[0] = This
->loadtime_magic
;
2195 header
[1] = This
->datalen
;
2196 IStream_Write(pStm
, header
, 2 * sizeof(DWORD
), &dummy
);
2198 IStream_Write(pStm
, This
->data
, This
->datalen
, &dummy
);
2202 case PICTYPE_BITMAP
:
2203 if (This
->bIsDirty
) {
2204 switch (This
->keepOrigFormat
? This
->loadtime_format
: BITMAP_FORMAT_BMP
) {
2205 case BITMAP_FORMAT_BMP
:
2206 iSerializeResult
= serializeBMP(This
->desc
.u
.bmp
.hbitmap
, &pIconData
, &iDataSize
);
2208 case BITMAP_FORMAT_JPEG
:
2209 FIXME("(%p,%p,%d), PICTYPE_BITMAP (format JPEG) not implemented!\n",This
,pStm
,fClearDirty
);
2211 case BITMAP_FORMAT_GIF
:
2212 FIXME("(%p,%p,%d), PICTYPE_BITMAP (format GIF) not implemented!\n",This
,pStm
,fClearDirty
);
2214 case BITMAP_FORMAT_PNG
:
2215 FIXME("(%p,%p,%d), PICTYPE_BITMAP (format PNG) not implemented!\n",This
,pStm
,fClearDirty
);
2218 FIXME("(%p,%p,%d), PICTYPE_BITMAP (format UNKNOWN, using BMP?) not implemented!\n",This
,pStm
,fClearDirty
);
2221 if (iSerializeResult
) {
2223 if (This->loadtime_magic != 0xdeadbeef) {
2228 header
[0] = (This
->loadtime_magic
!= 0xdeadbeef) ? This
->loadtime_magic
: 0x0000746c;
2229 header
[1] = iDataSize
;
2230 IStream_Write(pStm
, header
, 2 * sizeof(DWORD
), &dummy
);
2232 IStream_Write(pStm
, pIconData
, iDataSize
, &dummy
);
2234 HeapFree(GetProcessHeap(), 0, This
->data
);
2235 This
->data
= pIconData
;
2236 This
->datalen
= iDataSize
;
2241 if (This->loadtime_magic != 0xdeadbeef) {
2246 header
[0] = (This
->loadtime_magic
!= 0xdeadbeef) ? This
->loadtime_magic
: 0x0000746c;
2247 header
[1] = This
->datalen
;
2248 IStream_Write(pStm
, header
, 2 * sizeof(DWORD
), &dummy
);
2250 IStream_Write(pStm
, This
->data
, This
->datalen
, &dummy
);
2254 case PICTYPE_METAFILE
:
2255 FIXME("(%p,%p,%d), PICTYPE_METAFILE not implemented!\n",This
,pStm
,fClearDirty
);
2257 case PICTYPE_ENHMETAFILE
:
2258 FIXME("(%p,%p,%d),PICTYPE_ENHMETAFILE not implemented!\n",This
,pStm
,fClearDirty
);
2261 FIXME("(%p,%p,%d), [unknown type] not implemented!\n",This
,pStm
,fClearDirty
);
2264 if (hResult
== S_OK
&& fClearDirty
) This
->bIsDirty
= FALSE
;
2268 static HRESULT WINAPI
OLEPictureImpl_GetSizeMax(
2269 IPersistStream
* iface
,ULARGE_INTEGER
*pcbSize
)
2271 OLEPictureImpl
*This
= impl_from_IPersistStream(iface
);
2272 FIXME("(%p,%p),stub!\n",This
,pcbSize
);
2277 /************************************************************************
2281 /************************************************************************
2282 * OLEPictureImpl_IDispatch_QueryInterface (IUnknown)
2284 * See Windows documentation for more details on IUnknown methods.
2286 static HRESULT WINAPI
OLEPictureImpl_IDispatch_QueryInterface(
2291 OLEPictureImpl
*This
= impl_from_IDispatch(iface
);
2293 return IPicture_QueryInterface((IPicture
*)This
, riid
, ppvoid
);
2296 /************************************************************************
2297 * OLEPictureImpl_IDispatch_AddRef (IUnknown)
2299 * See Windows documentation for more details on IUnknown methods.
2301 static ULONG WINAPI
OLEPictureImpl_IDispatch_AddRef(
2304 OLEPictureImpl
*This
= impl_from_IDispatch(iface
);
2306 return IPicture_AddRef((IPicture
*)This
);
2309 /************************************************************************
2310 * OLEPictureImpl_IDispatch_Release (IUnknown)
2312 * See Windows documentation for more details on IUnknown methods.
2314 static ULONG WINAPI
OLEPictureImpl_IDispatch_Release(
2317 OLEPictureImpl
*This
= impl_from_IDispatch(iface
);
2319 return IPicture_Release((IPicture
*)This
);
2322 /************************************************************************
2323 * OLEPictureImpl_GetTypeInfoCount (IDispatch)
2325 * See Windows documentation for more details on IDispatch methods.
2327 static HRESULT WINAPI
OLEPictureImpl_GetTypeInfoCount(
2329 unsigned int* pctinfo
)
2331 TRACE("(%p)\n", pctinfo
);
2338 /************************************************************************
2339 * OLEPictureImpl_GetTypeInfo (IDispatch)
2341 * See Windows documentation for more details on IDispatch methods.
2343 static HRESULT WINAPI
OLEPictureImpl_GetTypeInfo(
2347 ITypeInfo
** ppTInfo
)
2349 static const WCHAR stdole2tlb
[] = {'s','t','d','o','l','e','2','.','t','l','b',0};
2353 TRACE("(iTInfo=%d, lcid=%04x, %p)\n", iTInfo
, (int)lcid
, ppTInfo
);
2358 hres
= LoadTypeLib(stdole2tlb
, &tl
);
2361 ERR("Could not load stdole2.tlb\n");
2365 hres
= ITypeLib_GetTypeInfoOfGuid(tl
, &IID_IPictureDisp
, ppTInfo
);
2367 ERR("Did not get IPictureDisp typeinfo from typelib, hres %x\n", hres
);
2372 /************************************************************************
2373 * OLEPictureImpl_GetIDsOfNames (IDispatch)
2375 * See Windows documentation for more details on IDispatch methods.
2377 static HRESULT WINAPI
OLEPictureImpl_GetIDsOfNames(
2380 LPOLESTR
* rgszNames
,
2388 TRACE("(%p,%s,%p,cNames=%d,lcid=%04x,%p)\n", iface
, debugstr_guid(riid
),
2389 rgszNames
, cNames
, (int)lcid
, rgDispId
);
2393 return E_INVALIDARG
;
2397 /* retrieve type information */
2398 hres
= OLEPictureImpl_GetTypeInfo(iface
, 0, lcid
, &pTInfo
);
2402 ERR("GetTypeInfo failed.\n");
2406 /* convert names to DISPIDs */
2407 hres
= DispGetIDsOfNames (pTInfo
, rgszNames
, cNames
, rgDispId
);
2408 ITypeInfo_Release(pTInfo
);
2414 /************************************************************************
2415 * OLEPictureImpl_Invoke (IDispatch)
2417 * See Windows documentation for more details on IDispatch methods.
2419 static HRESULT WINAPI
OLEPictureImpl_Invoke(
2421 DISPID dispIdMember
,
2425 DISPPARAMS
* pDispParams
,
2426 VARIANT
* pVarResult
,
2427 EXCEPINFO
* pExepInfo
,
2430 OLEPictureImpl
*This
= impl_from_IDispatch(iface
);
2432 /* validate parameters */
2434 if (!IsEqualIID(riid
, &IID_NULL
))
2436 ERR("riid was %s instead of IID_NULL\n", debugstr_guid(riid
));
2437 return DISP_E_UNKNOWNNAME
;
2442 ERR("null pDispParams not allowed\n");
2443 return DISP_E_PARAMNOTOPTIONAL
;
2446 if (wFlags
& DISPATCH_PROPERTYGET
)
2448 if (pDispParams
->cArgs
!= 0)
2450 ERR("param count for DISPATCH_PROPERTYGET was %d instead of 0\n", pDispParams
->cArgs
);
2451 return DISP_E_BADPARAMCOUNT
;
2455 ERR("null pVarResult not allowed when DISPATCH_PROPERTYGET specified\n");
2456 return DISP_E_PARAMNOTOPTIONAL
;
2459 else if (wFlags
& DISPATCH_PROPERTYPUT
)
2461 if (pDispParams
->cArgs
!= 1)
2463 ERR("param count for DISPATCH_PROPERTYPUT was %d instead of 1\n", pDispParams
->cArgs
);
2464 return DISP_E_BADPARAMCOUNT
;
2468 switch (dispIdMember
)
2470 case DISPID_PICT_HANDLE
:
2471 if (wFlags
& DISPATCH_PROPERTYGET
)
2473 TRACE("DISPID_PICT_HANDLE\n");
2474 V_VT(pVarResult
) = VT_I4
;
2475 return IPicture_get_Handle((IPicture
*)&This
->lpVtbl
, &V_UINT(pVarResult
));
2478 case DISPID_PICT_HPAL
:
2479 if (wFlags
& DISPATCH_PROPERTYGET
)
2481 TRACE("DISPID_PICT_HPAL\n");
2482 V_VT(pVarResult
) = VT_I4
;
2483 return IPicture_get_hPal((IPicture
*)&This
->lpVtbl
, &V_UINT(pVarResult
));
2485 else if (wFlags
& DISPATCH_PROPERTYPUT
)
2489 TRACE("DISPID_PICT_HPAL\n");
2491 VariantInit(&vararg
);
2492 hr
= VariantChangeTypeEx(&vararg
, &pDispParams
->rgvarg
[0], lcid
, 0, VT_I4
);
2496 hr
= IPicture_set_hPal((IPicture
*)&This
->lpVtbl
, V_I4(&vararg
));
2498 VariantClear(&vararg
);
2502 case DISPID_PICT_TYPE
:
2503 if (wFlags
& DISPATCH_PROPERTYGET
)
2505 TRACE("DISPID_PICT_TYPE\n");
2506 V_VT(pVarResult
) = VT_I2
;
2507 return OLEPictureImpl_get_Type((IPicture
*)&This
->lpVtbl
, &V_I2(pVarResult
));
2510 case DISPID_PICT_WIDTH
:
2511 if (wFlags
& DISPATCH_PROPERTYGET
)
2513 TRACE("DISPID_PICT_WIDTH\n");
2514 V_VT(pVarResult
) = VT_I4
;
2515 return IPicture_get_Width((IPicture
*)&This
->lpVtbl
, &V_I4(pVarResult
));
2518 case DISPID_PICT_HEIGHT
:
2519 if (wFlags
& DISPATCH_PROPERTYGET
)
2521 TRACE("DISPID_PICT_HEIGHT\n");
2522 V_VT(pVarResult
) = VT_I4
;
2523 return IPicture_get_Height((IPicture
*)&This
->lpVtbl
, &V_I4(pVarResult
));
2528 ERR("invalid dispid 0x%x or wFlags 0x%x\n", dispIdMember
, wFlags
);
2529 return DISP_E_MEMBERNOTFOUND
;
2533 static const IPictureVtbl OLEPictureImpl_VTable
=
2535 OLEPictureImpl_QueryInterface
,
2536 OLEPictureImpl_AddRef
,
2537 OLEPictureImpl_Release
,
2538 OLEPictureImpl_get_Handle
,
2539 OLEPictureImpl_get_hPal
,
2540 OLEPictureImpl_get_Type
,
2541 OLEPictureImpl_get_Width
,
2542 OLEPictureImpl_get_Height
,
2543 OLEPictureImpl_Render
,
2544 OLEPictureImpl_set_hPal
,
2545 OLEPictureImpl_get_CurDC
,
2546 OLEPictureImpl_SelectPicture
,
2547 OLEPictureImpl_get_KeepOriginalFormat
,
2548 OLEPictureImpl_put_KeepOriginalFormat
,
2549 OLEPictureImpl_PictureChanged
,
2550 OLEPictureImpl_SaveAsFile
,
2551 OLEPictureImpl_get_Attributes
2554 static const IDispatchVtbl OLEPictureImpl_IDispatch_VTable
=
2556 OLEPictureImpl_IDispatch_QueryInterface
,
2557 OLEPictureImpl_IDispatch_AddRef
,
2558 OLEPictureImpl_IDispatch_Release
,
2559 OLEPictureImpl_GetTypeInfoCount
,
2560 OLEPictureImpl_GetTypeInfo
,
2561 OLEPictureImpl_GetIDsOfNames
,
2562 OLEPictureImpl_Invoke
2565 static const IPersistStreamVtbl OLEPictureImpl_IPersistStream_VTable
=
2567 OLEPictureImpl_IPersistStream_QueryInterface
,
2568 OLEPictureImpl_IPersistStream_AddRef
,
2569 OLEPictureImpl_IPersistStream_Release
,
2570 OLEPictureImpl_GetClassID
,
2571 OLEPictureImpl_IsDirty
,
2572 OLEPictureImpl_Load
,
2573 OLEPictureImpl_Save
,
2574 OLEPictureImpl_GetSizeMax
2577 static const IConnectionPointContainerVtbl OLEPictureImpl_IConnectionPointContainer_VTable
=
2579 OLEPictureImpl_IConnectionPointContainer_QueryInterface
,
2580 OLEPictureImpl_IConnectionPointContainer_AddRef
,
2581 OLEPictureImpl_IConnectionPointContainer_Release
,
2582 OLEPictureImpl_EnumConnectionPoints
,
2583 OLEPictureImpl_FindConnectionPoint
2586 /***********************************************************************
2587 * OleCreatePictureIndirect (OLEAUT32.419)
2589 HRESULT WINAPI
OleCreatePictureIndirect(LPPICTDESC lpPictDesc
, REFIID riid
,
2590 BOOL fOwn
, LPVOID
*ppvObj
)
2592 OLEPictureImpl
* newPict
= NULL
;
2595 TRACE("(%p,%s,%d,%p)\n", lpPictDesc
, debugstr_guid(riid
), fOwn
, ppvObj
);
2606 * Try to construct a new instance of the class.
2608 newPict
= OLEPictureImpl_Construct(lpPictDesc
, fOwn
);
2610 if (newPict
== NULL
)
2611 return E_OUTOFMEMORY
;
2614 * Make sure it supports the interface required by the caller.
2616 hr
= IPicture_QueryInterface((IPicture
*)newPict
, riid
, ppvObj
);
2619 * Release the reference obtained in the constructor. If
2620 * the QueryInterface was unsuccessful, it will free the class.
2622 IPicture_Release((IPicture
*)newPict
);
2628 /***********************************************************************
2629 * OleLoadPicture (OLEAUT32.418)
2631 HRESULT WINAPI
OleLoadPicture( LPSTREAM lpstream
, LONG lSize
, BOOL fRunmode
,
2632 REFIID riid
, LPVOID
*ppvObj
)
2638 TRACE("(%p,%d,%d,%s,%p), partially implemented.\n",
2639 lpstream
, lSize
, fRunmode
, debugstr_guid(riid
), ppvObj
);
2641 hr
= OleCreatePictureIndirect(NULL
,riid
,!fRunmode
,(LPVOID
*)&newpic
);
2644 hr
= IPicture_QueryInterface(newpic
,&IID_IPersistStream
, (LPVOID
*)&ps
);
2646 FIXME("Could not get IPersistStream iface from Ole Picture?\n");
2647 IPicture_Release(newpic
);
2651 hr
= IPersistStream_Load(ps
,lpstream
);
2652 IPersistStream_Release(ps
);
2655 ERR("IPersistStream_Load failed\n");
2656 IPicture_Release(newpic
);
2660 hr
= IPicture_QueryInterface(newpic
,riid
,ppvObj
);
2662 FIXME("Failed to get interface %s from IPicture.\n",debugstr_guid(riid
));
2663 IPicture_Release(newpic
);
2667 /***********************************************************************
2668 * OleLoadPictureEx (OLEAUT32.401)
2670 HRESULT WINAPI
OleLoadPictureEx( LPSTREAM lpstream
, LONG lSize
, BOOL fRunmode
,
2671 REFIID riid
, DWORD xsiz
, DWORD ysiz
, DWORD flags
, LPVOID
*ppvObj
)
2677 FIXME("(%p,%d,%d,%s,x=%d,y=%d,f=%x,%p), partially implemented.\n",
2678 lpstream
, lSize
, fRunmode
, debugstr_guid(riid
), xsiz
, ysiz
, flags
, ppvObj
);
2680 hr
= OleCreatePictureIndirect(NULL
,riid
,!fRunmode
,(LPVOID
*)&newpic
);
2683 hr
= IPicture_QueryInterface(newpic
,&IID_IPersistStream
, (LPVOID
*)&ps
);
2685 FIXME("Could not get IPersistStream iface from Ole Picture?\n");
2686 IPicture_Release(newpic
);
2690 IPersistStream_Load(ps
,lpstream
);
2691 IPersistStream_Release(ps
);
2692 hr
= IPicture_QueryInterface(newpic
,riid
,ppvObj
);
2694 FIXME("Failed to get interface %s from IPicture.\n",debugstr_guid(riid
));
2695 IPicture_Release(newpic
);
2699 /***********************************************************************
2700 * OleLoadPicturePath (OLEAUT32.424)
2702 HRESULT WINAPI
OleLoadPicturePath( LPOLESTR szURLorPath
, LPUNKNOWN punkCaller
,
2703 DWORD dwReserved
, OLE_COLOR clrReserved
, REFIID riid
,
2706 static const WCHAR file
[] = { 'f','i','l','e',':','/','/',0 };
2710 HGLOBAL hGlobal
= NULL
;
2711 DWORD dwBytesRead
= 0;
2714 IPersistStream
*pStream
;
2717 TRACE("(%s,%p,%d,%08x,%s,%p): stub\n",
2718 debugstr_w(szURLorPath
), punkCaller
, dwReserved
, clrReserved
,
2719 debugstr_guid(riid
), ppvRet
);
2721 if (!ppvRet
) return E_POINTER
;
2723 if (strncmpW(szURLorPath
, file
, 7) == 0) {
2726 hFile
= CreateFileW(szURLorPath
, GENERIC_READ
, 0, NULL
, OPEN_EXISTING
,
2728 if (hFile
== INVALID_HANDLE_VALUE
)
2729 return E_UNEXPECTED
;
2731 dwFileSize
= GetFileSize(hFile
, NULL
);
2732 if (dwFileSize
!= INVALID_FILE_SIZE
)
2734 hGlobal
= GlobalAlloc(GMEM_FIXED
,dwFileSize
);
2737 bRead
= ReadFile(hFile
, hGlobal
, dwFileSize
, &dwBytesRead
, NULL
);
2740 GlobalFree(hGlobal
);
2748 return E_UNEXPECTED
;
2750 hRes
= CreateStreamOnHGlobal(hGlobal
, TRUE
, &stream
);
2753 GlobalFree(hGlobal
);
2760 hRes
= CreateBindCtx(0, &pbc
);
2761 if (SUCCEEDED(hRes
))
2763 hRes
= CreateURLMoniker(NULL
, szURLorPath
, &pmnk
);
2764 if (SUCCEEDED(hRes
))
2766 hRes
= IMoniker_BindToStorage(pmnk
, pbc
, NULL
, &IID_IStream
, (LPVOID
*)&stream
);
2767 IMoniker_Release(pmnk
);
2769 IBindCtx_Release(pbc
);
2775 hRes
= CoCreateInstance(&CLSID_StdPicture
, punkCaller
, CLSCTX_INPROC_SERVER
,
2776 &IID_IPicture
, (LPVOID
*)&ipicture
);
2778 IStream_Release(stream
);
2782 hRes
= IPicture_QueryInterface(ipicture
, &IID_IPersistStream
, (LPVOID
*)&pStream
);
2784 IStream_Release(stream
);
2785 IPicture_Release(ipicture
);
2789 hRes
= IPersistStream_Load(pStream
, stream
);
2790 IPersistStream_Release(pStream
);
2791 IStream_Release(stream
);
2794 IPicture_Release(ipicture
);
2798 hRes
= IPicture_QueryInterface(ipicture
,riid
,ppvRet
);
2800 FIXME("Failed to get interface %s from IPicture.\n",debugstr_guid(riid
));
2802 IPicture_Release(ipicture
);
2806 /*******************************************************************************
2807 * StdPic ClassFactory
2811 /* IUnknown fields */
2812 const IClassFactoryVtbl
*lpVtbl
;
2814 } IClassFactoryImpl
;
2816 static HRESULT WINAPI
2817 SPCF_QueryInterface(LPCLASSFACTORY iface
,REFIID riid
,LPVOID
*ppobj
) {
2818 IClassFactoryImpl
*This
= (IClassFactoryImpl
*)iface
;
2820 FIXME("(%p)->(%s,%p),stub!\n",This
,debugstr_guid(riid
),ppobj
);
2821 return E_NOINTERFACE
;
2825 SPCF_AddRef(LPCLASSFACTORY iface
) {
2826 IClassFactoryImpl
*This
= (IClassFactoryImpl
*)iface
;
2827 return InterlockedIncrement(&This
->ref
);
2830 static ULONG WINAPI
SPCF_Release(LPCLASSFACTORY iface
) {
2831 IClassFactoryImpl
*This
= (IClassFactoryImpl
*)iface
;
2832 /* static class, won't be freed */
2833 return InterlockedDecrement(&This
->ref
);
2836 static HRESULT WINAPI
SPCF_CreateInstance(
2837 LPCLASSFACTORY iface
,LPUNKNOWN pOuter
,REFIID riid
,LPVOID
*ppobj
2839 /* Creates an uninitialized picture */
2840 return OleCreatePictureIndirect(NULL
,riid
,TRUE
,ppobj
);
2844 static HRESULT WINAPI
SPCF_LockServer(LPCLASSFACTORY iface
,BOOL dolock
) {
2845 IClassFactoryImpl
*This
= (IClassFactoryImpl
*)iface
;
2846 FIXME("(%p)->(%d),stub!\n",This
,dolock
);
2850 static const IClassFactoryVtbl SPCF_Vtbl
= {
2851 SPCF_QueryInterface
,
2854 SPCF_CreateInstance
,
2857 static IClassFactoryImpl STDPIC_CF
= {&SPCF_Vtbl
, 1 };
2859 void _get_STDPIC_CF(LPVOID
*ppv
) { *ppv
= (LPVOID
)&STDPIC_CF
; }