IIPOBJ.CPP
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:4k
源码类别:

Windows编程

开发平台:

Visual C++

  1. /*
  2.  * IIPOBJ.CPP
  3.  *
  4.  * Template IOleInPlaceObject interface implementation.
  5.  *
  6.  * Copyright (c)1993-1995 Microsoft Corporation, All Rights Reserved
  7.  *
  8.  * Kraig Brockschmidt, Microsoft
  9.  * Internet  :  kraigb@microsoft.com
  10.  * Compuserve:  >INTERNET:kraigb@microsoft.com
  11.  */
  12. #include "iipobj.h"
  13. /*
  14.  * CImpIOleInPlaceObject::CImpIOleInPlaceObject
  15.  * CImpIOleInPlaceObject::~CImpIOleInPlaceObject
  16.  *
  17.  * Parameters (Constructor):
  18.  *  pObj            LPVOID of the object we're in.
  19.  *  pUnkOuter       LPUNKNOWN to which we delegate.
  20.  */
  21. CImpIOleInPlaceObject::CImpIOleInPlaceObject(LPVOID pObj
  22.     , LPUNKNOWN pUnkOuter)
  23.     {
  24.     m_cRef=0;
  25.     m_pObj=pObj;
  26.     m_pUnkOuter=pUnkOuter;
  27.     return;
  28.     }
  29. CImpIOleInPlaceObject::~CImpIOleInPlaceObject(void)
  30.     {
  31.     return;
  32.     }
  33. /*
  34.  * CImpIOleInPlaceObject::QueryInterface
  35.  * CImpIOleInPlaceObject::AddRef
  36.  * CImpIOleInPlaceObject::Release
  37.  *
  38.  * Purpose:
  39.  *  Delegating IUnknown members for CImpIOleInPlaceObject.
  40.  */
  41. STDMETHODIMP CImpIOleInPlaceObject::QueryInterface(REFIID riid
  42.     , LPVOID *ppv)
  43.     {
  44.     return m_pUnkOuter->QueryInterface(riid, ppv);
  45.     }
  46. STDMETHODIMP_(ULONG) CImpIOleInPlaceObject::AddRef(void)
  47.     {
  48.     ++m_cRef;
  49.     return m_pUnkOuter->AddRef();
  50.     }
  51. STDMETHODIMP_(ULONG) CImpIOleInPlaceObject::Release(void)
  52.     {
  53.     --m_cRef;
  54.     return m_pUnkOuter->Release();
  55.     }
  56. /*
  57.  * CImpIOleInPlaceObject::GetWindow
  58.  *
  59.  * Purpose:
  60.  *  Retrieves the handle of the window associated with the object on
  61.  *  which this interface is implemented.
  62.  *
  63.  * Parameters:
  64.  *  phWnd           HWND * in which to store the window handle.
  65.  *
  66.  * Return Value:
  67.  *  HRESULT         NOERROR if successful, E_FAIL if no window.
  68.  */
  69. STDMETHODIMP CImpIOleInPlaceObject::GetWindow(HWND *phWnd)
  70.     {
  71.     return ResultFromScode(E_FAIL);
  72.     }
  73. /*
  74.  * CImpIOleInPlaceObject::ContextSensitiveHelp
  75.  *
  76.  * Purpose:
  77.  *  Instructs the object on which this interface is implemented to
  78.  *  enter or leave a context-sensitive help mode.
  79.  *
  80.  * Parameters:
  81.  *  fEnterMode      BOOL TRUE to enter the mode, FALSE otherwise.
  82.  */
  83. STDMETHODIMP CImpIOleInPlaceObject::ContextSensitiveHelp(
  84.     BOOL fEnterMode)
  85.     {
  86.     return ResultFromScode(E_NOTIMPL);
  87.     }
  88. /*
  89.  * CImpIOleInPlaceObject::InPlaceDeactivate
  90.  *
  91.  * Purpose:
  92.  *  Instructs the object to deactivate itself from an in-place
  93.  *  state and to discard any Undo state.
  94.  *
  95.  * Parameters:
  96.  *  None
  97.  */
  98. STDMETHODIMP CImpIOleInPlaceObject::InPlaceDeactivate(void)
  99.     {
  100.     return ResultFromScode(E_NOTIMPL);
  101.     }
  102. /*
  103.  * CImpIOleInPlaceObject::UIDeactivate
  104.  *
  105.  * Purpose:
  106.  *  Instructs the object to just remove any in-place user
  107.  *  interface but to do no other deactivation.  The object
  108.  *  should just hide the UI components but not destroy them
  109.  *  until InPlaceDeactivate is called.
  110.  *
  111.  * Parameters:
  112.  *  None
  113.  */
  114. STDMETHODIMP CImpIOleInPlaceObject::UIDeactivate(void)
  115.     {
  116.     return ResultFromScode(E_NOTIMPL);
  117.     }
  118. /*
  119.  * CImpIOleInPlaceObject::SetObjectRects
  120.  *
  121.  * Purpose:
  122.  *  Provides the object with rectangles describing the position
  123.  *  of the object in the container window as well as its visible
  124.  *  area.  The object must reposition according to these rectangles.
  125.  *
  126.  * Parameters:
  127.  *  prcPos          LPCRECT providing the object's full rectangle
  128.  *                  relative to the continer's document.  The object
  129.  *                  should scale to this rectangle.
  130.  *  prcClip         LPCRECT describing the visible area of the object
  131.  *                  which should not draw outside these areas.
  132.  */
  133. STDMETHODIMP CImpIOleInPlaceObject::SetObjectRects(LPCRECT prcPos
  134.     , LPCRECT prcClip)
  135.     {
  136.     return ResultFromScode(E_NOTIMPL);
  137.     }
  138. /*
  139.  * CImpIOleInPlaceObject::ReactivateAndUndo
  140.  *
  141.  * Purpose:
  142.  *  Instructs the object to reactivate itself in-place and perform
  143.  *  whatever Undo means for it.
  144.  *
  145.  * Parameters:
  146.  *  None
  147.  */
  148. STDMETHODIMP CImpIOleInPlaceObject::ReactivateAndUndo(void)
  149.     {
  150.     return ResultFromScode(E_NOTIMPL);
  151.     }