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

Windows编程

开发平台:

Visual C++

  1. /*
  2.  * DROPSRC.CPP
  3.  * Component Cosmo Chapter 13
  4.  *
  5.  * Implementation of a DropSource object.
  6.  *
  7.  * Copyright (c)1993-1995 Microsoft Corporation, All Rights Reserved
  8.  *
  9.  * Kraig Brockschmidt, Microsoft
  10.  * Internet  :  kraigb@microsoft.com
  11.  * Compuserve:  >INTERNET:kraigb@microsoft.com
  12.  */
  13. #include "cocosmo.h"
  14. /*
  15.  * CDropSource::CDropSource
  16.  * CDropSource::~CDropSource
  17.  *
  18.  * Constructor Parameters:
  19.  *  pDoc            PCCosmoDoc containing this interface.
  20.  */
  21. CDropSource::CDropSource(PCCosmoDoc pDoc)
  22.     {
  23.     m_cRef=0;
  24.     m_pDoc=pDoc;
  25.     return;
  26.     }
  27. CDropSource::~CDropSource(void)
  28.     {
  29.     return;
  30.     }
  31. /*
  32.  * CDropSource::QueryInterface
  33.  * CDropSource::AddRef
  34.  * CDropSource::Release
  35.  *
  36.  * Purpose:
  37.  *  IUnknown members for CDropSource object.
  38.  */
  39. STDMETHODIMP CDropSource::QueryInterface(REFIID riid, PPVOID ppv)
  40.     {
  41.     *ppv=NULL;
  42.     if (IID_IUnknown==riid || IID_IDropSource==riid)
  43.         *ppv=this;
  44.     if (NULL!=*ppv)
  45.         {
  46.         ((LPUNKNOWN)*ppv)->AddRef();
  47.         return NOERROR;
  48.         }
  49.     return ResultFromScode(E_NOINTERFACE);
  50.     }
  51. STDMETHODIMP_(ULONG) CDropSource::AddRef(void)
  52.     {
  53.     return ++m_cRef;
  54.     }
  55. STDMETHODIMP_(ULONG) CDropSource::Release(void)
  56.     {
  57.     if (0!=--m_cRef)
  58.         return m_cRef;
  59.     delete this;
  60.     return 0;
  61.     }
  62. /*
  63.  * CDropSource::QueryDragContinue
  64.  *
  65.  * Purpose:
  66.  *  Determines whether to continue a drag operation or cancel it.
  67.  *
  68.  * Parameters:
  69.  *  fEsc            BOOL indicating that the ESC key was pressed.
  70.  *  grfKeyState     DWORD providing states of keys and mouse buttons
  71.  *
  72.  * Return Value:
  73.  *  HRESULT         DRAGDROP_S_CANCEL to stop the drag,
  74.  *                  DRAGDROP_S_DROP to drop the data where it is,
  75.  *                  or NOERROR to continue.
  76.  */
  77. STDMETHODIMP CDropSource::QueryContinueDrag(BOOL fEsc
  78.     , DWORD grfKeyState)
  79.     {
  80.     if (fEsc)
  81.         return ResultFromScode(DRAGDROP_S_CANCEL);
  82.     if (!(grfKeyState & MK_LBUTTON))
  83.         return ResultFromScode(DRAGDROP_S_DROP);
  84.     return NOERROR;
  85.     }
  86. /*
  87.  * CDropSource::GiveFeedback
  88.  *
  89.  * Purpose:
  90.  *  Provides cursor feedback to the user since the source task
  91.  *  always has the mouse capture.  We can also provide any other
  92.  *  type of feedback above cursors if we so desire.
  93.  *
  94.  * Parameters:
  95.  *  dwEffect        DWORD effect flags returned from the last target
  96.  *
  97.  * Return Value:
  98.  *  HRESULT         NOERROR if you set a cursor yourself or
  99.  *                  DRAGDROP_S_USEDEFAULTCURSORS to let OLE do
  100.  *                  the work.
  101.  */
  102. STDMETHODIMP CDropSource::GiveFeedback(DWORD dwEffect)
  103.     {
  104.     return ResultFromScode(DRAGDROP_S_USEDEFAULTCURSORS);
  105.     }