// //---------------------------------------------------------------------------- // ObjectComponents // (C) Copyright 1994 by Borland International, All Rights Reserved // // Implementation of TOcLinkView Class //---------------------------------------------------------------------------- #include #include #include #include TOcLinkView::TOcLinkView(TOcView* ocView, TRegList* regList, IUnknown* outer) : BSiteI(0), OcView(ocView), #if defined(BI_DATA_NEAR) Moniker(*new TString), Origin(*new TPoint(0,0)), Extent(*new TSize(0,0)) #else Origin(0,0), Extent(0,0) #endif { PRECONDITION(OcView); SetOuter(outer); AddRef(); // TUnknown defaults to 0, we need 1 // Create a site for this remote view // if (SUCCEEDED(OcView->OcApp.BOleComponentCreate(&BSite, (IUnknown*)(IBPart*)this, OcView->OcApp.IsOptionSet(amExeModule)? cidBOleSite : cidBOleInProcSite))) { if (SUCCEEDED(BSite->QueryInterface(IID_IBSite, &(LPVOID)BSiteI))) Release(); // Connect the part and the site // if (BSiteI) { const char* progid = regList->Lookup(OcView->OcApp.IsOptionSet(amDebug) ? "debugprogid" : "progid"); BSiteI->Init(this, this, OleStr(progid), true); } if (SUCCEEDED(BSite->QueryInterface(IID_IBApplication, &(LPVOID)BAppI))) BAppI->Release(); // avoid deadlock } } TOcLinkView::~TOcLinkView() { // Detach the link view // Detach(); if (BSite) { BSite->Release(); } #if defined(BI_DATA_NEAR) delete &Moniker; #endif } // // Remove this link view from the document // int TOcLinkView::Detach() { return OcView->OcDocument.GetViews().Detach(this); } // // // HRESULT TOcLinkView::QueryObject(const IID far& iid, void far* far* iface) { PRECONDITION(iface); HRESULT hr; // interfaces // SUCCEEDED(hr = IBPart_QueryInterface(this, iid, iface)) || SUCCEEDED(hr = IBDataProvider_QueryInterface(this, iid, iface)) // helpers // || (BSite && SUCCEEDED(hr = BSite->QueryInterface(iid, iface))) ; return hr; } //---------------------------------------------------------------------------- // IBSite pass-thrus // // Invalidate the site corresponding to this view // void TOcLinkView::Invalidate(TOcInvalidate invalid) { if (BSiteI) BSiteI->Invalidate(invalid); } // // Disconnect from the client site // void TOcLinkView::Disconnect() { if (BSiteI) BSiteI->Disconnect(); } // // Remember the name of the moniker // void TOcLinkView::SetMoniker(const char far* name) { Moniker = const_cast(name); // force TString to copy } //---------------------------------------------------------------------------- // IDataNegotiator implementation uint _IFUNC TOcLinkView::CountFormats() { return OcView->CountFormats(); } HRESULT _IFUNC TOcLinkView::GetFormat(uint index, TOcFormatInfo far* fmt) { PRECONDITION(fmt); return OcView->GetFormat(index, fmt); } //---------------------------------------------------------------------------- // IBDataNegotiator implementation // // Request native data for pasting into client application. // This is only called at paste time (not at copy time). // HANDLE _IFUNC TOcLinkView::GetFormatData(TOcFormatInfo far* fmt) { PRECONDITION(fmt); TOcFormat* format = OcView->FormatList.Find(fmt->Id); if (!format) return 0; TOcFormatData formatData(*format); if (OcView->ForwardEvent(OC_VIEWCLIPDATA, &formatData)) return formatData.Handle; else return 0; } // // Get the initial size and position from the app // void TOcLinkView::GetLinkRect() { TOcPartSize ps(true, &Moniker); // Ask the app for initial server extent // if (!OcView->ForwardEvent(OC_VIEWPARTSIZE, &ps)) { // An empty rect as default means that the container // decides the size for this server // ps.PartRect.SetNull(); } Extent = ps.PartRect.Size(); Origin = ps.PartRect.TopLeft(); } // // Render the view in the DC provided. Should be a MetaFile // Packup all the args & forward message to real view to paint // HRESULT _IFUNC TOcLinkView::Draw(HDC dc, const RECTL far* pos, const RECTL far* clip, TOcAspect aspect, TOcDraw bd) { PRECONDITION(dc); // Rely on the bolero shading // if (bd == drShadingOnly) return HR_NOERROR; TRect p((int)pos->left, (int)pos->top, (int)pos->right, (int)pos->bottom); TRect c((int)clip->left, (int)clip->top, (int)clip->right, (int)clip->bottom); p.SetEmpty(); ::SetMapMode(dc, MM_ANISOTROPIC); ::SetWindowExtEx(dc, Extent.cx, Extent.cy, 0); ::SetWindowOrgEx(dc, 0, 0, 0); p.Normalize(); c.Normalize(); // Find out where the TOleLinkView is // GetLinkRect(); *(TPoint*)&p = Origin; TOcViewPaint vp = { dc, &p, &c, (TOcAspect)aspect, false, &Moniker, 0 }; bool result = (bool)OcView->ForwardEvent(OC_VIEWPAINT, &vp); return HRFailIfZero(result); } // // Return the 'size' of the document that this view in on // HRESULT _IFUNC TOcLinkView::GetPartSize(TSize far* size) { *size = Extent; return HR_NOERROR; } // // Save the document that we are a view on // HRESULT _IFUNC TOcLinkView::Save(IStorage* storage, BOOL sameAsLoad, BOOL remember) { PRECONDITION(storage); TOcSaveLoad ocSave(storage, static_cast(sameAsLoad), static_cast(remember)); return HRFailIfZero((bool)OcView->ForwardEvent(OC_VIEWSAVEPART, &ocSave)); } //---------------------------------------------------------------------------- // IBPart implementation // // Load the associated document and activate the remote view // HRESULT _IFUNC TOcLinkView::Init(IBSite far*, TOcInitInfo far* /*initInfo*/) { return HR_NOERROR; } // // Close the remote view window, & if canShutDown is true, try to close the server // app too // HRESULT _IFUNC TOcLinkView::Close() { OcView->ForwardEvent(OC_VIEWBREAKLINK, this); return HR_NOERROR; } // // Query to determin if this view can open in place // HRESULT _IFUNC TOcLinkView::CanOpenInPlace() { return HR_FAIL; } // // Set a new position for our document within its container // HRESULT _IFUNC TOcLinkView::SetPartPos(TRect far* r) { Origin = *(POINT*)&r->left; return HR_NOERROR; } HRESULT _IFUNC TOcLinkView::SetPartSize(TSize far* size) { Extent = *size; return HR_NOERROR; } // // Activate this view // HRESULT _IFUNC TOcLinkView::Activate(bool /*activate*/) { return HR_NOERROR; } // // Show/Hide the server view window // HRESULT _IFUNC TOcLinkView::Show(bool /*show*/) { return HR_NOERROR; } // // Start or end open editing // Work with the window Z-order and parenting // HRESULT _IFUNC TOcLinkView::Open(bool open) { if (open) { TOcRemView* ocRemView = TYPESAFE_DOWNCAST(OcView, TOcRemView); if (ocRemView) ocRemView->SetOpenEditing(); OcView->ForwardEvent(OC_VIEWATTACHWINDOW, true); OcView->BringToFront(); } return HR_NOERROR; } // // Enumerate the verbs for our document // HRESULT _IFUNC TOcLinkView::EnumVerbs(TOcVerb far*) { return HR_FAIL; // Not called on BOle parts } // // Perform a verb on our document // HRESULT _IFUNC TOcLinkView::DoVerb(uint) { return HR_FAIL; // Not called on BOle parts } // // Open or close this view as an in-place edit session. If hWndParent is 0, then // in-place is closing // HWND _IFUNC TOcLinkView::OpenInPlace(HWND /*hWndParent*/) { return 0; } // // Insert the server's menus into the shared menubar // HRESULT _IFUNC TOcLinkView::InsertMenus(HMENU /*hMenu*/, TOcMenuWidths far* /*omw*/) { return HR_NOERROR; } // // Show or hide the tool windows used by our view // HRESULT _IFUNC TOcLinkView::ShowTools(bool /*show*/) { return HR_NOERROR; } // // A container window has resized. Perform any necessary adjustment of our // tools. // void _IFUNC TOcLinkView::FrameResized(const TRect far* /*contFrameR*/, bool /*isMainFrame*/) { } // // Let the server provide drag feedback // HRESULT _IFUNC TOcLinkView::DragFeedback(TPoint far* where, bool /*nearScroll*/) { TPoint awhere(*where); TOcDragDrop dd = { 0, &awhere, 0 }; return HRFailIfZero((bool)OcView->ForwardEvent(OC_VIEWDRAG, &dd)); } // // Optional palette query for // HRESULT _IFUNC TOcLinkView::GetPalette(LOGPALETTE far* far* palette) { PRECONDITION(palette); return HRFailIfZero((bool)OcView->ForwardEvent(OC_VIEWGETPALETTE, palette)); } HRESULT _IFUNC TOcLinkView::SetHost(IBContainer far* /*objContainer*/) { return HR_FAIL; // Not called on BOle parts. } HRESULT _IFUNC TOcLinkView::DoQueryInterface(const IID far& iid, void far* far* iface) { PRECONDITION(iface); return OcView->QueryInterface(iid, iface); // Unused on server side } LPOLESTR _IFUNC TOcLinkView::GetName(TOcPartName /*name*/) { return 0; // Not called on BOle parts. } //---------------------------------------------------------------------------- // TOcViewCollection // TOcViewCollection::TOcViewCollection() : TCVectorImp(0, 10) { } TOcViewCollection::~TOcViewCollection() { Clear(); } // // Release Views in the collection // void TOcViewCollection::Clear() { for (int i = Count() - 1; i >= 0; i--) { TOcLinkView* View = (TOcLinkView*)(*this)[i]; View->Release(); } } int TOcViewCollection::Detach(TOcLinkView* const& view, int del) { int ret = Base::Detach(Find(view)); if (ret && del) const_cast(view)->Release(); return ret; } TOcLinkView* TOcViewCollection::Find(TString const moniker) const { for (TOcViewCollectionIter j(*this); j; j++) { TOcLinkView* view = (TOcLinkView*)j.Current(); if (view && strcmp(view->GetMoniker(), moniker) == 0) { return view; } } return 0; }