blob: b34fb3f77195b663ec91c3e968af0892d506bbe7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* This file incorporates work covered by the following license notice:
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed
* with this work for additional information regarding copyright
* ownership. The ASF licenses this file to you under the Apache
* License, Version 2.0 (the "License"); you may not use this file
* except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
#include <sfx2/ipclient.hxx>
#include <sfx2/viewsh.hxx>
#include <fesh.hxx>
#include <cntfrm.hxx>
#include <flyfrm.hxx>
#include <doc.hxx>
#include <notxtfrm.hxx>
#include <ndole.hxx>
#include <swcli.hxx>
#include <docsh.hxx>
#include <IDocumentLinksAdministration.hxx>
#include <sfx2/linkmgr.hxx>
using namespace com::sun::star;
SwFlyFrame *SwFEShell::FindFlyFrame( const uno::Reference < embed::XEmbeddedObject >& xObj ) const
{
SwFlyFrame *pFly = GetSelectedFlyFrame();
if ( pFly && pFly->Lower() && pFly->Lower()->IsNoTextFrame() )
{
SwOLENode *pNd = static_cast<SwNoTextFrame*>(pFly->Lower())->GetNode()->GetOLENode();
if ( !pNd || pNd->GetOLEObj().GetOleRef() != xObj )
pFly = nullptr;
}
else
pFly = nullptr;
if ( !pFly )
{
// No or wrong fly selected: we have to search.
bool bExist = false;
SwStartNode *pStNd;
sal_uLong nSttIdx = GetNodes().GetEndOfAutotext().StartOfSectionIndex() + 1,
nEndIdx = GetNodes().GetEndOfAutotext().GetIndex();
while( nSttIdx < nEndIdx &&
nullptr != (pStNd = GetNodes()[ nSttIdx ]->GetStartNode()) )
{
SwNode *pNd = GetNodes()[ nSttIdx+1 ];
if ( pNd->IsOLENode() &&
static_cast<SwOLENode*>(pNd)->GetOLEObj().GetOleRef() == xObj )
{
bExist = true;
SwFrame *pFrame = static_cast<SwOLENode*>(pNd)->getLayoutFrame( GetLayout() );
if ( pFrame )
pFly = pFrame->FindFlyFrame();
break;
}
nSttIdx = pStNd->EndOfSectionIndex() + 1;
}
OSL_ENSURE( bExist, "OLE-Object unknown and FlyFrame not found." );
}
return pFly;
}
OUString SwFEShell::GetUniqueOLEName() const
{
return GetDoc()->GetUniqueOLEName();
}
OUString SwFEShell::GetUniqueFrameName() const
{
return GetDoc()->GetUniqueFrameName();
}
OUString SwFEShell::GetUniqueShapeName() const
{
return GetDoc()->GetUniqueShapeName();
}
bool SwFEShell::FinishOLEObj() // Server is terminated
{
SfxInPlaceClient* pIPClient = GetSfxViewShell()->GetIPClient();
if ( !pIPClient )
return false;
bool bRet = pIPClient->IsObjectInPlaceActive();
if( bRet )
{
if( CNT_OLE == GetCntType() )
ClearAutomaticContour();
if( static_cast<SwOleClient*>(pIPClient)->IsCheckForOLEInCaption() !=
IsCheckForOLEInCaption() )
SetCheckForOLEInCaption( !IsCheckForOLEInCaption() );
// enable update of the link preview
comphelper::EmbeddedObjectContainer& rEmbeddedObjectContainer = GetDoc()->GetDocShell()->getEmbeddedObjectContainer();
const bool aUserAllowsLinkUpdate = rEmbeddedObjectContainer.getUserAllowsLinkUpdate();
rEmbeddedObjectContainer.setUserAllowsLinkUpdate(true);
// leave UIActive state
pIPClient->DeactivateObject();
// if we have more than one link let's update them too
sfx2::LinkManager& rLinkManager = GetDoc()->getIDocumentLinksAdministration().GetLinkManager();
if (rLinkManager.GetLinks().size() > 1)
rLinkManager.UpdateAllLinks(false, false, nullptr);
// return back original value of the "update of the link preview" flag
rEmbeddedObjectContainer.setUserAllowsLinkUpdate(aUserAllowsLinkUpdate);
}
return bRet;
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|