1*5b190011SAndrew Rist /**************************************************************
2cdf0e10cSrcweir *
3*5b190011SAndrew Rist * Licensed to the Apache Software Foundation (ASF) under one
4*5b190011SAndrew Rist * or more contributor license agreements. See the NOTICE file
5*5b190011SAndrew Rist * distributed with this work for additional information
6*5b190011SAndrew Rist * regarding copyright ownership. The ASF licenses this file
7*5b190011SAndrew Rist * to you under the Apache License, Version 2.0 (the
8*5b190011SAndrew Rist * "License"); you may not use this file except in compliance
9*5b190011SAndrew Rist * with the License. You may obtain a copy of the License at
10cdf0e10cSrcweir *
11*5b190011SAndrew Rist * http://www.apache.org/licenses/LICENSE-2.0
12cdf0e10cSrcweir *
13*5b190011SAndrew Rist * Unless required by applicable law or agreed to in writing,
14*5b190011SAndrew Rist * software distributed under the License is distributed on an
15*5b190011SAndrew Rist * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16*5b190011SAndrew Rist * KIND, either express or implied. See the License for the
17*5b190011SAndrew Rist * specific language governing permissions and limitations
18*5b190011SAndrew Rist * under the License.
19cdf0e10cSrcweir *
20*5b190011SAndrew Rist *************************************************************/
21*5b190011SAndrew Rist
22*5b190011SAndrew Rist
23cdf0e10cSrcweir
24cdf0e10cSrcweir // MARKER(update_precomp.py): autogen include statement, do not remove
25cdf0e10cSrcweir #include "precompiled_sd.hxx"
26cdf0e10cSrcweir
27cdf0e10cSrcweir #ifndef _SVXLINK_HXX
28cdf0e10cSrcweir #include <sfx2/linkmgr.hxx>
29cdf0e10cSrcweir #endif
30cdf0e10cSrcweir
31cdf0e10cSrcweir #include "pglink.hxx"
32cdf0e10cSrcweir #include "sdpage.hxx"
33cdf0e10cSrcweir #include "drawdoc.hxx"
34cdf0e10cSrcweir
35cdf0e10cSrcweir
36cdf0e10cSrcweir /*************************************************************************
37cdf0e10cSrcweir |*
38cdf0e10cSrcweir |* Ctor
39cdf0e10cSrcweir |*
40cdf0e10cSrcweir \************************************************************************/
41cdf0e10cSrcweir
SdPageLink(SdPage * pPg,const String & rFileName,const String & rBookmarkName)42cdf0e10cSrcweir SdPageLink::SdPageLink(SdPage* pPg, const String& rFileName,
43cdf0e10cSrcweir const String& rBookmarkName) :
44cdf0e10cSrcweir ::sfx2::SvBaseLink( ::sfx2::LINKUPDATE_ONCALL, FORMAT_FILE),
45cdf0e10cSrcweir pPage(pPg)
46cdf0e10cSrcweir {
47cdf0e10cSrcweir pPage->SetFileName(rFileName);
48cdf0e10cSrcweir pPage->SetBookmarkName(rBookmarkName);
49cdf0e10cSrcweir }
50cdf0e10cSrcweir
51cdf0e10cSrcweir
52cdf0e10cSrcweir /*************************************************************************
53cdf0e10cSrcweir |*
54cdf0e10cSrcweir |* Dtor
55cdf0e10cSrcweir |*
56cdf0e10cSrcweir \************************************************************************/
57cdf0e10cSrcweir
58cdf0e10cSrcweir
~SdPageLink()59cdf0e10cSrcweir SdPageLink::~SdPageLink()
60cdf0e10cSrcweir {
61cdf0e10cSrcweir }
62cdf0e10cSrcweir
63cdf0e10cSrcweir /*************************************************************************
64cdf0e10cSrcweir |*
65cdf0e10cSrcweir |* Daten haben sich geaendert
66cdf0e10cSrcweir |*
67cdf0e10cSrcweir \************************************************************************/
68cdf0e10cSrcweir
DataChanged(const String &,const::com::sun::star::uno::Any &)69cdf0e10cSrcweir void SdPageLink::DataChanged( const String& ,
70cdf0e10cSrcweir const ::com::sun::star::uno::Any& )
71cdf0e10cSrcweir {
72cdf0e10cSrcweir SdDrawDocument* pDoc = (SdDrawDocument*) pPage->GetModel();
73cdf0e10cSrcweir sfx2::LinkManager* pLinkManager = pDoc!=NULL ? pDoc->GetLinkManager() : NULL;
74cdf0e10cSrcweir
75cdf0e10cSrcweir if (pLinkManager)
76cdf0e10cSrcweir {
77cdf0e10cSrcweir /**********************************************************************
78cdf0e10cSrcweir * Nur Standardseiten duerfen gelinkt sein
79cdf0e10cSrcweir * Die entsprechenden Notizseiten werden automatisch aktualisiert
80cdf0e10cSrcweir **********************************************************************/
81cdf0e10cSrcweir String aFileName;
82cdf0e10cSrcweir String aBookmarkName;
83cdf0e10cSrcweir String aFilterName;
84cdf0e10cSrcweir pLinkManager->GetDisplayNames( this,0, &aFileName, &aBookmarkName,
85cdf0e10cSrcweir &aFilterName);
86cdf0e10cSrcweir pPage->SetFileName(aFileName);
87cdf0e10cSrcweir pPage->SetBookmarkName(aBookmarkName);
88cdf0e10cSrcweir
89cdf0e10cSrcweir SdDrawDocument* pBookmarkDoc = pDoc->OpenBookmarkDoc(aFileName);
90cdf0e10cSrcweir
91cdf0e10cSrcweir if (pBookmarkDoc)
92cdf0e10cSrcweir {
93cdf0e10cSrcweir /******************************************************************
94cdf0e10cSrcweir * Die gelinkte Seite wird im Model replaced
95cdf0e10cSrcweir ******************************************************************/
96cdf0e10cSrcweir if (aBookmarkName.Len() == 0)
97cdf0e10cSrcweir {
98cdf0e10cSrcweir // Kein Seitenname angegeben: es wird die erste Seite genommen
99cdf0e10cSrcweir aBookmarkName = pBookmarkDoc->GetSdPage(0, PK_STANDARD)->GetName();
100cdf0e10cSrcweir pPage->SetBookmarkName(aBookmarkName);
101cdf0e10cSrcweir }
102cdf0e10cSrcweir
103cdf0e10cSrcweir List aBookmarkList;
104cdf0e10cSrcweir aBookmarkList.Insert(&aBookmarkName);
105cdf0e10cSrcweir sal_uInt16 nInsertPos = pPage->GetPageNum();
106cdf0e10cSrcweir sal_Bool bLink = sal_True;
107cdf0e10cSrcweir sal_Bool bReplace = sal_True;
108cdf0e10cSrcweir sal_Bool bNoDialogs = sal_False;
109cdf0e10cSrcweir sal_Bool bCopy = sal_False;
110cdf0e10cSrcweir
111cdf0e10cSrcweir if( pDoc->pDocLockedInsertingLinks )
112cdf0e10cSrcweir {
113cdf0e10cSrcweir // resolving links while loading pDoc
114cdf0e10cSrcweir bNoDialogs = sal_True;
115cdf0e10cSrcweir bCopy = sal_True;
116cdf0e10cSrcweir }
117cdf0e10cSrcweir
118cdf0e10cSrcweir pDoc->InsertBookmarkAsPage(&aBookmarkList, NULL, bLink, bReplace,
119cdf0e10cSrcweir nInsertPos, bNoDialogs, NULL, bCopy, sal_True, sal_True);
120cdf0e10cSrcweir
121cdf0e10cSrcweir if( !pDoc->pDocLockedInsertingLinks )
122cdf0e10cSrcweir pDoc->CloseBookmarkDoc();
123cdf0e10cSrcweir }
124cdf0e10cSrcweir }
125cdf0e10cSrcweir }
126cdf0e10cSrcweir
127cdf0e10cSrcweir /*************************************************************************
128cdf0e10cSrcweir |*
129cdf0e10cSrcweir |* Link an oder abmelden
130cdf0e10cSrcweir |*
131cdf0e10cSrcweir \************************************************************************/
132cdf0e10cSrcweir
Closed()133cdf0e10cSrcweir void SdPageLink::Closed()
134cdf0e10cSrcweir {
135cdf0e10cSrcweir // Die Verbindung wird aufgehoben
136cdf0e10cSrcweir pPage->SetFileName(String());
137cdf0e10cSrcweir pPage->SetBookmarkName(String());
138cdf0e10cSrcweir
139cdf0e10cSrcweir SvBaseLink::Closed();
140cdf0e10cSrcweir }
141cdf0e10cSrcweir
142cdf0e10cSrcweir
143cdf0e10cSrcweir
144