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

Windows编程

开发平台:

Visual C++

  1. /*
  2.  * PAGE.CPP
  3.  * Patron Chapter 21
  4.  *
  5.  * Implementation of parts of the CPage class; those member
  6.  * functions dealing with mouse events are in PAGEMOUS.CPP.
  7.  *
  8.  * Copyright (c)1993-1995 Microsoft Corporation, All Rights Reserved
  9.  *
  10.  * Kraig Brockschmidt, Microsoft
  11.  * Internet  :  kraigb@microsoft.com
  12.  * Compuserve:  >INTERNET:kraigb@microsoft.com
  13.  */
  14. #include "patron.h"
  15. /*
  16.  * CPage::CPage
  17.  * CPage::~CPage
  18.  *
  19.  * Constructor Parameters:
  20.  *  dwID            DWORD identifier for this page.
  21.  *  hWnd            HWND of the pages window (for repaints, etc).
  22.  *  pPG             PCPages to the Pages window.
  23.  */
  24. CPage::CPage(DWORD dwID, HWND hWnd, PCPages pPG)
  25.     {
  26.     m_dwID     =dwID;
  27.     m_pIStorage=NULL;
  28.     m_cOpens=0;
  29.     m_hWnd=hWnd;
  30.     m_pPG=pPG;
  31.     m_dwIDNext      =0;
  32.     m_cTenants      =0;
  33.     m_hWndTenantList=NULL;
  34.     m_iTenantCur    =NOVALUE;   //Tenants are zero indexed.
  35.     m_pTenantCur    =NULL;
  36.     m_uHTCode=HTNOWHERE;
  37.     m_uSizingFlags=0;
  38.     m_fTracking=FALSE;
  39.     m_hDC=NULL;
  40.     m_fDragPending=FALSE;
  41.     m_fSizePending=FALSE;
  42.     m_fTimer=FALSE;
  43.     //Get WIN.INI distance and delay values, with OLE defaults.
  44.     m_cxyDist=GetProfileInt(TEXT("windows"), TEXT("DragMinDist")
  45.         , DD_DEFDRAGMINDIST);
  46.     m_cDelay=GetProfileInt(TEXT("windows"), TEXT("DragDelay")
  47.         , DD_DEFDRAGDELAY);
  48.     m_fReopen=FALSE;
  49.     //CHAPTER21MOD
  50.     m_pmkFile=m_pPG->m_pmkFile;
  51.     if (NULL!=m_pmkFile)
  52.         m_pmkFile->AddRef();
  53.     m_cRef=0L;
  54.     m_dwRegROTWild=0L;
  55.     m_pImpIOleItemContainer=NULL;
  56.     //End CHAPTER21MOD
  57.     return;
  58.     }
  59. CPage::~CPage(void)
  60.     {
  61.     //CHAPTER21MOD
  62.     INOLE_RevokeAsRunning(&m_dwRegROTWild);
  63.     //End CHAPTER21MOD
  64.     if (m_fTimer)
  65.         KillTimer(m_hWnd, IDTIMER_DEBOUNCE);
  66.     m_hWnd=NULL;
  67.     Close(FALSE);
  68.     return;
  69.     }
  70. //CHAPTER21MOD
  71. /*
  72.  * CPage::QueryInterface
  73.  * CPage::AddRef
  74.  * CPage::Release
  75.  *
  76.  * Purpose:
  77.  *  IUnknown members for CPage object.
  78.  */
  79. STDMETHODIMP CPage::QueryInterface(REFIID riid, PPVOID ppv)
  80.     {
  81.     *ppv=NULL;
  82.     if (IID_IUnknown==riid)
  83.         *ppv=this;
  84.     if (IID_IOleItemContainer==riid || IID_IOleContainer==riid
  85.         || IID_IParseDisplayName==riid)
  86.         *ppv=m_pImpIOleItemContainer;
  87.     if (NULL!=*ppv)
  88.         {
  89.         ((LPUNKNOWN)*ppv)->AddRef();
  90.         return NOERROR;
  91.         }
  92.     return ResultFromScode(E_NOINTERFACE);
  93.     }
  94. STDMETHODIMP_(ULONG) CPage::AddRef(void)
  95.     {
  96.     return ++m_cRef;
  97.     }
  98. STDMETHODIMP_(ULONG) CPage::Release(void)
  99.     {
  100.     if (0!=--m_cRef)
  101.         return m_cRef;
  102.     delete this;
  103.     return 0;
  104.     }
  105. //End CHAPTER21MOD
  106. /*
  107.  * CPage::GetID
  108.  *
  109.  * Return Value:
  110.  *  DWORD           dwID field in this page.
  111.  */
  112. DWORD CPage::GetID(void)
  113.     {
  114.     return m_dwID;
  115.     }
  116. /*
  117.  * CPage::Open
  118.  *
  119.  * Purpose:
  120.  *  Retrieves the IStorage associated with this page.  The IStorage
  121.  *  is owned by the page and thus the page always holds a reference
  122.  *  count.  The caller should call Close or delete this page to
  123.  *  match this open.
  124.  *
  125.  *  This function may be called multiple times resulting in
  126.  *  additional reference counts on the storage each of which must be
  127.  *  matched with a call to Close.  The last Close can be done
  128.  *  through delete.
  129.  *
  130.  * Parameters:
  131.  *  pIStorage       LPSTORAGE in which this page lives.
  132.  *
  133.  * Return Value:
  134.  *  BOOL            TRUE if opening succeeds, FALSE otherwise.
  135.  */
  136. BOOL CPage::Open(LPSTORAGE pIStorage)
  137.     {
  138.     HRESULT                 hr=NOERROR;
  139.     LPSTREAM                pIStream;
  140.     DWORD                   dwMode;
  141.     OLECHAR                 szTemp[32];
  142.     TCHAR                   szCap[32];
  143.     BOOL                    fNew;
  144.     BOOL                    fCreated=FALSE;
  145.     TENANTLIST              tl;
  146.     PTENANTINFO             pti;
  147.     ULONG                   cb;
  148.     LPMALLOC                pIMalloc;
  149.     UINT                    i;
  150.     PCTenant                pTenant;
  151.     UINT                    cLinks;
  152.     LPOLELINK               pIOleLink;
  153.     LPUNKNOWN               pIUnknown;
  154.     UINT                    uRet;
  155.     OLEUIEDITLINKS          el;
  156.     PCIOleUILinkContainer   pIUILinks;
  157.     HWND                    hWndDoc;
  158.     fNew=(NULL==m_pIStorage);
  159.     if (!fNew)
  160.         {
  161.         m_cOpens++;
  162.         m_pIStorage->AddRef();
  163.         return TRUE;
  164.         }
  165.     if (NULL==pIStorage)
  166.         return FALSE;
  167.     /*
  168.      * Attempt to open the storage under this ID.  If none,
  169.      * create one.  In either case, the IStorage is either
  170.      * saved in pPage or released.
  171.      */
  172.     GetStorageName(szTemp);
  173.     dwMode=STGM_TRANSACTED | STGM_READWRITE | STGM_SHARE_EXCLUSIVE;
  174.     hr=pIStorage->OpenStorage(szTemp, NULL, dwMode, NULL, 0
  175.         , &m_pIStorage);
  176.     if (FAILED(hr))
  177.         {
  178.         hr=pIStorage->CreateStorage(szTemp, dwMode, 0, 0
  179.             , &m_pIStorage);
  180.         fCreated=TRUE;
  181.         }
  182.     if (FAILED(hr))
  183.         return FALSE;
  184.     m_cOpens++;
  185.     if (NULL==m_hWndTenantList)
  186.         {
  187.         /*
  188.          * The first time we open this page, create the hidden
  189.          * listbox we'll use to track tenants.  We give it the
  190.          * owner-draw style so we can just store pointers in it.
  191.          */
  192.         m_hWndTenantList=CreateWindow(TEXT("listbox")
  193.             , TEXT("Tenant List"), WS_POPUP | LBS_OWNERDRAWFIXED
  194.             , 0, 0, 100, 100, HWND_DESKTOP, NULL
  195.             , m_pPG->m_hInst, NULL);
  196.         if (NULL==m_hWndTenantList)
  197.             return FALSE;
  198.         }
  199.     //CHAPTER21MOD
  200.     m_pImpIOleItemContainer=new CImpIOleItemContainer(this, this
  201.         , FALSE);
  202.     if (NULL==m_pImpIOleItemContainer)
  203.         return FALSE;
  204.     //End CHAPTER21MOD
  205.     //If this is brand-new, we're done.
  206.     if (fCreated)
  207.         return TRUE;
  208.     /*
  209.      * Now open the stream we saved in Close and load all the
  210.      * tenants listed in there.  If there are none, then we don't
  211.      * have to load squat.
  212.      */
  213.     hr=m_pIStorage->OpenStream(SZSTREAMTENANTLIST, NULL, STGM_DIRECT
  214.         | STGM_READ | STGM_SHARE_EXCLUSIVE, 0, &pIStream);
  215.     if (FAILED(hr))
  216.         return FALSE;
  217.     if (SUCCEEDED(CoGetMalloc(MEMCTX_TASK, &pIMalloc)))
  218.         {
  219.         pIStream->Read(&tl, sizeof(tl), NULL);
  220.         m_cTenants=tl.cTenants;
  221.         m_dwIDNext=tl.dwIDNext;
  222.         m_iTenantCur=0;
  223.         cb=tl.cTenants*sizeof(TENANTINFO);
  224.         if (0!=cb)
  225.             {
  226.             pti=(PTENANTINFO)pIMalloc->Alloc(cb);
  227.             if (NULL!=pti)
  228.                 {
  229.                 pIStream->Read(pti, cb, NULL);
  230.                 for (i=0; i < m_cTenants; i++)
  231.                     {
  232.                     if (TenantAdd(NOVALUE, (pti+i)->dwID, &pTenant))
  233.                         {
  234.                         pTenant->Load(m_pIStorage, (pti+i));
  235.                         //Make sure it knows about the show state.
  236.                         pTenant->ShowObjectType(m_pPG->m_fShowTypes);
  237.                         }
  238.                     }
  239.                 pIMalloc->Free(pti);
  240.                 }
  241.             }
  242.         pIMalloc->Release();
  243.         }
  244.     pIStream->Release();
  245.     //Get and select the first tenant
  246.     if (TenantGet(0, &m_pTenantCur, FALSE))
  247.         m_pTenantCur->Select(TRUE);
  248.     //If we just saved and closed, don't bother with updating links
  249.     if (m_fReopen)
  250.         {
  251.         m_fReopen=FALSE;
  252.         return TRUE;
  253.         }
  254.     /*
  255.      * Update all the links in this page, showing the progress
  256.      * indicator as it's happening.  We use the same
  257.      * IOlUILinkContainer implementation as we do for the links
  258.      * dialog, passing it to OleUIUpdateLinks which does everything
  259.      * for us.
  260.      *
  261.      * We might also optimize this to not do anything if there are
  262.      * no automatic links, but it's not a big concern.
  263.      */
  264.     //First, count the number of automatic links.
  265.     cLinks=0;
  266.     for (i=0; i < m_cTenants; i++)
  267.         {
  268.         if (TenantGet(i, &pTenant, FALSE))
  269.             {
  270.             DWORD       dw;
  271.             pTenant->ObjectGet(&pIUnknown);
  272.             hr=pIUnknown->QueryInterface(IID_IOleLink
  273.                 , (PPVOID)&pIOleLink);
  274.             pIUnknown->Release();
  275.             if (FAILED(hr))
  276.                 continue;
  277.             pIOleLink->GetUpdateOptions(&dw);
  278.             pIOleLink->Release();
  279.             if (OLEUPDATE_ALWAYS==dw)
  280.                 cLinks++;
  281.             }
  282.         }
  283.     //If we have any automatic links, invoke the update dialog.
  284.     if (0==cLinks)
  285.         return TRUE;
  286.     //Create an IOleUILinkContainer instantiation.
  287.     if (!m_pPG->GetUILinkContainer(&pIUILinks))
  288.         return TRUE;    //Guess we can't update, oh well.
  289.     hWndDoc=GetParent(m_hWnd);
  290.     LoadString(m_pPG->m_hInst, IDS_CAPTION, szCap, sizeof(szCap));
  291.     if (!OleUIUpdateLinks(pIUILinks, hWndDoc, szCap, cLinks))
  292.         {
  293.         /*
  294.          * If updating failed, ask to show the links dialog.  NOTE:
  295.          * OleUIPromptUser has a variable wsprintf argument list
  296.          * after the hWnd parameter!  Use appropriate typecasting!
  297.          */
  298.         uRet=OleUIPromptUser(IDD_CANNOTUPDATELINK, hWndDoc, szCap);
  299.        #ifdef IDC_PU_LINKS
  300.         if (IDC_PU_LINKS==uRet)
  301.        #else
  302.         if (ID_PU_LINKS==uRet)  //Win3.1
  303.        #endif
  304.             {
  305.             //Throw up the links dialog.
  306.             memset(&el, 0, sizeof(el));
  307.             el.cbStruct=sizeof(el);
  308.             el.hWndOwner=hWndDoc;
  309.             el.lpOleUILinkContainer=pIUILinks;
  310.             OleUIEditLinks(&el);
  311.             }
  312.         }
  313.     m_pPG->m_fDirty=pIUILinks->m_fDirty;
  314.     pIUILinks->Release();
  315.     return TRUE;
  316.     }
  317. /*
  318.  * CPage::Close
  319.  *
  320.  * Purpose:
  321.  *  Possibly commits the storage, then releases it reversing the
  322.  *  reference count from Open.
  323.  *
  324.  * Parameters:
  325.  *  fCommit         BOOL indicating if we're to commit.
  326.  *
  327.  * Return Value:
  328.  *  None
  329.  */
  330. void CPage::Close(BOOL fCommit)
  331.     {
  332.     if (NULL==m_pIStorage)
  333.         return;
  334.     if (fCommit)
  335.         Update();
  336.     m_pIStorage->Release();
  337.     //If this was the last close, make all tenants loaded->passive
  338.     if (0==--m_cOpens)
  339.         {
  340.         UINT        i;
  341.         PCTenant    pTenant;
  342.         m_pIStorage=NULL;
  343.         for (i=0; i < m_cTenants; i++)
  344.             {
  345.             if (TenantGet(i, &pTenant, FALSE))
  346.                 {
  347.                 if (NULL!=m_hWnd)
  348.                     {
  349.                     //Open may select again, so this repaints.
  350.                     pTenant->Select(FALSE);
  351.                     }
  352.                 pTenant->Close(FALSE);
  353.                 pTenant->Release();
  354.                 }
  355.             }
  356.         DestroyWindow(m_hWndTenantList);
  357.         m_hWndTenantList=NULL;
  358.         m_fReopen=TRUE;
  359.         //CHAPTER21MOD
  360.         if (NULL!=m_pmkFile)
  361.             m_pmkFile->Release();
  362.         m_pmkFile=NULL;
  363.         DeleteInterfaceImp(m_pImpIOleItemContainer);
  364.         //End CHAPTER21MOD
  365.         }
  366.     return;
  367.     }
  368. /*
  369.  * CPage::Update
  370.  *
  371.  * Purpose:
  372.  *  Forces a common on the page if it's open.
  373.  *
  374.  * Parameters:
  375.  *  None
  376.  *
  377.  * Return Value:
  378.  *  BOOL            TRUE if there are any open objects on this page,
  379.  *                  that is, we should remain open.
  380.  */
  381. BOOL CPage::Update(void)
  382.     {
  383.     BOOL            fOpen=FALSE;
  384.     UINT            i;
  385.     PCTenant        pTenant;
  386.     HRESULT         hr;
  387.     LPSTREAM        pIStream;
  388.     TENANTLIST      tl;
  389.     PTENANTINFO     pti;
  390.     ULONG           cb;
  391.     LPMALLOC        pIMalloc;
  392.     //Walk the list of objects and update them all as well.
  393.     for (i=0; i < m_cTenants; i++)
  394.         {
  395.         if (TenantGet(i, &pTenant, FALSE))
  396.             fOpen |= pTenant->Update();
  397.         }
  398.     //Now write our own stream containing the tenant list.
  399.     hr=m_pIStorage->CreateStream(SZSTREAMTENANTLIST, STGM_CREATE
  400.         | STGM_WRITE| STGM_DIRECT | STGM_SHARE_EXCLUSIVE, 0, 0
  401.         , &pIStream);
  402.     if (FAILED(hr))
  403.         return fOpen;
  404.     if (SUCCEEDED(CoGetMalloc(MEMCTX_TASK, &pIMalloc)))
  405.         {
  406.         tl.cTenants=m_cTenants;
  407.         tl.dwIDNext=m_dwIDNext;
  408.         pIStream->Write(&tl, sizeof(TENANTLIST), &cb);
  409.         cb=m_cTenants*sizeof(TENANTINFO);
  410.         pti=(PTENANTINFO)pIMalloc->Alloc(cb);
  411.         if (NULL!=pti)
  412.             {
  413.             for (i=0; i < m_cTenants; i++)
  414.                 {
  415.                 TenantGet(i, &pTenant, FALSE);
  416.                 pTenant->GetInfo((pti+i));
  417.                 }
  418.             pIStream->Write(pti, cb, &cb);
  419.             pIMalloc->Free(pti);
  420.             }
  421.         pIMalloc->Release();
  422.         }
  423.     pIStream->Release();
  424.     //Now commit the whole mess and we're done
  425.     if (NULL!=m_pIStorage)
  426.         m_pIStorage->Commit(STGC_DEFAULT);
  427.     return fOpen;
  428.     }
  429. /*
  430.  * CPage::Destroy
  431.  *
  432.  * Purpose:
  433.  *  Removes this page from the given storage.  The caller should
  434.  *  eventually delete this Page object to free the storage.
  435.  *
  436.  * Parameters:
  437.  *  pIStorage       LPSTORAGE contianing this page on which to call
  438.  *                  DestroyElement
  439.  *
  440.  * Return Value:
  441.  *  None
  442.  */
  443. void CPage::Destroy(LPSTORAGE pIStorage)
  444.     {
  445.     if (NULL!=pIStorage)
  446.         {
  447.         OLECHAR szTemp[32];
  448.         Close(FALSE);
  449.         GetStorageName(szTemp);
  450.         pIStorage->DestroyElement(szTemp);
  451.         }
  452.     return;
  453.     }
  454. /*
  455.  * CPage::GetStorageName
  456.  *
  457.  * Parameters:
  458.  *  pszName         LPOLESTR to a buffer in which to store the
  459.  *                  storage name for this page.
  460.  *
  461.  * Return Value:
  462.  *  UINT            Number of characters stored.
  463.  */
  464. UINT CPage::GetStorageName(LPOLESTR pszName)
  465.     {
  466.    #ifdef WIN32ANSI
  467.     char        szTemp[32];
  468.     UINT        cch;
  469.     cch=wsprintf(szTemp, "Page %lu", m_dwID);
  470.     MultiByteToWideChar(CP_ACP, 0, szTemp, -1, pszName, 32);
  471.     return cch;
  472.    #else
  473.     return wsprintf(pszName, TEXT("Page %lu"), m_dwID);
  474.    #endif
  475.     }
  476. /*
  477.  * CPage::Draw
  478.  *
  479.  * Purpose:
  480.  *  Draws the objects on this page to the given hDC.
  481.  *
  482.  * Parameters:
  483.  *  hDC             HDC on which to draw.
  484.  *  xOff, yOff      int offsets for the page.
  485.  *  fNoColor        BOOL indicating black & white screen rendering.
  486.  *  fPrinter        BOOL indicating hDC is on the printer.
  487.  *
  488.  * Return Value:
  489.  *  None
  490.  */
  491. void CPage::Draw(HDC hDC, int xOff, int yOff, BOOL fNoColor
  492.     , BOOL fPrinter)
  493.     {
  494.     int                 i;
  495.     PCTenant            pTenant;
  496.     HDC                 hIC=NULL;
  497.     PCOMBINEDEVICE      pcd=NULL;
  498.     DVTARGETDEVICE     *ptd=NULL;
  499.     /*
  500.      * If printing, tell the tenant to forget the borders. Otherwise
  501.      * we leave xOff and yOff the same to account for scrolling.
  502.      */
  503.     if (fPrinter)
  504.         {
  505.         xOff=LOMETRIC_BORDER+m_pPG->m_xMarginLeft;
  506.         yOff=-LOMETRIC_BORDER-m_pPG->m_yMarginTop;
  507.         /*
  508.          * Get device information.  If this fails, ptd is
  509.          * NULL which is acceptable.
  510.          */
  511.         if (m_pPG->DevReadConfig(&pcd, &hIC))
  512.             ptd=&(pcd->td);
  513.         }
  514.     for (i=(int)m_cTenants-1; i >=0; i--)
  515.         {
  516.         if (TenantGet(i, &pTenant, FALSE))
  517.             {
  518.             RECT        rc, rcWin;
  519.             RECTL       rcl;
  520.             //Paint this tenant only if visible.
  521.             pTenant->RectGet(&rcl, TRUE);
  522.             RECTFROMRECTL(rc, rcl);
  523.             OffsetRect(&rc, -(int)m_pPG->m_xPos
  524.                 , -(int)m_pPG->m_yPos);
  525.             GetClientRect(m_hWnd, &rcWin);
  526.             if (IntersectRect(&rc, &rc, &rcWin))
  527.                 {
  528.                 pTenant->Draw(hDC, ptd, hIC, xOff, yOff
  529.                     , fNoColor, fPrinter);
  530.                 }
  531.             }
  532.         }
  533.     //Free whatever CPages::DevReadConfig returned.
  534.     if (NULL!=pcd)
  535.         {
  536.         LPMALLOC    pIMalloc;
  537.         if (SUCCEEDED(CoGetMalloc(MEMCTX_TASK, &pIMalloc)))
  538.             {
  539.             pIMalloc->Free(pcd);
  540.             pIMalloc->Release();
  541.             }
  542.         }
  543.     if (NULL!=hIC)
  544.         DeleteDC(hIC);
  545.     return;
  546.     }
  547. /*
  548.  * CPage::TenantCreate
  549.  *
  550.  * Purpose:
  551.  *  Creates a new tenant of a specific type.
  552.  *
  553.  * Parameters:
  554.  *  tType           TENANTTYPE to create.
  555.  *  pv              LPVOID providing information for the new
  556.  *                  object creation.
  557.  *  pFE             LPFORMATETC describing how we want this
  558.  *                  rendered.
  559.  *  ppo             PPATRONOBJECT with placement data.
  560.  *  dwData          DWORD extra data to pass to the tenant.
  561.  *
  562.  * Return Value:
  563.  *  None
  564.  */
  565. BOOL CPage::TenantCreate(TENANTTYPE tType, LPVOID pv
  566.     , LPFORMATETC pFE, PPATRONOBJECT ppo, DWORD dwData)
  567.     {
  568.     PCTenant    pTenant;
  569.     UINT        uRet;
  570.     int         x, y;
  571.     int         h, v;
  572.     POINTL      ptl;
  573.     SIZEL       szl;
  574.     RECTL       rcl;
  575.     RECT        rc;
  576.     //New tenants go at top of the pile; zero index to TenantAdd.
  577.     if (!TenantAdd(0, m_dwIDNext, &pTenant))
  578.         return FALSE;
  579.     uRet=pTenant->Create(tType, pv, pFE, &ptl, &szl, m_pIStorage
  580.         , ppo, dwData);
  581.     if (CREATE_FAILED==uRet)
  582.         {
  583.         //Reverse Create AND TenantAdd
  584.         SendMessage(m_hWndTenantList, LB_DELETESTRING, 0, 0L);
  585.         pTenant->Destroy(m_pIStorage);
  586.         pTenant->Release();
  587.         return FALSE;
  588.         }
  589.     m_dwIDNext++;
  590.     m_cTenants++;
  591.     if (NULL!=m_pTenantCur)
  592.         m_pTenantCur->Select(FALSE);
  593.     m_iTenantCur=0;             //First one in the list now.
  594.     m_pTenantCur=pTenant;
  595.     //Tell the tenant where it lives, default is (0,0) in print area
  596.     x=LOMETRIC_BORDER+m_pPG->m_xMarginLeft;
  597.     y=-LOMETRIC_BORDER-m_pPG->m_yMarginTop;
  598.     h=x;
  599.     v=y;
  600.     if (CREATE_PLACEDOBJECT==uRet)
  601.         {
  602.         SetRect(&rc, 3*CXYHANDLE, 3*CXYHANDLE, 0, 0);
  603.         RectConvertMappings(&rc, NULL, FALSE);
  604.         //Make sure place point is on page, otherwise go to (0,0)
  605.         if (((int)ptl.x > x)
  606.             && ((int)ptl.x < x+(int)m_pPG->m_cx-rc.left))
  607.             x=(int)ptl.x;
  608.         //m_pPG->m_cy is absolute
  609.         if (((int)ptl.y < y)
  610.             && ((int)ptl.y > y-(int)m_pPG->m_cy-rc.top))
  611.             y=(int)ptl.y;
  612.         }
  613.     //Bounds check size of the object and fit to page as necessary.
  614.     if (x+(int)szl.cx > (int)(h+m_pPG->m_cx))
  615.         szl.cx=h+m_pPG->m_cx-x;
  616.     //Remember that szl we get from Create is absolute
  617.     if (y-(int)szl.cy < (int)(v-m_pPG->m_cy))
  618.         szl.cy=-(int)(v-m_pPG->m_cy-y);
  619.     SETRECTL(rcl, x, y, x+szl.cx, y-szl.cy);
  620.     m_pTenantCur->RectSet(&rcl, FALSE, TRUE);
  621.     //Force a repaint on this new guy
  622.     m_pTenantCur->Invalidate();
  623.     UpdateWindow(m_hWnd);
  624.     m_pTenantCur->Select(TRUE);
  625.     //Make sure this new tenant knows about showing it's type.
  626.     m_pTenantCur->ShowObjectType(m_pPG->m_fShowTypes);
  627.     //CHAPTER21MOD
  628.     //New tenants must know the available monikers
  629.     if (NULL!=m_pmkFile)
  630.         {
  631.         LPBC        pbc;
  632.         LPMONIKER   pmkPage;
  633.         TCHAR       szTemp[32];
  634.         LPTSTR      pszFile;
  635.        #ifdef WIN32ANSI
  636.         OLECHAR     szW[32];
  637.         GetStorageName(szW);
  638.         WideCharToMultiByte(CP_ACP, 0, szW, -1, szTemp, 32
  639.            , NULL, NULL);
  640.        #else
  641.         GetStorageName(szTemp);
  642.        #endif
  643.         CreateItemMoniker(TEXT("!"), szTemp, &pmkPage);
  644.         //We can get the filename from our file moniker
  645.         CreateBindCtx(0, &pbc);
  646.        #ifdef WIN32ANSI
  647.         LPOLESTR    pszTemp;
  648.         m_pmkFile->GetDisplayName(pbc, NULL, &pszTemp);
  649.         pszFile=(LPTSTR)CoTaskMemAlloc(512);
  650.         WideCharToMultiByte(CP_ACP, 0, pszTemp, -1, pszFile
  651.            , 512, NULL, NULL);
  652.         CoTaskMemFree((void *)pszTemp);
  653.        #else
  654.         m_pmkFile->GetDisplayName(pbc, NULL, &pszFile);
  655.        #endif
  656.         pbc->Release();
  657.         pTenant->NotifyOfRename(pszFile, m_pmkFile, pmkPage);
  658.         pmkPage->Release();
  659.         CoTaskMemFree((void *)pszFile);
  660.         }
  661.     //End CHAPTER21MOD
  662.     //Activate new objects immediately and force a save on them
  663.     if (TENANTTYPE_EMBEDDEDOBJECT==tType)
  664.         {
  665.         m_pTenantCur->Activate(OLEIVERB_SHOW);
  666.         m_pTenantCur->Update();
  667.         }
  668.     return TRUE;
  669.     }
  670. /*
  671.  * CPage::TenantDestroy
  672.  *
  673.  * Purpose:
  674.  *  Destroys the currently selected tenant on this page.
  675.  *
  676.  * Parameters:
  677.  *  None
  678.  *
  679.  * Return Value:
  680.  *  None
  681.  */
  682. BOOL CPage::TenantDestroy(void)
  683.     {
  684.     if (NULL==m_pTenantCur)
  685.         {
  686.         MessageBeep(0);
  687.         return FALSE;
  688.         }
  689.     SendMessage(m_hWndTenantList, LB_DELETESTRING
  690.         , m_iTenantCur, 0L);
  691.     m_pTenantCur->Invalidate();
  692.     m_pTenantCur->Destroy(m_pIStorage);
  693.     m_pTenantCur->Release();
  694.     m_pTenantCur=NULL;
  695.     //Update counts, etc., and select the next tenant in the list.
  696.     if (m_iTenantCur==m_cTenants-1)
  697.         m_iTenantCur--;
  698.     if (0==--m_cTenants)
  699.         m_pTenantCur=NULL;
  700.     else
  701.         {
  702.         TenantGet(m_iTenantCur, &m_pTenantCur, TRUE);
  703.         m_pTenantCur->Select(TRUE);
  704.         }
  705.     UpdateWindow(m_hWnd);
  706.     return TRUE;
  707.     }
  708. /*
  709.  * CPage::TenantClip
  710.  *
  711.  * Purpose:
  712.  *  Copies or cuts the currently selected tenant to the clipoard.
  713.  *
  714.  * Parameters:
  715.  *  fCut            BOOL TRUE to cut the object, FALSE to copy.
  716.  *
  717.  * Return Value:
  718.  *  BOOL            TRUE if successful, FALSE otherwise.
  719.  */
  720. BOOL CPage::TenantClip(BOOL fCut)
  721.     {
  722.     LPDATAOBJECT    pIDataObject;
  723.     BOOL            fRet=FALSE;
  724.     if (NULL==m_pTenantCur)
  725.         return FALSE;
  726.     /*
  727.      * To perform a data transfer operation, we need to create a
  728.      * data object with the selected object's data inside. To do
  729.      * this we CoCreateInstance on CLSID_DataTransferObject
  730.      * (Also implemented in this chapter), retrieve data from the
  731.      * object we have, stuff that data into the transfer object,
  732.      * then stick that object on the clipboard.
  733.      *
  734.      * Since we'll want an identical object at other times, like for
  735.      * drag-drop, we use a private function to actually create it.
  736.      */
  737.     pIDataObject=TransferObjectCreate(NULL);
  738.     if (NULL!=pIDataObject)
  739.         {
  740.         if (SUCCEEDED(OleSetClipboard(pIDataObject)))
  741.             {
  742.             if (fCut)
  743.                 TenantDestroy();
  744.             fRet=TRUE;
  745.             }
  746.         pIDataObject->Release();
  747.         }
  748.     return fRet;
  749.     }
  750. /*
  751.  * CPage::FQueryObjectSelected
  752.  *
  753.  * Purpose:
  754.  *  Returns whether or not there is an object selected on this
  755.  *  page for Cut, Copy, Delete functions.
  756.  *
  757.  * Parameters:
  758.  *  hMenu           HMENU of the Edit menu.
  759.  *
  760.  * Return Value:
  761.  *  BOOL            TRUE if we have an object, FALSE otherwise.
  762.  */
  763. BOOL CPage::FQueryObjectSelected(HMENU hMenu)
  764.     {
  765.     HMENU       hMenuTemp;
  766.     /*
  767.      * This will only be called on WM_INITMENUPOPUP, we'll also
  768.      * use this function to create the Verb menu for this object.
  769.      */
  770.     if (NULL!=m_pTenantCur)
  771.         {
  772.         m_pTenantCur->AddVerbMenu(hMenu, MENUPOS_OBJECT);
  773.         return TRUE;
  774.         }
  775.     OleUIAddVerbMenu(NULL, NULL, hMenu, MENUPOS_OBJECT
  776.         , IDM_VERBMIN, IDM_VERBMAX, FALSE, 0, &hMenuTemp);
  777.     return FALSE;
  778.     }
  779. /*
  780.  * CPage::ActivateObject
  781.  *
  782.  * Purpose:
  783.  *  Executes a verb on the currently selected object.
  784.  *
  785.  * Parameters:
  786.  *  iVerb           LONG of the selected verb.
  787.  *
  788.  * Return Value:
  789.  *  None
  790.  */
  791. void CPage::ActivateObject(LONG iVerb)
  792.     {
  793.     if (NULL==m_pTenantCur)
  794.         return;
  795.     m_pTenantCur->Activate(iVerb);
  796.     return;
  797.     }
  798. /*
  799.  * CPage::ShowObjectTypes
  800.  *
  801.  * Purpose:
  802.  *  Loops through all the tenants and tells each one to turn on or
  803.  *  off the Show Objects features.
  804.  *
  805.  * Parameters:
  806.  *  fShow           BOOL indicating to show the type or not.
  807.  *
  808.  * Return Value:
  809.  *  None
  810.  */
  811. void CPage::ShowObjectTypes(BOOL fShow)
  812.     {
  813.     PCTenant    pTenant;
  814.     UINT        i;
  815.     for (i=0; i < m_cTenants; i++)
  816.         {
  817.         if (TenantGet(i, &pTenant, FALSE))
  818.             pTenant->ShowObjectType(fShow);
  819.         }
  820.     return;
  821.     }
  822. /*
  823.  * CPage::NotifyTenantsOfRename
  824.  *
  825.  * Purpose:
  826.  *  Loops through all the tenants and informs each of the new
  827.  *  document name.
  828.  *
  829.  * Parameters:
  830.  *  pszFile         LPTSTR of the new filename.
  831.  *  pmk             LPMONKIER for the new filename.
  832.  *
  833.  * Return Value:
  834.  *  None
  835.  */
  836. void CPage::NotifyTenantsOfRename(LPTSTR pszFile, LPMONIKER pmk)
  837.     {
  838.     //CHAPTER21MOD
  839.     PCTenant    pTenant;
  840.     UINT        i;
  841.     LPMONIKER   pmkPage;
  842.     LPMONIKER   pmkAll;
  843.     TCHAR       szTemp[32];
  844.     //Save the file moniker
  845.     ReleaseInterface(m_pmkFile);
  846.     m_pmkFile=pmk;
  847.     m_pmkFile->AddRef();
  848.     //Create a page moniker to send to the tenants.
  849.    #ifdef WIN32ANSI
  850.     OLECHAR     szW[32];
  851.     GetStorageName(szW);
  852.     WideCharToMultiByte(CP_ACP, 0, szW, -1, szTemp, 32
  853.        , NULL, NULL);
  854.    #else
  855.     GetStorageName(szTemp);
  856.    #endif
  857.     CreateItemMoniker(TEXT("!"), szTemp, &pmkPage);
  858.     for (i=0; i < m_cTenants; i++)
  859.         {
  860.         if (TenantGet(i, &pTenant, FALSE))
  861.             pTenant->NotifyOfRename(pszFile, pmk, pmkPage);
  862.         }
  863.     /*
  864.      * Register a File!Page!"" wildcard moniker as well.
  865.      * Note that the page is already marked as running
  866.      * with the document's wildcard moniker.
  867.      */
  868.     CreateItemMoniker(TEXT("!"), TEXT("\"), &pmkAll);
  869.     if (NULL!=pmkAll)
  870.         {
  871.         LPMONIKER   pmkWild=NULL;
  872.         LPMONIKER   pmkTemp=NULL;
  873.         INOLE_RevokeAsRunning(&m_dwRegROTWild);
  874.         pmk->ComposeWith(pmkPage, FALSE, &pmkTemp);
  875.         if (NULL!=pmkTemp)
  876.             {
  877.             pmkTemp->ComposeWith(pmkAll, FALSE, &pmkWild);
  878.             pmkTemp->Release();
  879.             }
  880.         if (NULL!=pmkWild)
  881.             {
  882.             INOLE_RegisterAsRunning(this, pmkWild
  883.                 , ROTFLAGS_REGISTRATIONKEEPSALIVE, &m_dwRegROTWild);
  884.             pmkWild->Release();
  885.             }
  886.         pmkAll->Release();
  887.         }
  888.     //If anything held onto this, they AddRef'd
  889.     pmkPage->Release();
  890.     //End CHAPTER21MOD
  891.     return;
  892.     }
  893. /*
  894.  * CPage::ConvertObject
  895.  *
  896.  * Purpose:
  897.  *  Invokes and handles the results of the Convert dialog
  898.  *
  899.  * Parameters:
  900.  *  hWndFrame       HWND to use as the parent of the dialog.
  901.  *  fNoServer       BOOL indicating if this was called because
  902.  *                  ActivateObject failed.
  903.  *
  904.  * Return Value:
  905.  *  None
  906.  */
  907. BOOL CPage::ConvertObject(HWND hWndFrame, BOOL fNoServer)
  908.     {
  909.     HRESULT         hr;
  910.     OLEUICONVERT    ct;
  911.     TENANTTYPE      tType;
  912.     TENANTINFO      ti;
  913.     UINT            uRet;
  914.     HCURSOR         hCur;
  915.     BOOL            fActivate=fNoServer;
  916.     SIZEL           szl;
  917.     if (NULL==m_pTenantCur)
  918.         return FALSE;
  919.     tType=m_pTenantCur->TypeGet();
  920.     if (TENANTTYPE_STATIC==tType)
  921.         {
  922.         MessageBeep(0);
  923.         return FALSE;
  924.         }
  925.     //Get object information we may want.
  926.     m_pTenantCur->GetInfo(&ti);
  927.     //Fill the structure.
  928.     memset(&ct, 0, sizeof(ct));
  929.     ct.cbStruct=sizeof(OLEUICONVERT);
  930.     ct.hWndOwner=hWndFrame;
  931.     ct.fIsLinkedObject=(TENANTTYPE_LINKEDOBJECT==tType);
  932.     ct.dvAspect=ti.fe.dwAspect;
  933.     m_pTenantCur->ObjectClassFormatAndIcon(&ct.clsid, &ct.wFormat
  934.         , &ct.lpszUserType, &ct.hMetaPict, &ct.lpszDefLabel);
  935.     uRet=OleUIConvert(&ct);
  936.     if (OLEUI_OK==uRet)
  937.         {
  938.         //Potentially a long operation.
  939.         hCur=SetCursor(LoadCursor(NULL, IDC_WAIT));
  940.         //Prevent multiple repaints.
  941.         m_pTenantCur->EnableRepaint(FALSE);
  942.         //First, let's bother with the iconic aspect switch.
  943.         if ((DVASPECT_ICON==ct.dvAspect && ct.fObjectsIconChanged)
  944.             || ct.dvAspect!=ti.fe.dwAspect)
  945.             {
  946.             HGLOBAL     hMem=NULL;
  947.             //Only pass non-NULL handle for icon aspects.
  948.             if (DVASPECT_ICON==ct.dvAspect)
  949.                 hMem=ct.hMetaPict;
  950.             m_pPG->m_fDirty=m_pTenantCur->SwitchOrUpdateAspect(hMem
  951.                 , FALSE);
  952.             }
  953.         //Now change types around.
  954.         if ((CF_SELECTCONVERTTO & ct.dwFlags)
  955.             && ct.clsid!=ct.clsidNew)
  956.             {
  957.             LPSTORAGE   pIStorage;
  958.             /*
  959.              * User selected convert, so:
  960.              *  1.  Unload the object (back to passive state)
  961.              *  2.  Call INOLE_DoConvert, which calls WriteClassStg,
  962.              *      WriteFmtUserTypeStg, and SetConvertStg.
  963.              *  3.  Reload the object and force an update.
  964.              */
  965.             //This should be the only close necessary.
  966.             m_pTenantCur->StorageGet(&pIStorage);
  967.             m_pTenantCur->Close(TRUE);
  968.             hr=INOLE_DoConvert(pIStorage, ct.clsidNew);
  969.             //Need to commit the new type and format
  970.             pIStorage->Commit(STGC_DEFAULT);
  971.             pIStorage->Release();
  972.             if (SUCCEEDED(hr))
  973.                 {
  974.                 LPUNKNOWN   pObj;
  975.                 LPOLEOBJECT pIOleObject;
  976.                 //Reload and update.
  977.                 m_pTenantCur->Load(m_pIStorage, &ti);
  978.                 m_pTenantCur->ObjectGet(&pObj);
  979.                 pObj->QueryInterface(IID_IOleObject
  980.                     , (PPVOID)&pIOleObject);
  981.                 pIOleObject->Update();
  982.                 pIOleObject->Release();
  983.                 pObj->Release();
  984.                 }
  985.             m_pPG->m_fDirty=TRUE;
  986.             }
  987.         if (CF_SELECTACTIVATEAS & ct.dwFlags)
  988.             {
  989.             /*
  990.              * User selected Activate As, so:
  991.              *  1.  Add the TreatAs entry in the registry
  992.              *      through CoTreatAsClass
  993.              *  2.  Unload all objects of the old CLSID that you
  994.              *      have loaded.
  995.              *  3.  Reload objects as desired
  996.              *  4.  Activate the current object.
  997.              */
  998.             hr=CoTreatAsClass(ct.clsid, ct.clsidNew);
  999.             if (SUCCEEDED(hr))
  1000.                 {
  1001.                 PCTenant    pTenant;
  1002.                 UINT        i;
  1003.                 for (i=0; i < m_cTenants; i++)
  1004.                     {
  1005.                     if (TenantGet(i, &pTenant, FALSE))
  1006.                         {
  1007.                         pTenant->GetInfo(&ti);
  1008.                         pTenant->Close(FALSE);
  1009.                         pTenant->Load(m_pIStorage, &ti);
  1010.                         }
  1011.                     }
  1012.                 fActivate=TRUE;
  1013.                 }
  1014.             }
  1015.         //These two steps insure the object knows of the size.
  1016.         m_pTenantCur->SizeGet(&szl, FALSE);
  1017.         m_pTenantCur->SizeSet(&szl, FALSE, TRUE);
  1018.         m_pTenantCur->EnableRepaint(TRUE);
  1019.         m_pTenantCur->Repaint();
  1020.         if (fActivate)
  1021.             m_pTenantCur->Activate(OLEIVERB_SHOW);
  1022.         SetCursor(hCur);
  1023.         }
  1024.     CoTaskMemFree((void*)ct.lpszUserType);
  1025.     INOLE_MetafilePictIconFree(ct.hMetaPict);
  1026.     return TRUE;
  1027.     }
  1028. /*
  1029.  * CPage::FQueryLinksInPage
  1030.  *
  1031.  * Purpose:
  1032.  *  Pass through to current page to see if there are any linked
  1033.  *  objects.
  1034.  *
  1035.  * Parameters:
  1036.  *  None
  1037.  *
  1038.  * Return Value:
  1039.  *  None
  1040.  */
  1041. BOOL CPage::FQueryLinksInPage()
  1042.     {
  1043.     PCTenant    pTenant;
  1044.     UINT        i;
  1045.     BOOL        fRet=FALSE;
  1046.     for (i=0; i < m_cTenants; i++)
  1047.         {
  1048.         if (TenantGet(i, &pTenant, FALSE))
  1049.             fRet |= (pTenant->TypeGet()==TENANTTYPE_LINKEDOBJECT);
  1050.         }
  1051.     return fRet;
  1052.     }
  1053. /*
  1054.  * CPage::TenantGet
  1055.  * (Protected)
  1056.  *
  1057.  * Purpose:
  1058.  *  Returns a tenant of a given index returning a BOOL so it's
  1059.  *  simple to use this function inside if statements.
  1060.  *
  1061.  * Parameters:
  1062.  *  iTenant         UINT tenant to retrieve 0 based.
  1063.  *  ppTenant        PCPage * in which to return the tenant
  1064.  *                  pointer
  1065.  *  fOpen           BOOL indicating if we should open this
  1066.  *                  tenant as well.
  1067.  *
  1068.  * Return Value:
  1069.  *  BOOL            TRUE if successful, FALSE otherwise.
  1070.  */
  1071. BOOL CPage::TenantGet(UINT iTenant, PCTenant *ppTenant
  1072.     , BOOL fOpen)
  1073.     {
  1074.     if (NULL==ppTenant)
  1075.         return FALSE;
  1076.     if (LB_ERR!=SendMessage(m_hWndTenantList, LB_GETTEXT
  1077.         , iTenant, (LONG)ppTenant))
  1078.         {
  1079.         if (fOpen)
  1080.             (*ppTenant)->Open(m_pIStorage);
  1081.         return TRUE;
  1082.         }
  1083.     return FALSE;
  1084.     }
  1085. //CHAPTER21MOD
  1086. /*
  1087.  * CPage::TenantGetFromID
  1088.  * (Protected)
  1089.  *
  1090.  * Purpose:
  1091.  *  Finds a tenant pointer from an ID for use from
  1092.  *  IOleItemContainer::GetObject
  1093.  *
  1094.  * Parameters:
  1095.  *  dwID            DWORD identifier of the tenant to find.
  1096.  *  ppTenant        PCTenant * in which to return the tenant
  1097.  *                  pointer
  1098.  *  fOpen           BOOL indicating if we should open this tenant as
  1099.  *                  well.
  1100.  *
  1101.  * Return Value:
  1102.  *  BOOL            TRUE if successful, FALSE otherwise.
  1103.  */
  1104. BOOL CPage::TenantGetFromID(DWORD dwID, PCTenant *ppTenant
  1105.     , BOOL fOpen)
  1106.     {
  1107.     UINT        i;
  1108.     PCTenant    pTenant;
  1109.     if (NULL==ppTenant)
  1110.         return FALSE;
  1111.     for (i=0; i < m_cTenants; i++)
  1112.         {
  1113.         if (!TenantGet(i, &pTenant, FALSE))
  1114.             continue;
  1115.         if (pTenant->GetID()==dwID)
  1116.             {
  1117.             if (fOpen)
  1118.                 pTenant->Open(m_pIStorage);
  1119.             *ppTenant=pTenant;
  1120.             return TRUE;
  1121.             }
  1122.         }
  1123.     return FALSE;
  1124.     }
  1125. //End CHAPTER21MOD
  1126. /*
  1127.  * CPage::TenantAdd
  1128.  * (Protected)
  1129.  *
  1130.  * Purpose:
  1131.  *  Creates a new tenant initialized to the given values.  The new
  1132.  *  tenants's storage is created if it does not already exist.  If
  1133.  *  fOpenStorage is set the the tenants's storage is opened and left
  1134.  *  opened.
  1135.  *
  1136.  * Parameters:
  1137.  *  iTenant         UINT Location at which to insert tenant; new
  1138.  *                  tenant is inserted after this position.  NOVALUE
  1139.  *                  for the end.
  1140.  *  dwID            DWORD ID for this tenant.
  1141.  *  ppNew           PCTenant * in which to store the new tenant.
  1142.  *
  1143.  * Return Value:
  1144.  *  BOOL            TRUE if the function succeeded, FALSE otherwise.
  1145.  */
  1146. BOOL CPage::TenantAdd(UINT iTenant, DWORD dwID
  1147.     , PCTenant *ppNew)
  1148.     {
  1149.     PCTenant    pTenant;
  1150.     LRESULT     lr;
  1151.     if (NULL!=ppNew)
  1152.         *ppNew=NULL;
  1153.     pTenant=new CTenant(dwID, m_hWnd, m_pPG);
  1154.     if (NULL==pTenant)
  1155.         return FALSE;
  1156.     //The constructor doesn't AddRef, so we need to.
  1157.     pTenant->AddRef();
  1158.     //Now try to add to the listbox.
  1159.     lr=SendMessage(m_hWndTenantList, LB_INSERTSTRING, iTenant
  1160.         , (LONG)pTenant);
  1161.     if (lr < 0)
  1162.         {
  1163.         pTenant->Release();
  1164.         return FALSE;
  1165.         }
  1166.     *ppNew=pTenant;
  1167.     return TRUE;
  1168.     }
  1169. /*
  1170.  * CPage::TransferObjectCreate
  1171.  * (Protected)
  1172.  *
  1173.  * Purpose:
  1174.  *  Creates a DataTransferObject and stuff the current selection's
  1175.  *  data into it.
  1176.  *
  1177.  * Parameters:
  1178.  *  pptl            PPOINTL containing the pick point in device
  1179.  *                  units applicable only to drag-drop; since
  1180.  *                  drag-drop is inherently mouse oriented, we use
  1181.  *                  device units for the point.  Ignored if NULL.
  1182.  *
  1183.  * Return Value:
  1184.  *  LPDATAOBJECT    Pointer to the object created, NULL on failure
  1185.  */
  1186. LPDATAOBJECT CPage::TransferObjectCreate(PPOINTL pptl)
  1187.     {
  1188.     LPDATAOBJECT    pIDataObject;
  1189.     LPDATAOBJECT    pIDataT;
  1190.     PPATRONOBJECT   ppo;
  1191.     RECTL           rcl;
  1192.     LPUNKNOWN       pObj;
  1193.     FORMATETC       fe;
  1194.     STGMEDIUM       stm;
  1195.     HRESULT         hr;
  1196.     //CHAPTER21MOD
  1197.     HGLOBAL         hMem;
  1198.     //End CHAPTER21MOD
  1199.     m_pTenantCur->ObjectGet(&pObj);
  1200.     hr=CoCreateInstance(CLSID_DataTransferObject, NULL
  1201.         , CLSCTX_INPROC_SERVER, IID_IDataObject
  1202.         , (PPVOID)&pIDataObject);
  1203.     if (FAILED(hr))
  1204.         return NULL;
  1205.     //Go get the data we should hold on to.
  1206.     hr=pObj->QueryInterface(IID_IDataObject, (PPVOID)&pIDataT);
  1207.     if (FAILED(hr))
  1208.         {
  1209.         pIDataObject->Release();
  1210.         pObj->Release();
  1211.         return NULL;
  1212.         }
  1213.     //Copy from known obj into transfer obj.  Ordering is important!
  1214.     //Generate placeable object structure
  1215.     stm.tymed=TYMED_HGLOBAL;
  1216.     stm.pUnkForRelease=NULL;
  1217.     stm.hGlobal=GlobalAlloc(GHND, sizeof(PATRONOBJECT));
  1218.     if (NULL==stm.hGlobal)
  1219.         {
  1220.         pIDataObject->Release();
  1221.         pObj->Release();
  1222.         return NULL;
  1223.         }
  1224.     ppo=(PPATRONOBJECT)GlobalLock(stm.hGlobal);
  1225.     m_pTenantCur->SizeGet(&ppo->szl, FALSE);
  1226.     ppo->szl.cy=-ppo->szl.cy; //Negate to make absolute size
  1227.     m_pTenantCur->RectGet(&rcl, FALSE);
  1228.     ppo->ptl.x=rcl.left;
  1229.     ppo->ptl.y=rcl.top;
  1230.     if (NULL==pptl)
  1231.         {
  1232.         ppo->ptlPick.x=0;
  1233.         ppo->ptlPick.y=0;
  1234.         }
  1235.     else
  1236.         ppo->ptlPick=*pptl;
  1237.     m_pTenantCur->FormatEtcGet(&ppo->fe, FALSE);
  1238.     //If this is a linked object, just copy a presentation
  1239.     if (TENANTTYPE_LINKEDOBJECT==m_pTenantCur->TypeGet())
  1240.         m_pTenantCur->FormatEtcGet(&ppo->fe, TRUE);
  1241.     SETDefFormatEtc(fe, m_pPG->m_cf, TYMED_HGLOBAL);
  1242.     pIDataObject->SetData(&fe, &stm, TRUE);
  1243.     /*
  1244.      * Here now we have to include CFSTR_EMBEDDEDOBJECT and
  1245.      * CFSTR_OBJECTDESCRIPTOR when what we have selected is, in
  1246.      * fact, a compound document object.  We'll just ask the tenant
  1247.      * to set these in pIDataObject since it knows what the object.
  1248.      * If we copy embedded object data, make sure the PATRONOBJECT
  1249.      * structure has the right format in it as well.
  1250.      */
  1251.     m_pTenantCur->CopyEmbeddedObject(pIDataObject, &ppo->fe, pptl);
  1252.     //CHAPTER21MOD
  1253.     hMem=stm.hGlobal;
  1254.     //End CHAPTER21MOD
  1255.     //Copy the actual presentation.
  1256.     m_pTenantCur->FormatEtcGet(&fe, TRUE);
  1257.     pIDataT->GetData(&fe, &stm);
  1258.     pIDataObject->SetData(&fe, &stm, TRUE);
  1259.     //CHAPTER21MOD
  1260.     //Copy a link to this tenant if it's embedded
  1261.     m_pTenantCur->CopyLinkedObject(pIDataObject, &ppo->fe, pptl);
  1262.     GlobalUnlock(hMem); //ppo
  1263.     //End CHAPTER21MOD
  1264.     pIDataT->Release();
  1265.     pObj->Release();
  1266.     return pIDataObject;    //Caller now responsible
  1267.     }