2000-07-15 16:59:11 +02:00
|
|
|
/*
|
|
|
|
* OLE Picture object
|
|
|
|
*
|
|
|
|
* Implementation of OLE IPicture and related interfaces
|
|
|
|
*
|
|
|
|
* Copyright 2000 Huw D M Davies for CodeWeavers.
|
2001-08-06 20:52:14 +02:00
|
|
|
* Copyright 2001 Marcus Meissner
|
2000-07-15 16:59:11 +02:00
|
|
|
*
|
2002-03-10 00:29:33 +01:00
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
2000-07-15 16:59:11 +02:00
|
|
|
*
|
|
|
|
* BUGS
|
|
|
|
*
|
2001-08-06 20:52:14 +02:00
|
|
|
* Support PICTYPE_BITMAP and PICTYPE_ICON, altough only bitmaps very well..
|
|
|
|
* Lots of methods are just stubs.
|
2000-07-15 16:59:11 +02:00
|
|
|
*
|
|
|
|
*
|
|
|
|
* NOTES (or things that msdn doesn't tell you)
|
|
|
|
*
|
|
|
|
* The width and height properties are returned in HIMETRIC units (0.01mm)
|
|
|
|
* IPicture::Render also uses these to select a region of the src picture.
|
|
|
|
* A bitmap's size is converted into these units by using the screen resolution
|
|
|
|
* thus an 8x8 bitmap on a 96dpi screen has a size of 212x212 (8/96 * 2540).
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2001-08-09 23:35:59 +02:00
|
|
|
#include "config.h"
|
|
|
|
|
2002-08-17 02:43:16 +02:00
|
|
|
#ifdef HAVE_UNISTD_H
|
|
|
|
# include <unistd.h>
|
|
|
|
#endif
|
2001-08-06 20:52:14 +02:00
|
|
|
#include <stdio.h>
|
2001-01-26 21:43:40 +01:00
|
|
|
#include <string.h>
|
2003-01-07 21:36:20 +01:00
|
|
|
|
2003-01-09 07:04:33 +01:00
|
|
|
/* Must be before wine includes, the header has things conflicting with
|
|
|
|
* WINE headers.
|
|
|
|
*/
|
|
|
|
#ifdef HAVE_LIBGIF
|
|
|
|
# include <gif_lib.h>
|
|
|
|
#endif
|
|
|
|
|
2003-01-07 21:36:20 +01:00
|
|
|
#define NONAMELESSUNION
|
|
|
|
#define NONAMELESSSTRUCT
|
2000-07-15 16:59:11 +02:00
|
|
|
#include "winerror.h"
|
2000-11-30 02:31:28 +01:00
|
|
|
#include "winbase.h"
|
|
|
|
#include "wingdi.h"
|
|
|
|
#include "winuser.h"
|
|
|
|
#include "ole2.h"
|
2000-07-15 16:59:11 +02:00
|
|
|
#include "olectl.h"
|
2001-08-06 20:52:14 +02:00
|
|
|
#include "oleauto.h"
|
2000-07-15 16:59:11 +02:00
|
|
|
#include "wine/obj_picture.h"
|
2001-08-06 20:52:14 +02:00
|
|
|
#include "wine/obj_connection.h"
|
|
|
|
#include "connpt.h"
|
2002-03-10 00:29:33 +01:00
|
|
|
#include "wine/debug.h"
|
2000-07-15 16:59:11 +02:00
|
|
|
|
2001-08-06 20:52:14 +02:00
|
|
|
#include "wine/wingdi16.h"
|
|
|
|
#include "cursoricon.h"
|
|
|
|
|
|
|
|
#ifdef HAVE_LIBJPEG
|
|
|
|
/* This is a hack, so jpeglib.h does not redefine INT32 and the like*/
|
2002-06-01 01:06:46 +02:00
|
|
|
#define XMD_H
|
2002-09-12 19:29:12 +02:00
|
|
|
#define UINT8 JPEG_UINT8
|
2001-10-14 18:07:23 +02:00
|
|
|
#define UINT16 JPEG_UINT16
|
2001-08-09 23:35:59 +02:00
|
|
|
#ifdef HAVE_JPEGLIB_H
|
|
|
|
# include <jpeglib.h>
|
|
|
|
#endif
|
2001-10-14 18:07:23 +02:00
|
|
|
#undef UINT16
|
2001-08-06 20:52:14 +02:00
|
|
|
#endif
|
|
|
|
|
2002-03-10 00:29:33 +01:00
|
|
|
WINE_DEFAULT_DEBUG_CHANNEL(ole);
|
2000-07-15 16:59:11 +02:00
|
|
|
|
|
|
|
/*************************************************************************
|
|
|
|
* Declaration of implementation class
|
|
|
|
*/
|
|
|
|
|
|
|
|
typedef struct OLEPictureImpl {
|
|
|
|
|
|
|
|
/*
|
|
|
|
* IPicture handles IUnknown
|
|
|
|
*/
|
|
|
|
|
|
|
|
ICOM_VTABLE(IPicture) *lpvtbl1;
|
|
|
|
ICOM_VTABLE(IDispatch) *lpvtbl2;
|
|
|
|
ICOM_VTABLE(IPersistStream) *lpvtbl3;
|
2001-08-06 20:52:14 +02:00
|
|
|
ICOM_VTABLE(IConnectionPointContainer) *lpvtbl4;
|
2000-07-15 16:59:11 +02:00
|
|
|
|
|
|
|
/* Object referenece count */
|
|
|
|
DWORD ref;
|
|
|
|
|
|
|
|
/* We own the object and must destroy it ourselves */
|
|
|
|
BOOL fOwn;
|
2002-06-01 01:06:46 +02:00
|
|
|
|
2000-07-15 16:59:11 +02:00
|
|
|
/* Picture description */
|
|
|
|
PICTDESC desc;
|
|
|
|
|
|
|
|
/* These are the pixel size of a bitmap */
|
|
|
|
DWORD origWidth;
|
|
|
|
DWORD origHeight;
|
|
|
|
|
|
|
|
/* And these are the size of the picture converted into HIMETRIC units */
|
|
|
|
OLE_XSIZE_HIMETRIC himetricWidth;
|
|
|
|
OLE_YSIZE_HIMETRIC himetricHeight;
|
|
|
|
|
2001-08-06 20:52:14 +02:00
|
|
|
IConnectionPoint *pCP;
|
|
|
|
|
|
|
|
BOOL keepOrigFormat;
|
|
|
|
HDC hDCCur;
|
2002-11-11 20:54:22 +01:00
|
|
|
|
|
|
|
/* data */
|
|
|
|
void* data;
|
|
|
|
int datalen;
|
2000-07-15 16:59:11 +02:00
|
|
|
} OLEPictureImpl;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Macros to retrieve pointer to IUnknown (IPicture) from the other VTables.
|
|
|
|
*/
|
|
|
|
#define ICOM_THIS_From_IDispatch(impl, name) \
|
|
|
|
impl *This = (impl*)(((char*)name)-sizeof(void*));
|
|
|
|
#define ICOM_THIS_From_IPersistStream(impl, name) \
|
|
|
|
impl *This = (impl*)(((char*)name)-2*sizeof(void*));
|
2001-08-06 20:52:14 +02:00
|
|
|
#define ICOM_THIS_From_IConnectionPointContainer(impl, name) \
|
|
|
|
impl *This = (impl*)(((char*)name)-3*sizeof(void*));
|
2000-07-15 16:59:11 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Predeclare VTables. They get initialized at the end.
|
|
|
|
*/
|
|
|
|
static ICOM_VTABLE(IPicture) OLEPictureImpl_VTable;
|
|
|
|
static ICOM_VTABLE(IDispatch) OLEPictureImpl_IDispatch_VTable;
|
|
|
|
static ICOM_VTABLE(IPersistStream) OLEPictureImpl_IPersistStream_VTable;
|
2001-08-06 20:52:14 +02:00
|
|
|
static ICOM_VTABLE(IConnectionPointContainer) OLEPictureImpl_IConnectionPointContainer_VTable;
|
2000-07-15 16:59:11 +02:00
|
|
|
|
|
|
|
/***********************************************************************
|
|
|
|
* Implementation of the OLEPictureImpl class.
|
|
|
|
*/
|
|
|
|
|
2001-08-06 20:52:14 +02:00
|
|
|
static void OLEPictureImpl_SetBitmap(OLEPictureImpl*This) {
|
|
|
|
BITMAP bm;
|
|
|
|
HDC hdcRef;
|
|
|
|
|
2002-10-25 05:12:50 +02:00
|
|
|
TRACE("bitmap handle %p\n", This->desc.u.bmp.hbitmap);
|
2001-08-06 20:52:14 +02:00
|
|
|
if(GetObjectA(This->desc.u.bmp.hbitmap, sizeof(bm), &bm) != sizeof(bm)) {
|
|
|
|
ERR("GetObject fails\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
This->origWidth = bm.bmWidth;
|
|
|
|
This->origHeight = bm.bmHeight;
|
|
|
|
/* The width and height are stored in HIMETRIC units (0.01 mm),
|
|
|
|
so we take our pixel width divide by pixels per inch and
|
|
|
|
multiply by 25.4 * 100 */
|
|
|
|
/* Should we use GetBitmapDimension if available? */
|
|
|
|
hdcRef = CreateCompatibleDC(0);
|
|
|
|
This->himetricWidth =(bm.bmWidth *2540)/GetDeviceCaps(hdcRef, LOGPIXELSX);
|
|
|
|
This->himetricHeight=(bm.bmHeight*2540)/GetDeviceCaps(hdcRef, LOGPIXELSY);
|
|
|
|
DeleteDC(hdcRef);
|
|
|
|
}
|
|
|
|
|
2000-07-15 16:59:11 +02:00
|
|
|
/************************************************************************
|
|
|
|
* OLEPictureImpl_Construct
|
|
|
|
*
|
|
|
|
* This method will construct a new instance of the OLEPictureImpl
|
|
|
|
* class.
|
|
|
|
*
|
|
|
|
* The caller of this method must release the object when it's
|
|
|
|
* done with it.
|
|
|
|
*/
|
|
|
|
static OLEPictureImpl* OLEPictureImpl_Construct(LPPICTDESC pictDesc, BOOL fOwn)
|
|
|
|
{
|
|
|
|
OLEPictureImpl* newObject = 0;
|
2001-08-06 20:52:14 +02:00
|
|
|
|
|
|
|
if (pictDesc)
|
|
|
|
TRACE("(%p) type = %d\n", pictDesc, pictDesc->picType);
|
2000-07-15 16:59:11 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Allocate space for the object.
|
|
|
|
*/
|
2002-11-11 20:54:22 +01:00
|
|
|
newObject = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(OLEPictureImpl));
|
2000-07-15 16:59:11 +02:00
|
|
|
|
|
|
|
if (newObject==0)
|
|
|
|
return newObject;
|
2002-06-01 01:06:46 +02:00
|
|
|
|
2000-07-15 16:59:11 +02:00
|
|
|
/*
|
|
|
|
* Initialize the virtual function table.
|
|
|
|
*/
|
|
|
|
newObject->lpvtbl1 = &OLEPictureImpl_VTable;
|
|
|
|
newObject->lpvtbl2 = &OLEPictureImpl_IDispatch_VTable;
|
|
|
|
newObject->lpvtbl3 = &OLEPictureImpl_IPersistStream_VTable;
|
2001-08-06 20:52:14 +02:00
|
|
|
newObject->lpvtbl4 = &OLEPictureImpl_IConnectionPointContainer_VTable;
|
|
|
|
|
|
|
|
CreateConnectionPoint((IUnknown*)newObject,&IID_IPropertyNotifySink,&newObject->pCP);
|
|
|
|
|
2000-07-15 16:59:11 +02:00
|
|
|
/*
|
2002-06-01 01:06:46 +02:00
|
|
|
* Start with one reference count. The caller of this function
|
2000-07-15 16:59:11 +02:00
|
|
|
* must release the interface pointer when it is done.
|
|
|
|
*/
|
2001-08-06 20:52:14 +02:00
|
|
|
newObject->ref = 1;
|
|
|
|
newObject->hDCCur = 0;
|
2000-07-15 16:59:11 +02:00
|
|
|
|
2001-08-06 20:52:14 +02:00
|
|
|
newObject->fOwn = fOwn;
|
2000-07-15 16:59:11 +02:00
|
|
|
|
2001-08-06 20:52:14 +02:00
|
|
|
/* dunno about original value */
|
|
|
|
newObject->keepOrigFormat = TRUE;
|
2000-07-15 16:59:11 +02:00
|
|
|
|
2001-08-06 20:52:14 +02:00
|
|
|
if (pictDesc) {
|
|
|
|
if(pictDesc->cbSizeofstruct != sizeof(PICTDESC)) {
|
|
|
|
FIXME("struct size = %d\n", pictDesc->cbSizeofstruct);
|
2000-07-15 16:59:11 +02:00
|
|
|
}
|
2001-08-06 20:52:14 +02:00
|
|
|
memcpy(&newObject->desc, pictDesc, sizeof(PICTDESC));
|
2000-07-15 16:59:11 +02:00
|
|
|
|
|
|
|
|
2001-08-06 20:52:14 +02:00
|
|
|
switch(pictDesc->picType) {
|
|
|
|
case PICTYPE_BITMAP:
|
|
|
|
OLEPictureImpl_SetBitmap(newObject);
|
|
|
|
break;
|
2000-07-15 16:59:11 +02:00
|
|
|
|
2001-08-06 20:52:14 +02:00
|
|
|
case PICTYPE_METAFILE:
|
2002-10-25 05:12:50 +02:00
|
|
|
TRACE("metafile handle %p\n", pictDesc->u.wmf.hmeta);
|
2001-08-06 20:52:14 +02:00
|
|
|
newObject->himetricWidth = pictDesc->u.wmf.xExt;
|
|
|
|
newObject->himetricHeight = pictDesc->u.wmf.yExt;
|
|
|
|
break;
|
2000-07-15 16:59:11 +02:00
|
|
|
|
2003-01-02 18:54:57 +01:00
|
|
|
case PICTYPE_NONE:
|
|
|
|
/* not sure what to do here */
|
|
|
|
newObject->himetricWidth = newObject->himetricHeight = 0;
|
|
|
|
break;
|
|
|
|
|
2001-08-06 20:52:14 +02:00
|
|
|
case PICTYPE_ICON:
|
|
|
|
case PICTYPE_ENHMETAFILE:
|
|
|
|
default:
|
|
|
|
FIXME("Unsupported type %d\n", pictDesc->picType);
|
|
|
|
newObject->himetricWidth = newObject->himetricHeight = 0;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
newObject->desc.picType = PICTYPE_UNINITIALIZED;
|
2000-07-15 16:59:11 +02:00
|
|
|
}
|
2002-06-01 01:06:46 +02:00
|
|
|
|
2000-07-15 16:59:11 +02:00
|
|
|
TRACE("returning %p\n", newObject);
|
|
|
|
return newObject;
|
|
|
|
}
|
|
|
|
|
|
|
|
/************************************************************************
|
|
|
|
* OLEPictureImpl_Destroy
|
|
|
|
*
|
|
|
|
* This method is called by the Release method when the reference
|
2000-07-16 17:44:22 +02:00
|
|
|
* count goes down to 0. It will free all resources used by
|
2000-07-15 16:59:11 +02:00
|
|
|
* this object. */
|
|
|
|
static void OLEPictureImpl_Destroy(OLEPictureImpl* Obj)
|
2002-06-01 01:06:46 +02:00
|
|
|
{
|
2000-07-15 16:59:11 +02:00
|
|
|
TRACE("(%p)\n", Obj);
|
|
|
|
|
|
|
|
if(Obj->fOwn) { /* We need to destroy the picture */
|
|
|
|
switch(Obj->desc.picType) {
|
|
|
|
case PICTYPE_BITMAP:
|
|
|
|
DeleteObject(Obj->desc.u.bmp.hbitmap);
|
|
|
|
break;
|
|
|
|
case PICTYPE_METAFILE:
|
|
|
|
DeleteMetaFile(Obj->desc.u.wmf.hmeta);
|
|
|
|
break;
|
|
|
|
case PICTYPE_ICON:
|
|
|
|
DestroyIcon(Obj->desc.u.icon.hicon);
|
|
|
|
break;
|
|
|
|
case PICTYPE_ENHMETAFILE:
|
|
|
|
DeleteEnhMetaFile(Obj->desc.u.emf.hemf);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
FIXME("Unsupported type %d - unable to delete\n", Obj->desc.picType);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2002-11-11 20:54:22 +01:00
|
|
|
if (Obj->data) HeapFree(GetProcessHeap(), 0, Obj->data);
|
2000-07-15 16:59:11 +02:00
|
|
|
HeapFree(GetProcessHeap(), 0, Obj);
|
|
|
|
}
|
|
|
|
|
|
|
|
static ULONG WINAPI OLEPictureImpl_AddRef(IPicture* iface);
|
|
|
|
|
|
|
|
/************************************************************************
|
|
|
|
* OLEPictureImpl_QueryInterface (IUnknown)
|
|
|
|
*
|
|
|
|
* See Windows documentation for more details on IUnknown methods.
|
|
|
|
*/
|
|
|
|
static HRESULT WINAPI OLEPictureImpl_QueryInterface(
|
|
|
|
IPicture* iface,
|
|
|
|
REFIID riid,
|
|
|
|
void** ppvObject)
|
|
|
|
{
|
|
|
|
ICOM_THIS(OLEPictureImpl, iface);
|
|
|
|
TRACE("(%p)->(%s, %p)\n", This, debugstr_guid(riid), ppvObject);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Perform a sanity check on the parameters.
|
|
|
|
*/
|
|
|
|
if ( (This==0) || (ppvObject==0) )
|
|
|
|
return E_INVALIDARG;
|
2002-06-01 01:06:46 +02:00
|
|
|
|
2000-07-15 16:59:11 +02:00
|
|
|
/*
|
|
|
|
* Initialize the return parameter.
|
|
|
|
*/
|
|
|
|
*ppvObject = 0;
|
2002-06-01 01:06:46 +02:00
|
|
|
|
2000-07-15 16:59:11 +02:00
|
|
|
/*
|
|
|
|
* Compare the riid with the interface IDs implemented by this object.
|
|
|
|
*/
|
2002-06-01 01:06:46 +02:00
|
|
|
if (memcmp(&IID_IUnknown, riid, sizeof(IID_IUnknown)) == 0)
|
2000-07-15 16:59:11 +02:00
|
|
|
{
|
|
|
|
*ppvObject = (IPicture*)This;
|
|
|
|
}
|
2002-06-01 01:06:46 +02:00
|
|
|
else if (memcmp(&IID_IPicture, riid, sizeof(IID_IPicture)) == 0)
|
2000-07-15 16:59:11 +02:00
|
|
|
{
|
|
|
|
*ppvObject = (IPicture*)This;
|
|
|
|
}
|
2002-06-01 01:06:46 +02:00
|
|
|
else if (memcmp(&IID_IDispatch, riid, sizeof(IID_IDispatch)) == 0)
|
2000-07-15 16:59:11 +02:00
|
|
|
{
|
|
|
|
*ppvObject = (IDispatch*)&(This->lpvtbl2);
|
|
|
|
}
|
2002-06-01 01:06:46 +02:00
|
|
|
else if (memcmp(&IID_IPictureDisp, riid, sizeof(IID_IPictureDisp)) == 0)
|
2000-07-15 16:59:11 +02:00
|
|
|
{
|
|
|
|
*ppvObject = (IDispatch*)&(This->lpvtbl2);
|
|
|
|
}
|
2002-06-01 01:06:46 +02:00
|
|
|
else if (memcmp(&IID_IPersistStream, riid, sizeof(IID_IPersistStream)) == 0)
|
2000-07-15 16:59:11 +02:00
|
|
|
{
|
|
|
|
*ppvObject = (IPersistStream*)&(This->lpvtbl3);
|
2001-08-06 20:52:14 +02:00
|
|
|
}
|
2002-06-01 01:06:46 +02:00
|
|
|
else if (memcmp(&IID_IConnectionPointContainer, riid, sizeof(IID_IConnectionPointContainer)) == 0)
|
2001-08-06 20:52:14 +02:00
|
|
|
{
|
|
|
|
*ppvObject = (IConnectionPointContainer*)&(This->lpvtbl4);
|
|
|
|
}
|
2000-07-15 16:59:11 +02:00
|
|
|
/*
|
|
|
|
* Check that we obtained an interface.
|
|
|
|
*/
|
|
|
|
if ((*ppvObject)==0)
|
|
|
|
{
|
|
|
|
FIXME("() : asking for un supported interface %s\n",debugstr_guid(riid));
|
|
|
|
return E_NOINTERFACE;
|
|
|
|
}
|
2002-06-01 01:06:46 +02:00
|
|
|
|
2000-07-15 16:59:11 +02:00
|
|
|
/*
|
|
|
|
* Query Interface always increases the reference count by one when it is
|
|
|
|
* successful
|
|
|
|
*/
|
|
|
|
OLEPictureImpl_AddRef((IPicture*)This);
|
|
|
|
|
2002-06-01 01:06:46 +02:00
|
|
|
return S_OK;
|
2000-07-15 16:59:11 +02:00
|
|
|
}
|
2001-08-06 20:52:14 +02:00
|
|
|
/***********************************************************************
|
|
|
|
* OLEPicture_SendNotify (internal)
|
|
|
|
*
|
|
|
|
* Sends notification messages of changed properties to any interested
|
|
|
|
* connections.
|
|
|
|
*/
|
|
|
|
static void OLEPicture_SendNotify(OLEPictureImpl* this, DISPID dispID)
|
|
|
|
{
|
|
|
|
IEnumConnections *pEnum;
|
|
|
|
CONNECTDATA CD;
|
|
|
|
|
|
|
|
if (IConnectionPoint_EnumConnections(this->pCP, &pEnum))
|
|
|
|
return;
|
|
|
|
while(IEnumConnections_Next(pEnum, 1, &CD, NULL) == S_OK) {
|
|
|
|
IPropertyNotifySink *sink;
|
|
|
|
|
|
|
|
IUnknown_QueryInterface(CD.pUnk, &IID_IPropertyNotifySink, (LPVOID)&sink);
|
|
|
|
IPropertyNotifySink_OnChanged(sink, dispID);
|
|
|
|
IPropertyNotifySink_Release(sink);
|
|
|
|
IUnknown_Release(CD.pUnk);
|
|
|
|
}
|
|
|
|
IEnumConnections_Release(pEnum);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2000-07-15 16:59:11 +02:00
|
|
|
/************************************************************************
|
|
|
|
* OLEPictureImpl_AddRef (IUnknown)
|
|
|
|
*
|
|
|
|
* See Windows documentation for more details on IUnknown methods.
|
|
|
|
*/
|
2002-06-01 01:06:46 +02:00
|
|
|
static ULONG WINAPI OLEPictureImpl_AddRef(
|
2000-07-15 16:59:11 +02:00
|
|
|
IPicture* iface)
|
|
|
|
{
|
|
|
|
ICOM_THIS(OLEPictureImpl, iface);
|
|
|
|
TRACE("(%p)->(ref=%ld)\n", This, This->ref);
|
|
|
|
This->ref++;
|
|
|
|
|
|
|
|
return This->ref;
|
|
|
|
}
|
2002-06-01 01:06:46 +02:00
|
|
|
|
2000-07-15 16:59:11 +02:00
|
|
|
/************************************************************************
|
|
|
|
* OLEPictureImpl_Release (IUnknown)
|
|
|
|
*
|
|
|
|
* See Windows documentation for more details on IUnknown methods.
|
|
|
|
*/
|
2002-06-01 01:06:46 +02:00
|
|
|
static ULONG WINAPI OLEPictureImpl_Release(
|
2000-07-15 16:59:11 +02:00
|
|
|
IPicture* iface)
|
|
|
|
{
|
|
|
|
ICOM_THIS(OLEPictureImpl, iface);
|
|
|
|
TRACE("(%p)->(ref=%ld)\n", This, This->ref);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Decrease the reference count on this object.
|
|
|
|
*/
|
|
|
|
This->ref--;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* If the reference count goes down to 0, perform suicide.
|
|
|
|
*/
|
|
|
|
if (This->ref==0)
|
|
|
|
{
|
|
|
|
OLEPictureImpl_Destroy(This);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
2002-06-01 01:06:46 +02:00
|
|
|
|
2000-07-15 16:59:11 +02:00
|
|
|
return This->ref;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/************************************************************************
|
|
|
|
* OLEPictureImpl_get_Handle
|
2002-06-01 01:06:46 +02:00
|
|
|
*/
|
2000-07-15 16:59:11 +02:00
|
|
|
static HRESULT WINAPI OLEPictureImpl_get_Handle(IPicture *iface,
|
|
|
|
OLE_HANDLE *phandle)
|
|
|
|
{
|
|
|
|
ICOM_THIS(OLEPictureImpl, iface);
|
|
|
|
TRACE("(%p)->(%p)\n", This, phandle);
|
|
|
|
switch(This->desc.picType) {
|
|
|
|
case PICTYPE_BITMAP:
|
2002-10-25 05:12:50 +02:00
|
|
|
*phandle = (OLE_HANDLE)This->desc.u.bmp.hbitmap;
|
2000-07-15 16:59:11 +02:00
|
|
|
break;
|
|
|
|
case PICTYPE_METAFILE:
|
2002-07-29 02:14:59 +02:00
|
|
|
*phandle = (OLE_HANDLE)This->desc.u.wmf.hmeta;
|
2000-07-15 16:59:11 +02:00
|
|
|
break;
|
|
|
|
case PICTYPE_ICON:
|
2002-10-25 05:12:50 +02:00
|
|
|
*phandle = (OLE_HANDLE)This->desc.u.icon.hicon;
|
2000-07-15 16:59:11 +02:00
|
|
|
break;
|
|
|
|
case PICTYPE_ENHMETAFILE:
|
2002-07-29 02:14:59 +02:00
|
|
|
*phandle = (OLE_HANDLE)This->desc.u.emf.hemf;
|
2000-07-15 16:59:11 +02:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
FIXME("Unimplemented type %d\n", This->desc.picType);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
TRACE("returning handle %08x\n", *phandle);
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
/************************************************************************
|
|
|
|
* OLEPictureImpl_get_hPal
|
2002-06-01 01:06:46 +02:00
|
|
|
*/
|
2000-07-15 16:59:11 +02:00
|
|
|
static HRESULT WINAPI OLEPictureImpl_get_hPal(IPicture *iface,
|
|
|
|
OLE_HANDLE *phandle)
|
|
|
|
{
|
|
|
|
ICOM_THIS(OLEPictureImpl, iface);
|
|
|
|
FIXME("(%p)->(%p): stub\n", This, phandle);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/************************************************************************
|
|
|
|
* OLEPictureImpl_get_Type
|
2002-06-01 01:06:46 +02:00
|
|
|
*/
|
2000-07-15 16:59:11 +02:00
|
|
|
static HRESULT WINAPI OLEPictureImpl_get_Type(IPicture *iface,
|
|
|
|
short *ptype)
|
|
|
|
{
|
|
|
|
ICOM_THIS(OLEPictureImpl, iface);
|
|
|
|
TRACE("(%p)->(%p): type is %d\n", This, ptype, This->desc.picType);
|
|
|
|
*ptype = This->desc.picType;
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
/************************************************************************
|
|
|
|
* OLEPictureImpl_get_Width
|
2002-06-01 01:06:46 +02:00
|
|
|
*/
|
2000-07-15 16:59:11 +02:00
|
|
|
static HRESULT WINAPI OLEPictureImpl_get_Width(IPicture *iface,
|
|
|
|
OLE_XSIZE_HIMETRIC *pwidth)
|
|
|
|
{
|
|
|
|
ICOM_THIS(OLEPictureImpl, iface);
|
|
|
|
TRACE("(%p)->(%p): width is %ld\n", This, pwidth, This->himetricWidth);
|
|
|
|
*pwidth = This->himetricWidth;
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
/************************************************************************
|
|
|
|
* OLEPictureImpl_get_Height
|
2002-06-01 01:06:46 +02:00
|
|
|
*/
|
2000-07-15 16:59:11 +02:00
|
|
|
static HRESULT WINAPI OLEPictureImpl_get_Height(IPicture *iface,
|
|
|
|
OLE_YSIZE_HIMETRIC *pheight)
|
|
|
|
{
|
|
|
|
ICOM_THIS(OLEPictureImpl, iface);
|
|
|
|
TRACE("(%p)->(%p): height is %ld\n", This, pheight, This->himetricHeight);
|
|
|
|
*pheight = This->himetricHeight;
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
/************************************************************************
|
|
|
|
* OLEPictureImpl_Render
|
2002-06-01 01:06:46 +02:00
|
|
|
*/
|
2000-07-15 16:59:11 +02:00
|
|
|
static HRESULT WINAPI OLEPictureImpl_Render(IPicture *iface, HDC hdc,
|
|
|
|
long x, long y, long cx, long cy,
|
|
|
|
OLE_XPOS_HIMETRIC xSrc,
|
|
|
|
OLE_YPOS_HIMETRIC ySrc,
|
|
|
|
OLE_XSIZE_HIMETRIC cxSrc,
|
|
|
|
OLE_YSIZE_HIMETRIC cySrc,
|
|
|
|
LPCRECT prcWBounds)
|
|
|
|
{
|
|
|
|
ICOM_THIS(OLEPictureImpl, iface);
|
2002-10-25 05:12:50 +02:00
|
|
|
TRACE("(%p)->(%p, (%ld,%ld), (%ld,%ld) <- (%ld,%ld), (%ld,%ld), %p)\n",
|
2000-07-15 16:59:11 +02:00
|
|
|
This, hdc, x, y, cx, cy, xSrc, ySrc, cxSrc, cySrc, prcWBounds);
|
|
|
|
if(prcWBounds)
|
2003-01-08 22:09:25 +01:00
|
|
|
TRACE("prcWBounds (%ld,%ld) - (%ld,%ld)\n", prcWBounds->left, prcWBounds->top,
|
2000-07-15 16:59:11 +02:00
|
|
|
prcWBounds->right, prcWBounds->bottom);
|
|
|
|
|
2001-08-06 20:52:14 +02:00
|
|
|
/*
|
|
|
|
* While the documentation suggests this to be here (or after rendering?)
|
|
|
|
* it does cause an endless recursion in my sample app. -MM 20010804
|
|
|
|
OLEPicture_SendNotify(This,DISPID_PICT_RENDER);
|
|
|
|
*/
|
|
|
|
|
2000-07-15 16:59:11 +02:00
|
|
|
switch(This->desc.picType) {
|
|
|
|
case PICTYPE_BITMAP:
|
|
|
|
{
|
|
|
|
HBITMAP hbmpOld;
|
|
|
|
HDC hdcBmp;
|
|
|
|
|
|
|
|
/* Set a mapping mode that maps bitmap pixels into HIMETRIC units.
|
|
|
|
NB y-axis gets flipped */
|
|
|
|
|
|
|
|
hdcBmp = CreateCompatibleDC(0);
|
|
|
|
SetMapMode(hdcBmp, MM_ANISOTROPIC);
|
|
|
|
SetWindowOrgEx(hdcBmp, 0, 0, NULL);
|
|
|
|
SetWindowExtEx(hdcBmp, This->himetricWidth, This->himetricHeight, NULL);
|
|
|
|
SetViewportOrgEx(hdcBmp, 0, This->origHeight, NULL);
|
|
|
|
SetViewportExtEx(hdcBmp, This->origWidth, -This->origHeight, NULL);
|
|
|
|
|
|
|
|
hbmpOld = SelectObject(hdcBmp, This->desc.u.bmp.hbitmap);
|
|
|
|
|
|
|
|
StretchBlt(hdc, x, y, cx, cy, hdcBmp, xSrc, ySrc, cxSrc, cySrc, SRCCOPY);
|
|
|
|
|
|
|
|
SelectObject(hdcBmp, hbmpOld);
|
|
|
|
DeleteDC(hdcBmp);
|
|
|
|
}
|
|
|
|
break;
|
2001-08-06 20:52:14 +02:00
|
|
|
case PICTYPE_ICON:
|
|
|
|
FIXME("Not quite correct implementation of rendering icons...\n");
|
|
|
|
DrawIcon(hdc,x,y,This->desc.u.icon.hicon);
|
|
|
|
break;
|
2000-07-15 16:59:11 +02:00
|
|
|
|
|
|
|
case PICTYPE_METAFILE:
|
|
|
|
case PICTYPE_ENHMETAFILE:
|
|
|
|
default:
|
|
|
|
FIXME("type %d not implemented\n", This->desc.picType);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
/************************************************************************
|
|
|
|
* OLEPictureImpl_set_hPal
|
2002-06-01 01:06:46 +02:00
|
|
|
*/
|
2000-07-15 16:59:11 +02:00
|
|
|
static HRESULT WINAPI OLEPictureImpl_set_hPal(IPicture *iface,
|
|
|
|
OLE_HANDLE hpal)
|
|
|
|
{
|
|
|
|
ICOM_THIS(OLEPictureImpl, iface);
|
|
|
|
FIXME("(%p)->(%08x): stub\n", This, hpal);
|
2001-08-06 20:52:14 +02:00
|
|
|
OLEPicture_SendNotify(This,DISPID_PICT_HPAL);
|
2000-07-15 16:59:11 +02:00
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/************************************************************************
|
|
|
|
* OLEPictureImpl_get_CurDC
|
2002-06-01 01:06:46 +02:00
|
|
|
*/
|
2000-07-15 16:59:11 +02:00
|
|
|
static HRESULT WINAPI OLEPictureImpl_get_CurDC(IPicture *iface,
|
|
|
|
HDC *phdc)
|
|
|
|
{
|
|
|
|
ICOM_THIS(OLEPictureImpl, iface);
|
2002-10-25 05:12:50 +02:00
|
|
|
TRACE("(%p), returning %p\n", This, This->hDCCur);
|
2001-08-06 20:52:14 +02:00
|
|
|
if (phdc) *phdc = This->hDCCur;
|
|
|
|
return S_OK;
|
2000-07-15 16:59:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/************************************************************************
|
|
|
|
* OLEPictureImpl_SelectPicture
|
2002-06-01 01:06:46 +02:00
|
|
|
*/
|
2000-07-15 16:59:11 +02:00
|
|
|
static HRESULT WINAPI OLEPictureImpl_SelectPicture(IPicture *iface,
|
|
|
|
HDC hdcIn,
|
|
|
|
HDC *phdcOut,
|
|
|
|
OLE_HANDLE *phbmpOut)
|
|
|
|
{
|
|
|
|
ICOM_THIS(OLEPictureImpl, iface);
|
2002-10-25 05:12:50 +02:00
|
|
|
TRACE("(%p)->(%p, %p, %p)\n", This, hdcIn, phdcOut, phbmpOut);
|
2001-08-06 20:52:14 +02:00
|
|
|
if (This->desc.picType == PICTYPE_BITMAP) {
|
|
|
|
SelectObject(hdcIn,This->desc.u.bmp.hbitmap);
|
|
|
|
|
|
|
|
if (phdcOut)
|
|
|
|
*phdcOut = This->hDCCur;
|
|
|
|
This->hDCCur = hdcIn;
|
|
|
|
if (phbmpOut)
|
2002-10-25 05:12:50 +02:00
|
|
|
*phbmpOut = (OLE_HANDLE)This->desc.u.bmp.hbitmap;
|
2001-08-06 20:52:14 +02:00
|
|
|
return S_OK;
|
|
|
|
} else {
|
|
|
|
FIXME("Don't know how to select picture type %d\n",This->desc.picType);
|
|
|
|
return E_FAIL;
|
|
|
|
}
|
2000-07-15 16:59:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/************************************************************************
|
|
|
|
* OLEPictureImpl_get_KeepOriginalFormat
|
2002-06-01 01:06:46 +02:00
|
|
|
*/
|
2000-07-15 16:59:11 +02:00
|
|
|
static HRESULT WINAPI OLEPictureImpl_get_KeepOriginalFormat(IPicture *iface,
|
|
|
|
BOOL *pfKeep)
|
|
|
|
{
|
|
|
|
ICOM_THIS(OLEPictureImpl, iface);
|
2001-08-06 20:52:14 +02:00
|
|
|
TRACE("(%p)->(%p)\n", This, pfKeep);
|
|
|
|
if (!pfKeep)
|
|
|
|
return E_POINTER;
|
|
|
|
*pfKeep = This->keepOrigFormat;
|
|
|
|
return S_OK;
|
2000-07-15 16:59:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/************************************************************************
|
|
|
|
* OLEPictureImpl_put_KeepOriginalFormat
|
2002-06-01 01:06:46 +02:00
|
|
|
*/
|
2000-07-15 16:59:11 +02:00
|
|
|
static HRESULT WINAPI OLEPictureImpl_put_KeepOriginalFormat(IPicture *iface,
|
|
|
|
BOOL keep)
|
|
|
|
{
|
|
|
|
ICOM_THIS(OLEPictureImpl, iface);
|
2001-08-06 20:52:14 +02:00
|
|
|
TRACE("(%p)->(%d)\n", This, keep);
|
|
|
|
This->keepOrigFormat = keep;
|
|
|
|
/* FIXME: what DISPID notification here? */
|
|
|
|
return S_OK;
|
2000-07-15 16:59:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/************************************************************************
|
|
|
|
* OLEPictureImpl_PictureChanged
|
2002-06-01 01:06:46 +02:00
|
|
|
*/
|
2000-07-15 16:59:11 +02:00
|
|
|
static HRESULT WINAPI OLEPictureImpl_PictureChanged(IPicture *iface)
|
|
|
|
{
|
|
|
|
ICOM_THIS(OLEPictureImpl, iface);
|
2001-08-06 20:52:14 +02:00
|
|
|
TRACE("(%p)->()\n", This);
|
|
|
|
OLEPicture_SendNotify(This,DISPID_PICT_HANDLE);
|
|
|
|
return S_OK;
|
2000-07-15 16:59:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/************************************************************************
|
|
|
|
* OLEPictureImpl_SaveAsFile
|
2002-06-01 01:06:46 +02:00
|
|
|
*/
|
2000-07-15 16:59:11 +02:00
|
|
|
static HRESULT WINAPI OLEPictureImpl_SaveAsFile(IPicture *iface,
|
|
|
|
IStream *pstream,
|
|
|
|
BOOL SaveMemCopy,
|
|
|
|
LONG *pcbSize)
|
|
|
|
{
|
|
|
|
ICOM_THIS(OLEPictureImpl, iface);
|
2002-11-11 20:54:22 +01:00
|
|
|
FIXME("(%p)->(%p, %d, %p), hacked stub.\n", This, pstream, SaveMemCopy, pcbSize);
|
|
|
|
return IStream_Write(pstream,This->data,This->datalen,(ULONG*)pcbSize);
|
2000-07-15 16:59:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/************************************************************************
|
|
|
|
* OLEPictureImpl_get_Attributes
|
2002-06-01 01:06:46 +02:00
|
|
|
*/
|
2000-07-15 16:59:11 +02:00
|
|
|
static HRESULT WINAPI OLEPictureImpl_get_Attributes(IPicture *iface,
|
|
|
|
DWORD *pdwAttr)
|
|
|
|
{
|
|
|
|
ICOM_THIS(OLEPictureImpl, iface);
|
2001-08-06 20:52:14 +02:00
|
|
|
TRACE("(%p)->(%p).\n", This, pdwAttr);
|
|
|
|
*pdwAttr = 0;
|
|
|
|
switch (This->desc.picType) {
|
|
|
|
case PICTYPE_BITMAP: break; /* not 'truely' scalable, see MSDN. */
|
|
|
|
case PICTYPE_ICON: *pdwAttr = PICTURE_TRANSPARENT;break;
|
|
|
|
case PICTYPE_METAFILE: *pdwAttr = PICTURE_TRANSPARENT|PICTURE_SCALABLE;break;
|
|
|
|
default:FIXME("Unknown pictype %d\n",This->desc.picType);break;
|
|
|
|
}
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/************************************************************************
|
|
|
|
* IConnectionPointContainer
|
|
|
|
*/
|
|
|
|
|
|
|
|
static HRESULT WINAPI OLEPictureImpl_IConnectionPointContainer_QueryInterface(
|
|
|
|
IConnectionPointContainer* iface,
|
|
|
|
REFIID riid,
|
|
|
|
VOID** ppvoid
|
|
|
|
) {
|
|
|
|
ICOM_THIS_From_IConnectionPointContainer(IPicture,iface);
|
|
|
|
|
|
|
|
return IPicture_QueryInterface(This,riid,ppvoid);
|
|
|
|
}
|
|
|
|
|
|
|
|
static ULONG WINAPI OLEPictureImpl_IConnectionPointContainer_AddRef(
|
|
|
|
IConnectionPointContainer* iface)
|
|
|
|
{
|
|
|
|
ICOM_THIS_From_IConnectionPointContainer(IPicture, iface);
|
|
|
|
|
|
|
|
return IPicture_AddRef(This);
|
|
|
|
}
|
|
|
|
|
|
|
|
static ULONG WINAPI OLEPictureImpl_IConnectionPointContainer_Release(
|
|
|
|
IConnectionPointContainer* iface)
|
|
|
|
{
|
|
|
|
ICOM_THIS_From_IConnectionPointContainer(IPicture, iface);
|
|
|
|
|
|
|
|
return IPicture_Release(This);
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI OLEPictureImpl_EnumConnectionPoints(
|
|
|
|
IConnectionPointContainer* iface,
|
|
|
|
IEnumConnectionPoints** ppEnum
|
|
|
|
) {
|
|
|
|
ICOM_THIS_From_IConnectionPointContainer(IPicture, iface);
|
|
|
|
|
|
|
|
FIXME("(%p,%p), stub!\n",This,ppEnum);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI OLEPictureImpl_FindConnectionPoint(
|
|
|
|
IConnectionPointContainer* iface,
|
|
|
|
REFIID riid,
|
|
|
|
IConnectionPoint **ppCP
|
|
|
|
) {
|
|
|
|
ICOM_THIS_From_IConnectionPointContainer(OLEPictureImpl, iface);
|
|
|
|
TRACE("(%p,%s,%p)\n",This,debugstr_guid(riid),ppCP);
|
2002-06-01 01:06:46 +02:00
|
|
|
if (!ppCP)
|
2001-08-06 20:52:14 +02:00
|
|
|
return E_POINTER;
|
|
|
|
*ppCP = NULL;
|
|
|
|
if (IsEqualGUID(riid,&IID_IPropertyNotifySink))
|
|
|
|
return IConnectionPoint_QueryInterface(This->pCP,&IID_IConnectionPoint,(LPVOID)ppCP);
|
|
|
|
FIXME("tried to find connection point on %s?\n",debugstr_guid(riid));
|
|
|
|
return 0x80040200;
|
|
|
|
}
|
|
|
|
/************************************************************************
|
|
|
|
* IPersistStream
|
|
|
|
*/
|
|
|
|
/************************************************************************
|
|
|
|
* OLEPictureImpl_IPersistStream_QueryInterface (IUnknown)
|
|
|
|
*
|
|
|
|
* See Windows documentation for more details on IUnknown methods.
|
|
|
|
*/
|
|
|
|
static HRESULT WINAPI OLEPictureImpl_IPersistStream_QueryInterface(
|
|
|
|
IPersistStream* iface,
|
|
|
|
REFIID riid,
|
|
|
|
VOID** ppvoid)
|
|
|
|
{
|
|
|
|
ICOM_THIS_From_IPersistStream(IPicture, iface);
|
|
|
|
|
|
|
|
return IPicture_QueryInterface(This, riid, ppvoid);
|
|
|
|
}
|
|
|
|
|
|
|
|
/************************************************************************
|
|
|
|
* OLEPictureImpl_IPersistStream_AddRef (IUnknown)
|
|
|
|
*
|
|
|
|
* See Windows documentation for more details on IUnknown methods.
|
|
|
|
*/
|
|
|
|
static ULONG WINAPI OLEPictureImpl_IPersistStream_AddRef(
|
|
|
|
IPersistStream* iface)
|
|
|
|
{
|
|
|
|
ICOM_THIS_From_IPersistStream(IPicture, iface);
|
|
|
|
|
|
|
|
return IPicture_AddRef(This);
|
|
|
|
}
|
|
|
|
|
|
|
|
/************************************************************************
|
|
|
|
* OLEPictureImpl_IPersistStream_Release (IUnknown)
|
|
|
|
*
|
|
|
|
* See Windows documentation for more details on IUnknown methods.
|
|
|
|
*/
|
|
|
|
static ULONG WINAPI OLEPictureImpl_IPersistStream_Release(
|
|
|
|
IPersistStream* iface)
|
|
|
|
{
|
|
|
|
ICOM_THIS_From_IPersistStream(IPicture, iface);
|
|
|
|
|
|
|
|
return IPicture_Release(This);
|
|
|
|
}
|
|
|
|
|
|
|
|
/************************************************************************
|
|
|
|
* OLEPictureImpl_IPersistStream_GetClassID
|
|
|
|
*/
|
|
|
|
static HRESULT WINAPI OLEPictureImpl_GetClassID(
|
|
|
|
IPersistStream* iface,CLSID* pClassID)
|
|
|
|
{
|
|
|
|
ICOM_THIS_From_IPersistStream(IPicture, iface);
|
|
|
|
FIXME("(%p),stub!\n",This);
|
2000-07-15 16:59:11 +02:00
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
2001-08-06 20:52:14 +02:00
|
|
|
/************************************************************************
|
|
|
|
* OLEPictureImpl_IPersistStream_IsDirty
|
|
|
|
*/
|
|
|
|
static HRESULT WINAPI OLEPictureImpl_IsDirty(
|
|
|
|
IPersistStream* iface)
|
|
|
|
{
|
|
|
|
ICOM_THIS_From_IPersistStream(IPicture, iface);
|
|
|
|
FIXME("(%p),stub!\n",This);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
2000-07-15 16:59:11 +02:00
|
|
|
|
2001-08-06 20:52:14 +02:00
|
|
|
#ifdef HAVE_LIBJPEG
|
|
|
|
/* for the jpeg decompressor source manager. */
|
|
|
|
static void _jpeg_init_source(j_decompress_ptr cinfo) { }
|
|
|
|
|
|
|
|
static boolean _jpeg_fill_input_buffer(j_decompress_ptr cinfo) {
|
|
|
|
ERR("(), should not get here.\n");
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void _jpeg_skip_input_data(j_decompress_ptr cinfo,long num_bytes) {
|
|
|
|
ERR("(%ld), should not get here.\n",num_bytes);
|
|
|
|
}
|
|
|
|
|
|
|
|
static boolean _jpeg_resync_to_restart(j_decompress_ptr cinfo, int desired) {
|
|
|
|
ERR("(desired=%d), should not get here.\n",desired);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
static void _jpeg_term_source(j_decompress_ptr cinfo) { }
|
|
|
|
#endif /* HAVE_LIBJPEG */
|
|
|
|
|
2003-01-09 07:04:33 +01:00
|
|
|
#ifdef HAVE_LIBGIF
|
|
|
|
struct gifdata {
|
|
|
|
unsigned char *data;
|
|
|
|
unsigned int curoff;
|
|
|
|
unsigned int len;
|
|
|
|
};
|
|
|
|
|
|
|
|
static int _gif_inputfunc(GifFileType *gif, GifByteType *data, int len) {
|
|
|
|
struct gifdata *gd = (struct gifdata*)gif->UserData;
|
|
|
|
|
|
|
|
if (len+gd->curoff > gd->len) {
|
|
|
|
FIXME("Trying to read %d bytes, but only %d available.\n",len, gd->len-gd->curoff);
|
|
|
|
len = gd->len - gd->curoff;
|
|
|
|
}
|
|
|
|
memcpy(data, gd->data+gd->curoff, len);
|
|
|
|
gd->curoff += len;
|
|
|
|
return len;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2001-08-06 20:52:14 +02:00
|
|
|
/************************************************************************
|
|
|
|
* OLEPictureImpl_IPersistStream_Load (IUnknown)
|
|
|
|
*
|
|
|
|
* Loads the binary data from the IStream. Starts at current position.
|
|
|
|
* There appears to be an 2 DWORD header:
|
|
|
|
* DWORD magic;
|
|
|
|
* DWORD len;
|
|
|
|
*
|
|
|
|
* Currently implemented: BITMAP, ICON, JPEG.
|
|
|
|
*/
|
|
|
|
static HRESULT WINAPI OLEPictureImpl_Load(IPersistStream* iface,IStream*pStm) {
|
|
|
|
HRESULT hr = E_FAIL;
|
|
|
|
ULONG xread;
|
|
|
|
BYTE *xbuf;
|
|
|
|
DWORD header[2];
|
|
|
|
WORD magic;
|
2003-01-09 07:04:33 +01:00
|
|
|
STATSTG statstg;
|
2001-08-06 20:52:14 +02:00
|
|
|
ICOM_THIS_From_IPersistStream(OLEPictureImpl, iface);
|
2003-01-09 07:04:33 +01:00
|
|
|
|
2001-08-06 20:52:14 +02:00
|
|
|
TRACE("(%p,%p)\n",This,pStm);
|
|
|
|
|
2003-01-09 07:04:33 +01:00
|
|
|
/* Sometimes we have a header, sometimes we don't. Apply some guesses to find
|
|
|
|
* out whether we do.
|
|
|
|
*/
|
|
|
|
hr=IStream_Stat(pStm,&statstg,STATFLAG_NONAME);
|
|
|
|
if (hr)
|
|
|
|
FIXME("Stat failed with hres %lx\n",hr);
|
2001-08-06 20:52:14 +02:00
|
|
|
hr=IStream_Read(pStm,header,8,&xread);
|
|
|
|
if (hr || xread!=8) {
|
|
|
|
FIXME("Failure while reading picture header (hr is %lx, nread is %ld).\n",hr,xread);
|
|
|
|
return hr;
|
|
|
|
}
|
2003-01-09 07:04:33 +01:00
|
|
|
if (header[1] > statstg.cbSize.QuadPart) {/* Incorrect header, assume none. */
|
|
|
|
xread = 8;
|
|
|
|
xbuf = This->data = HeapAlloc(GetProcessHeap(),HEAP_ZERO_MEMORY,statstg.cbSize.QuadPart);
|
|
|
|
memcpy(xbuf,&header,8);
|
|
|
|
This->datalen = statstg.cbSize.QuadPart;
|
|
|
|
while (xread < This->datalen) {
|
|
|
|
ULONG nread;
|
|
|
|
hr = IStream_Read(pStm,xbuf+xread,This->datalen-xread,&nread);
|
|
|
|
xread+=nread;
|
|
|
|
if (hr || !nread)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (xread != This->datalen)
|
|
|
|
FIXME("Could only read %ld of %d bytes in no-header case?\n",xread,This->datalen);
|
|
|
|
} else {
|
|
|
|
xread = 0;
|
|
|
|
xbuf = This->data = HeapAlloc(GetProcessHeap(),HEAP_ZERO_MEMORY,header[1]);
|
|
|
|
This->datalen = header[1];
|
|
|
|
while (xread < header[1]) {
|
|
|
|
ULONG nread;
|
|
|
|
hr = IStream_Read(pStm,xbuf+xread,header[1]-xread,&nread);
|
|
|
|
xread+=nread;
|
|
|
|
if (hr || !nread)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (xread != header[1])
|
|
|
|
FIXME("Could only read %ld of %ld bytes?\n",xread,header[1]);
|
2001-08-06 20:52:14 +02:00
|
|
|
}
|
|
|
|
magic = xbuf[0] + (xbuf[1]<<8);
|
|
|
|
switch (magic) {
|
2003-01-09 07:04:33 +01:00
|
|
|
case 0x4947: { /* GIF */
|
|
|
|
#ifdef HAVE_LIBGIF
|
|
|
|
struct gifdata gd;
|
|
|
|
GifFileType *gif;
|
|
|
|
BITMAPINFO *bmi;
|
|
|
|
HDC hdcref;
|
|
|
|
LPBYTE bytes;
|
|
|
|
int i,j,ret;
|
|
|
|
GifImageDesc *gid;
|
|
|
|
SavedImage *si;
|
|
|
|
ColorMapObject *cm;
|
|
|
|
|
|
|
|
gd.data = xbuf;
|
|
|
|
gd.curoff = 0;
|
|
|
|
gd.len = xread;
|
|
|
|
gif = DGifOpen((void*)&gd, _gif_inputfunc);
|
|
|
|
ret = DGifSlurp(gif);
|
|
|
|
if (ret == GIF_ERROR) {
|
|
|
|
FIXME("Failed reading GIF using libgif.\n");
|
|
|
|
return E_FAIL;
|
|
|
|
}
|
|
|
|
TRACE("screen height %d, width %d\n", gif->SWidth, gif->SHeight);
|
|
|
|
TRACE("color res %d, backgcolor %d\n", gif->SColorResolution, gif->SBackGroundColor);
|
|
|
|
TRACE("imgcnt %d\n", gif->ImageCount);
|
|
|
|
if (gif->ImageCount<1) {
|
|
|
|
FIXME("GIF stream does not have images inside?\n");
|
|
|
|
return E_FAIL;
|
|
|
|
}
|
|
|
|
TRACE("curimage: %d x %d, on %dx%d, interlace %d\n",
|
|
|
|
gif->Image.Width, gif->Image.Height,
|
|
|
|
gif->Image.Left, gif->Image.Top,
|
|
|
|
gif->Image.Interlace
|
|
|
|
);
|
|
|
|
/* */
|
|
|
|
bmi = HeapAlloc(GetProcessHeap(),0,sizeof(BITMAPINFOHEADER)+(1<<gif->SColorResolution)*sizeof(RGBQUAD));
|
|
|
|
bytes= HeapAlloc(GetProcessHeap(),0,gif->SWidth*gif->SHeight);
|
|
|
|
si = gif->SavedImages+0;
|
|
|
|
gid = &(si->ImageDesc);
|
|
|
|
cm = gid->ColorMap;
|
|
|
|
if (!cm) cm = gif->SColorMap;
|
|
|
|
for (i=0;i<(1<<gif->SColorResolution);i++) {
|
|
|
|
bmi->bmiColors[i].rgbRed = cm->Colors[i].Red;
|
|
|
|
bmi->bmiColors[i].rgbGreen = cm->Colors[i].Green;
|
|
|
|
bmi->bmiColors[i].rgbBlue = cm->Colors[i].Blue;
|
|
|
|
}
|
|
|
|
/* Map to in picture coordinates */
|
|
|
|
for (i=0;i<gid->Height;i++)
|
|
|
|
for (j=0;j<gid->Width;j++)
|
|
|
|
bytes[(gid->Top+i)*gif->SWidth+gid->Left+j]=si->RasterBits[i*gid->Width+j];
|
|
|
|
bmi->bmiHeader.biSize = sizeof(BITMAPINFOHEADER);
|
|
|
|
bmi->bmiHeader.biWidth = gif->SWidth;
|
|
|
|
bmi->bmiHeader.biHeight = gif->SHeight;
|
|
|
|
bmi->bmiHeader.biPlanes = 1;
|
|
|
|
bmi->bmiHeader.biBitCount = 8;
|
|
|
|
bmi->bmiHeader.biCompression = BI_RGB;
|
|
|
|
bmi->bmiHeader.biSizeImage = gif->SWidth*gif->SHeight;
|
|
|
|
bmi->bmiHeader.biXPelsPerMeter = 0;
|
|
|
|
bmi->bmiHeader.biYPelsPerMeter = 0;
|
|
|
|
bmi->bmiHeader.biClrUsed = 1 << gif->SColorResolution;
|
|
|
|
bmi->bmiHeader.biClrImportant = 0;
|
|
|
|
|
|
|
|
hdcref = GetDC(0);
|
|
|
|
This->desc.u.bmp.hbitmap=CreateDIBitmap(
|
|
|
|
hdcref,
|
|
|
|
&bmi->bmiHeader,
|
|
|
|
CBM_INIT,
|
|
|
|
bytes,
|
|
|
|
bmi,
|
|
|
|
DIB_PAL_COLORS
|
|
|
|
);
|
|
|
|
DeleteDC(hdcref);
|
|
|
|
This->desc.picType = PICTYPE_BITMAP;
|
|
|
|
OLEPictureImpl_SetBitmap(This);
|
|
|
|
DGifCloseFile(gif);
|
|
|
|
HeapFree(GetProcessHeap(),0,bytes);
|
|
|
|
return S_OK;
|
|
|
|
#else
|
|
|
|
FIXME("Trying to load GIF, but no support for libgif/libungif compiled in.\n");
|
|
|
|
return E_FAIL;
|
|
|
|
#endif
|
|
|
|
break;
|
|
|
|
}
|
2001-08-06 20:52:14 +02:00
|
|
|
case 0xd8ff: { /* JPEG */
|
|
|
|
#ifdef HAVE_LIBJPEG
|
|
|
|
struct jpeg_decompress_struct jd;
|
|
|
|
struct jpeg_error_mgr jerr;
|
|
|
|
int ret;
|
|
|
|
JDIMENSION x;
|
|
|
|
JSAMPROW samprow;
|
|
|
|
BITMAPINFOHEADER bmi;
|
|
|
|
LPBYTE bits;
|
|
|
|
HDC hdcref;
|
|
|
|
struct jpeg_source_mgr xjsm;
|
|
|
|
|
|
|
|
/* This is basically so we can use in-memory data for jpeg decompression.
|
|
|
|
* We need to have all the functions.
|
|
|
|
*/
|
|
|
|
xjsm.next_input_byte = xbuf;
|
|
|
|
xjsm.bytes_in_buffer = xread;
|
|
|
|
xjsm.init_source = _jpeg_init_source;
|
|
|
|
xjsm.fill_input_buffer = _jpeg_fill_input_buffer;
|
|
|
|
xjsm.skip_input_data = _jpeg_skip_input_data;
|
|
|
|
xjsm.resync_to_restart = _jpeg_resync_to_restart;
|
|
|
|
xjsm.term_source = _jpeg_term_source;
|
|
|
|
|
|
|
|
jd.err = jpeg_std_error(&jerr);
|
|
|
|
jpeg_create_decompress(&jd);
|
|
|
|
jd.src = &xjsm;
|
|
|
|
ret=jpeg_read_header(&jd,TRUE);
|
|
|
|
jpeg_start_decompress(&jd);
|
|
|
|
if (ret != JPEG_HEADER_OK) {
|
|
|
|
ERR("Jpeg image in stream has bad format, read header returned %d.\n",ret);
|
|
|
|
HeapFree(GetProcessHeap(),0,xbuf);
|
|
|
|
return E_FAIL;
|
|
|
|
}
|
|
|
|
bits = HeapAlloc(GetProcessHeap(),HEAP_ZERO_MEMORY,(jd.output_height+1)*jd.output_width*jd.output_components);
|
|
|
|
samprow=HeapAlloc(GetProcessHeap(),HEAP_ZERO_MEMORY,jd.output_width*jd.output_components);
|
|
|
|
while ( jd.output_scanline<jd.output_height ) {
|
|
|
|
x = jpeg_read_scanlines(&jd,&samprow,1);
|
|
|
|
if (x != 1) {
|
|
|
|
FIXME("failed to read current scanline?\n");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
memcpy( bits+jd.output_scanline*jd.output_width*jd.output_components,
|
|
|
|
samprow,
|
|
|
|
jd.output_width*jd.output_components
|
|
|
|
);
|
|
|
|
}
|
|
|
|
bmi.biSize = sizeof(bmi);
|
|
|
|
bmi.biWidth = jd.output_width;
|
|
|
|
bmi.biHeight = -jd.output_height;
|
|
|
|
bmi.biPlanes = 1;
|
|
|
|
bmi.biBitCount = jd.output_components<<3;
|
|
|
|
bmi.biCompression = BI_RGB;
|
|
|
|
bmi.biSizeImage = jd.output_height*jd.output_width*jd.output_components;
|
|
|
|
bmi.biXPelsPerMeter = 0;
|
|
|
|
bmi.biYPelsPerMeter = 0;
|
|
|
|
bmi.biClrUsed = 0;
|
|
|
|
bmi.biClrImportant = 0;
|
|
|
|
|
|
|
|
HeapFree(GetProcessHeap(),0,samprow);
|
|
|
|
jpeg_finish_decompress(&jd);
|
|
|
|
jpeg_destroy_decompress(&jd);
|
2001-08-20 20:00:10 +02:00
|
|
|
hdcref = GetDC(0);
|
2001-08-06 20:52:14 +02:00
|
|
|
This->desc.u.bmp.hbitmap=CreateDIBitmap(
|
|
|
|
hdcref,
|
|
|
|
&bmi,
|
|
|
|
CBM_INIT,
|
|
|
|
bits,
|
|
|
|
(BITMAPINFO*)&bmi,
|
|
|
|
DIB_RGB_COLORS
|
|
|
|
);
|
|
|
|
DeleteDC(hdcref);
|
|
|
|
This->desc.picType = PICTYPE_BITMAP;
|
|
|
|
OLEPictureImpl_SetBitmap(This);
|
|
|
|
hr = S_OK;
|
|
|
|
HeapFree(GetProcessHeap(),0,bits);
|
|
|
|
#else
|
|
|
|
ERR("Trying to load JPEG picture, but JPEG supported not compiled in.\n");
|
|
|
|
hr = E_FAIL;
|
|
|
|
#endif
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case 0x4d42: { /* Bitmap */
|
|
|
|
BITMAPFILEHEADER *bfh = (BITMAPFILEHEADER*)xbuf;
|
|
|
|
BITMAPINFO *bi = (BITMAPINFO*)(bfh+1);
|
|
|
|
HDC hdcref;
|
|
|
|
|
|
|
|
/* Does not matter whether this is a coreheader or not, we only use
|
|
|
|
* components which are in both
|
|
|
|
*/
|
2001-08-20 20:00:10 +02:00
|
|
|
hdcref = GetDC(0);
|
2001-08-06 20:52:14 +02:00
|
|
|
This->desc.u.bmp.hbitmap = CreateDIBitmap(
|
|
|
|
hdcref,
|
|
|
|
&(bi->bmiHeader),
|
|
|
|
CBM_INIT,
|
|
|
|
xbuf+bfh->bfOffBits,
|
|
|
|
bi,
|
|
|
|
(bi->bmiHeader.biBitCount<=8)?DIB_PAL_COLORS:DIB_RGB_COLORS
|
|
|
|
);
|
|
|
|
DeleteDC(hdcref);
|
|
|
|
This->desc.picType = PICTYPE_BITMAP;
|
|
|
|
OLEPictureImpl_SetBitmap(This);
|
|
|
|
hr = S_OK;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case 0x0000: { /* ICON , first word is dwReserved */
|
|
|
|
HICON hicon;
|
|
|
|
CURSORICONFILEDIR *cifd = (CURSORICONFILEDIR*)xbuf;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
/*
|
|
|
|
FIXME("icon.idReserved=%d\n",cifd->idReserved);
|
|
|
|
FIXME("icon.idType=%d\n",cifd->idType);
|
|
|
|
FIXME("icon.idCount=%d\n",cifd->idCount);
|
|
|
|
|
|
|
|
for (i=0;i<cifd->idCount;i++) {
|
|
|
|
FIXME("[%d] width %d\n",i,cifd->idEntries[i].bWidth);
|
|
|
|
FIXME("[%d] height %d\n",i,cifd->idEntries[i].bHeight);
|
|
|
|
FIXME("[%d] bColorCount %d\n",i,cifd->idEntries[i].bColorCount);
|
|
|
|
FIXME("[%d] bReserved %d\n",i,cifd->idEntries[i].bReserved);
|
|
|
|
FIXME("[%d] xHotspot %d\n",i,cifd->idEntries[i].xHotspot);
|
|
|
|
FIXME("[%d] yHotspot %d\n",i,cifd->idEntries[i].yHotspot);
|
|
|
|
FIXME("[%d] dwDIBSize %d\n",i,cifd->idEntries[i].dwDIBSize);
|
|
|
|
FIXME("[%d] dwDIBOffset %d\n",i,cifd->idEntries[i].dwDIBOffset);
|
|
|
|
}
|
|
|
|
*/
|
|
|
|
i=0;
|
|
|
|
/* If we have more than one icon, try to find the best.
|
|
|
|
* this currently means '32 pixel wide'.
|
|
|
|
*/
|
|
|
|
if (cifd->idCount!=1) {
|
|
|
|
for (i=0;i<cifd->idCount;i++) {
|
|
|
|
if (cifd->idEntries[i].bWidth == 32)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (i==cifd->idCount) i=0;
|
|
|
|
}
|
|
|
|
|
|
|
|
hicon = CreateIconFromResourceEx(
|
|
|
|
xbuf+cifd->idEntries[i].dwDIBOffset,
|
|
|
|
cifd->idEntries[i].dwDIBSize,
|
|
|
|
TRUE, /* is icon */
|
|
|
|
0x00030000,
|
|
|
|
cifd->idEntries[i].bWidth,
|
|
|
|
cifd->idEntries[i].bHeight,
|
|
|
|
0
|
|
|
|
);
|
|
|
|
if (!hicon) {
|
|
|
|
FIXME("CreateIcon failed.\n");
|
|
|
|
hr = E_FAIL;
|
|
|
|
} else {
|
|
|
|
This->desc.picType = PICTYPE_ICON;
|
|
|
|
This->desc.u.icon.hicon = hicon;
|
2003-01-02 18:54:57 +01:00
|
|
|
This->himetricWidth = cifd->idEntries[i].bWidth;
|
|
|
|
This->himetricHeight = cifd->idEntries[i].bHeight;
|
2001-08-06 20:52:14 +02:00
|
|
|
hr = S_OK;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
default:
|
2003-01-09 07:04:33 +01:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
FIXME("Unknown magic %04x, %ld read bytes:\n",magic,xread);
|
2001-08-06 20:52:14 +02:00
|
|
|
hr=E_FAIL;
|
2003-01-09 07:04:33 +01:00
|
|
|
for (i=0;i<xread+8;i++) {
|
|
|
|
if (i<8) MESSAGE("%02x ",((unsigned char*)&header)[i]);
|
|
|
|
else MESSAGE("%02x ",xbuf[i-8]);
|
|
|
|
if (i % 10 == 9) MESSAGE("\n");
|
|
|
|
}
|
|
|
|
MESSAGE("\n");
|
2001-08-06 20:52:14 +02:00
|
|
|
break;
|
|
|
|
}
|
2003-01-09 07:04:33 +01:00
|
|
|
}
|
2001-08-06 20:52:14 +02:00
|
|
|
|
|
|
|
/* FIXME: this notify is not really documented */
|
|
|
|
if (hr==S_OK)
|
|
|
|
OLEPicture_SendNotify(This,DISPID_PICT_TYPE);
|
|
|
|
return hr;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI OLEPictureImpl_Save(
|
|
|
|
IPersistStream* iface,IStream*pStm,BOOL fClearDirty)
|
|
|
|
{
|
|
|
|
ICOM_THIS_From_IPersistStream(IPicture, iface);
|
|
|
|
FIXME("(%p,%p,%d),stub!\n",This,pStm,fClearDirty);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI OLEPictureImpl_GetSizeMax(
|
|
|
|
IPersistStream* iface,ULARGE_INTEGER*pcbSize)
|
|
|
|
{
|
|
|
|
ICOM_THIS_From_IPersistStream(IPicture, iface);
|
|
|
|
FIXME("(%p,%p),stub!\n",This,pcbSize);
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
2000-07-15 16:59:11 +02:00
|
|
|
|
|
|
|
/************************************************************************
|
|
|
|
* IDispatch
|
|
|
|
*/
|
|
|
|
/************************************************************************
|
|
|
|
* OLEPictureImpl_IDispatch_QueryInterface (IUnknown)
|
|
|
|
*
|
|
|
|
* See Windows documentation for more details on IUnknown methods.
|
|
|
|
*/
|
|
|
|
static HRESULT WINAPI OLEPictureImpl_IDispatch_QueryInterface(
|
|
|
|
IDispatch* iface,
|
|
|
|
REFIID riid,
|
|
|
|
VOID** ppvoid)
|
|
|
|
{
|
|
|
|
ICOM_THIS_From_IDispatch(IPicture, iface);
|
|
|
|
|
|
|
|
return IPicture_QueryInterface(This, riid, ppvoid);
|
|
|
|
}
|
|
|
|
|
|
|
|
/************************************************************************
|
|
|
|
* OLEPictureImpl_IDispatch_AddRef (IUnknown)
|
|
|
|
*
|
|
|
|
* See Windows documentation for more details on IUnknown methods.
|
|
|
|
*/
|
|
|
|
static ULONG WINAPI OLEPictureImpl_IDispatch_AddRef(
|
|
|
|
IDispatch* iface)
|
|
|
|
{
|
|
|
|
ICOM_THIS_From_IDispatch(IPicture, iface);
|
|
|
|
|
|
|
|
return IPicture_AddRef(This);
|
|
|
|
}
|
|
|
|
|
|
|
|
/************************************************************************
|
|
|
|
* OLEPictureImpl_IDispatch_Release (IUnknown)
|
|
|
|
*
|
|
|
|
* See Windows documentation for more details on IUnknown methods.
|
|
|
|
*/
|
|
|
|
static ULONG WINAPI OLEPictureImpl_IDispatch_Release(
|
|
|
|
IDispatch* iface)
|
|
|
|
{
|
|
|
|
ICOM_THIS_From_IDispatch(IPicture, iface);
|
|
|
|
|
|
|
|
return IPicture_Release(This);
|
|
|
|
}
|
|
|
|
|
|
|
|
/************************************************************************
|
|
|
|
* OLEPictureImpl_GetTypeInfoCount (IDispatch)
|
|
|
|
*
|
|
|
|
* See Windows documentation for more details on IDispatch methods.
|
|
|
|
*/
|
|
|
|
static HRESULT WINAPI OLEPictureImpl_GetTypeInfoCount(
|
2002-06-01 01:06:46 +02:00
|
|
|
IDispatch* iface,
|
2000-07-15 16:59:11 +02:00
|
|
|
unsigned int* pctinfo)
|
|
|
|
{
|
|
|
|
FIXME("():Stub\n");
|
|
|
|
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/************************************************************************
|
|
|
|
* OLEPictureImpl_GetTypeInfo (IDispatch)
|
|
|
|
*
|
|
|
|
* See Windows documentation for more details on IDispatch methods.
|
|
|
|
*/
|
|
|
|
static HRESULT WINAPI OLEPictureImpl_GetTypeInfo(
|
2002-06-01 01:06:46 +02:00
|
|
|
IDispatch* iface,
|
2000-07-15 16:59:11 +02:00
|
|
|
UINT iTInfo,
|
2002-06-01 01:06:46 +02:00
|
|
|
LCID lcid,
|
2000-07-15 16:59:11 +02:00
|
|
|
ITypeInfo** ppTInfo)
|
|
|
|
{
|
|
|
|
FIXME("():Stub\n");
|
|
|
|
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/************************************************************************
|
|
|
|
* OLEPictureImpl_GetIDsOfNames (IDispatch)
|
|
|
|
*
|
|
|
|
* See Windows documentation for more details on IDispatch methods.
|
|
|
|
*/
|
|
|
|
static HRESULT WINAPI OLEPictureImpl_GetIDsOfNames(
|
|
|
|
IDispatch* iface,
|
2002-06-01 01:06:46 +02:00
|
|
|
REFIID riid,
|
|
|
|
LPOLESTR* rgszNames,
|
|
|
|
UINT cNames,
|
2000-07-15 16:59:11 +02:00
|
|
|
LCID lcid,
|
|
|
|
DISPID* rgDispId)
|
|
|
|
{
|
|
|
|
FIXME("():Stub\n");
|
|
|
|
|
|
|
|
return E_NOTIMPL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/************************************************************************
|
|
|
|
* OLEPictureImpl_Invoke (IDispatch)
|
|
|
|
*
|
|
|
|
* See Windows documentation for more details on IDispatch methods.
|
|
|
|
*/
|
|
|
|
static HRESULT WINAPI OLEPictureImpl_Invoke(
|
|
|
|
IDispatch* iface,
|
2002-06-01 01:06:46 +02:00
|
|
|
DISPID dispIdMember,
|
|
|
|
REFIID riid,
|
|
|
|
LCID lcid,
|
2000-07-15 16:59:11 +02:00
|
|
|
WORD wFlags,
|
|
|
|
DISPPARAMS* pDispParams,
|
2002-06-01 01:06:46 +02:00
|
|
|
VARIANT* pVarResult,
|
2000-07-15 16:59:11 +02:00
|
|
|
EXCEPINFO* pExepInfo,
|
|
|
|
UINT* puArgErr)
|
|
|
|
{
|
2001-08-06 20:52:14 +02:00
|
|
|
FIXME("(dispid: %ld):Stub\n",dispIdMember);
|
2000-07-15 16:59:11 +02:00
|
|
|
|
2001-08-06 20:52:14 +02:00
|
|
|
VariantInit(pVarResult);
|
2001-08-21 19:03:10 +02:00
|
|
|
V_VT(pVarResult) = VT_BOOL;
|
|
|
|
V_UNION(pVarResult,boolVal) = FALSE;
|
2001-08-06 20:52:14 +02:00
|
|
|
return S_OK;
|
2000-07-15 16:59:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static ICOM_VTABLE(IPicture) OLEPictureImpl_VTable =
|
|
|
|
{
|
|
|
|
ICOM_MSVTABLE_COMPAT_DummyRTTIVALUE
|
|
|
|
OLEPictureImpl_QueryInterface,
|
|
|
|
OLEPictureImpl_AddRef,
|
|
|
|
OLEPictureImpl_Release,
|
|
|
|
OLEPictureImpl_get_Handle,
|
|
|
|
OLEPictureImpl_get_hPal,
|
|
|
|
OLEPictureImpl_get_Type,
|
|
|
|
OLEPictureImpl_get_Width,
|
|
|
|
OLEPictureImpl_get_Height,
|
|
|
|
OLEPictureImpl_Render,
|
|
|
|
OLEPictureImpl_set_hPal,
|
|
|
|
OLEPictureImpl_get_CurDC,
|
|
|
|
OLEPictureImpl_SelectPicture,
|
|
|
|
OLEPictureImpl_get_KeepOriginalFormat,
|
|
|
|
OLEPictureImpl_put_KeepOriginalFormat,
|
|
|
|
OLEPictureImpl_PictureChanged,
|
|
|
|
OLEPictureImpl_SaveAsFile,
|
|
|
|
OLEPictureImpl_get_Attributes
|
|
|
|
};
|
|
|
|
|
|
|
|
static ICOM_VTABLE(IDispatch) OLEPictureImpl_IDispatch_VTable =
|
|
|
|
{
|
|
|
|
ICOM_MSVTABLE_COMPAT_DummyRTTIVALUE
|
|
|
|
OLEPictureImpl_IDispatch_QueryInterface,
|
|
|
|
OLEPictureImpl_IDispatch_AddRef,
|
|
|
|
OLEPictureImpl_IDispatch_Release,
|
|
|
|
OLEPictureImpl_GetTypeInfoCount,
|
|
|
|
OLEPictureImpl_GetTypeInfo,
|
|
|
|
OLEPictureImpl_GetIDsOfNames,
|
|
|
|
OLEPictureImpl_Invoke
|
|
|
|
};
|
|
|
|
|
2001-08-06 20:52:14 +02:00
|
|
|
static ICOM_VTABLE(IPersistStream) OLEPictureImpl_IPersistStream_VTable =
|
|
|
|
{
|
|
|
|
ICOM_MSVTABLE_COMPAT_DummyRTTIVALUE
|
|
|
|
OLEPictureImpl_IPersistStream_QueryInterface,
|
|
|
|
OLEPictureImpl_IPersistStream_AddRef,
|
|
|
|
OLEPictureImpl_IPersistStream_Release,
|
|
|
|
OLEPictureImpl_GetClassID,
|
|
|
|
OLEPictureImpl_IsDirty,
|
|
|
|
OLEPictureImpl_Load,
|
|
|
|
OLEPictureImpl_Save,
|
|
|
|
OLEPictureImpl_GetSizeMax
|
|
|
|
};
|
|
|
|
|
|
|
|
static ICOM_VTABLE(IConnectionPointContainer) OLEPictureImpl_IConnectionPointContainer_VTable =
|
|
|
|
{
|
|
|
|
ICOM_MSVTABLE_COMPAT_DummyRTTIVALUE
|
|
|
|
OLEPictureImpl_IConnectionPointContainer_QueryInterface,
|
|
|
|
OLEPictureImpl_IConnectionPointContainer_AddRef,
|
|
|
|
OLEPictureImpl_IConnectionPointContainer_Release,
|
|
|
|
OLEPictureImpl_EnumConnectionPoints,
|
|
|
|
OLEPictureImpl_FindConnectionPoint
|
|
|
|
};
|
|
|
|
|
2000-07-15 16:59:11 +02:00
|
|
|
/***********************************************************************
|
2001-06-19 20:20:47 +02:00
|
|
|
* OleCreatePictureIndirect (OLEAUT32.419)
|
2000-07-15 16:59:11 +02:00
|
|
|
*/
|
|
|
|
HRESULT WINAPI OleCreatePictureIndirect(LPPICTDESC lpPictDesc, REFIID riid,
|
|
|
|
BOOL fOwn, LPVOID *ppvObj )
|
|
|
|
{
|
|
|
|
OLEPictureImpl* newPict = NULL;
|
|
|
|
HRESULT hr = S_OK;
|
|
|
|
|
|
|
|
TRACE("(%p,%p,%d,%p)\n", lpPictDesc, riid, fOwn, ppvObj);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Sanity check
|
|
|
|
*/
|
|
|
|
if (ppvObj==0)
|
|
|
|
return E_POINTER;
|
|
|
|
|
|
|
|
*ppvObj = NULL;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Try to construct a new instance of the class.
|
|
|
|
*/
|
|
|
|
newPict = OLEPictureImpl_Construct(lpPictDesc, fOwn);
|
|
|
|
|
|
|
|
if (newPict == NULL)
|
|
|
|
return E_OUTOFMEMORY;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Make sure it supports the interface required by the caller.
|
|
|
|
*/
|
|
|
|
hr = IPicture_QueryInterface((IPicture*)newPict, riid, ppvObj);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Release the reference obtained in the constructor. If
|
|
|
|
* the QueryInterface was unsuccessful, it will free the class.
|
|
|
|
*/
|
|
|
|
IPicture_Release((IPicture*)newPict);
|
|
|
|
|
|
|
|
return hr;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/***********************************************************************
|
2001-06-19 20:20:47 +02:00
|
|
|
* OleLoadPicture (OLEAUT32.418)
|
2000-07-15 16:59:11 +02:00
|
|
|
*/
|
|
|
|
HRESULT WINAPI OleLoadPicture( LPSTREAM lpstream, LONG lSize, BOOL fRunmode,
|
2001-08-06 20:52:14 +02:00
|
|
|
REFIID riid, LPVOID *ppvObj )
|
2000-07-15 16:59:11 +02:00
|
|
|
{
|
2001-08-06 20:52:14 +02:00
|
|
|
LPPERSISTSTREAM ps;
|
|
|
|
IPicture *newpic;
|
|
|
|
HRESULT hr;
|
|
|
|
|
|
|
|
TRACE("(%p,%ld,%d,%s,%p), partially implemented.\n",
|
|
|
|
lpstream, lSize, fRunmode, debugstr_guid(riid), ppvObj);
|
|
|
|
|
|
|
|
hr = OleCreatePictureIndirect(NULL,riid,!fRunmode,(LPVOID*)&newpic);
|
|
|
|
if (hr)
|
|
|
|
return hr;
|
|
|
|
hr = IPicture_QueryInterface(newpic,&IID_IPersistStream, (LPVOID*)&ps);
|
|
|
|
if (hr) {
|
|
|
|
FIXME("Could not get IPersistStream iface from Ole Picture?\n");
|
|
|
|
IPicture_Release(newpic);
|
|
|
|
*ppvObj = NULL;
|
|
|
|
return hr;
|
|
|
|
}
|
|
|
|
IPersistStream_Load(ps,lpstream);
|
|
|
|
IPersistStream_Release(ps);
|
|
|
|
hr = IPicture_QueryInterface(newpic,riid,ppvObj);
|
|
|
|
if (hr)
|
|
|
|
FIXME("Failed to get interface %s from IPicture.\n",debugstr_guid(riid));
|
|
|
|
IPicture_Release(newpic);
|
|
|
|
return hr;
|
2000-07-15 16:59:11 +02:00
|
|
|
}
|
2001-04-10 23:17:04 +02:00
|
|
|
|
|
|
|
/***********************************************************************
|
2002-07-19 02:30:16 +02:00
|
|
|
* OleLoadPictureEx (OLEAUT32.401)
|
2001-04-10 23:17:04 +02:00
|
|
|
*/
|
|
|
|
HRESULT WINAPI OleLoadPictureEx( LPSTREAM lpstream, LONG lSize, BOOL fRunmode,
|
2002-11-11 20:54:22 +01:00
|
|
|
REFIID riid, DWORD xsiz, DWORD ysiz, DWORD flags, LPVOID *ppvObj )
|
2001-04-10 23:17:04 +02:00
|
|
|
{
|
2002-11-11 20:54:22 +01:00
|
|
|
LPPERSISTSTREAM ps;
|
|
|
|
IPicture *newpic;
|
|
|
|
HRESULT hr;
|
|
|
|
|
|
|
|
FIXME("(%p,%ld,%d,%s,x=%ld,y=%ld,f=%lx,%p), partially implemented.\n",
|
|
|
|
lpstream, lSize, fRunmode, debugstr_guid(riid), xsiz, ysiz, flags, ppvObj);
|
|
|
|
|
|
|
|
hr = OleCreatePictureIndirect(NULL,riid,!fRunmode,(LPVOID*)&newpic);
|
|
|
|
if (hr)
|
|
|
|
return hr;
|
|
|
|
hr = IPicture_QueryInterface(newpic,&IID_IPersistStream, (LPVOID*)&ps);
|
|
|
|
if (hr) {
|
|
|
|
FIXME("Could not get IPersistStream iface from Ole Picture?\n");
|
|
|
|
IPicture_Release(newpic);
|
|
|
|
*ppvObj = NULL;
|
|
|
|
return hr;
|
|
|
|
}
|
|
|
|
IPersistStream_Load(ps,lpstream);
|
|
|
|
IPersistStream_Release(ps);
|
|
|
|
hr = IPicture_QueryInterface(newpic,riid,ppvObj);
|
|
|
|
if (hr)
|
|
|
|
FIXME("Failed to get interface %s from IPicture.\n",debugstr_guid(riid));
|
|
|
|
IPicture_Release(newpic);
|
|
|
|
return hr;
|
2001-04-10 23:17:04 +02:00
|
|
|
}
|
2003-01-02 18:54:57 +01:00
|
|
|
|
|
|
|
/*******************************************************************************
|
|
|
|
* StdPic ClassFactory
|
|
|
|
*/
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
/* IUnknown fields */
|
|
|
|
ICOM_VFIELD(IClassFactory);
|
|
|
|
DWORD ref;
|
|
|
|
} IClassFactoryImpl;
|
|
|
|
|
|
|
|
static HRESULT WINAPI
|
|
|
|
SPCF_QueryInterface(LPCLASSFACTORY iface,REFIID riid,LPVOID *ppobj) {
|
|
|
|
ICOM_THIS(IClassFactoryImpl,iface);
|
|
|
|
|
|
|
|
FIXME("(%p)->(%s,%p),stub!\n",This,debugstr_guid(riid),ppobj);
|
|
|
|
return E_NOINTERFACE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static ULONG WINAPI
|
|
|
|
SPCF_AddRef(LPCLASSFACTORY iface) {
|
|
|
|
ICOM_THIS(IClassFactoryImpl,iface);
|
|
|
|
return ++(This->ref);
|
|
|
|
}
|
|
|
|
|
|
|
|
static ULONG WINAPI SPCF_Release(LPCLASSFACTORY iface) {
|
|
|
|
ICOM_THIS(IClassFactoryImpl,iface);
|
|
|
|
/* static class, won't be freed */
|
|
|
|
return --(This->ref);
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI SPCF_CreateInstance(
|
|
|
|
LPCLASSFACTORY iface,LPUNKNOWN pOuter,REFIID riid,LPVOID *ppobj
|
|
|
|
) {
|
|
|
|
PICTDESC pd;
|
|
|
|
|
|
|
|
FIXME("(%p,%p,%s,%p), creating stdpic with PICTYPE_NONE.\n",iface,pOuter,debugstr_guid(riid),ppobj);
|
|
|
|
pd.cbSizeofstruct = sizeof(pd);
|
|
|
|
pd.picType = PICTYPE_NONE;
|
|
|
|
return OleCreatePictureIndirect(&pd,riid,TRUE,ppobj);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
static HRESULT WINAPI SPCF_LockServer(LPCLASSFACTORY iface,BOOL dolock) {
|
|
|
|
ICOM_THIS(IClassFactoryImpl,iface);
|
|
|
|
FIXME("(%p)->(%d),stub!\n",This,dolock);
|
|
|
|
return S_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static ICOM_VTABLE(IClassFactory) SPCF_Vtbl = {
|
|
|
|
ICOM_MSVTABLE_COMPAT_DummyRTTIVALUE
|
|
|
|
SPCF_QueryInterface,
|
|
|
|
SPCF_AddRef,
|
|
|
|
SPCF_Release,
|
|
|
|
SPCF_CreateInstance,
|
|
|
|
SPCF_LockServer
|
|
|
|
};
|
|
|
|
static IClassFactoryImpl STDPIC_CF = {&SPCF_Vtbl, 1 };
|
|
|
|
|
|
|
|
void _get_STDPIC_CF(LPVOID *ppv) { *ppv = (LPVOID)&STDPIC_CF; }
|