1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5 * Copyright 2008 by Sun Microsystems, Inc.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * $RCSfile: IDocumentLinksAdministration.hxx,v $
12 * This file is part of OpenOffice.org.
14 * OpenOffice.org is free software: you can redistribute it and/or modify
15 * it under the terms of the GNU Lesser General Public License version 3
16 * only, as published by the Free Software Foundation.
18 * OpenOffice.org is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU Lesser General Public License version 3 for more details
22 * (a copy is included in the LICENSE file that accompanied this code).
24 * You should have received a copy of the GNU Lesser General Public License
25 * version 3 along with OpenOffice.org. If not, see
26 * <http://www.openoffice.org/license.html>
27 * for a copy of the LGPLv3 License.
29 ************************************************************************/
31 #ifndef IDOCUMENTLINKSADMINISTRATION_HXX_INCLUDED
32 #define IDOCUMENTLINKSADMINISTRATION_HXX_INCLUDED
34 #include <tools/solar.h>
39 namespace com
{ namespace sun
{ namespace star
{ namespace uno
{ class Any
; } } } }
41 namespace sfx2
{ class SvLinkSource
; }
43 /** Document links administration interface
45 class IDocumentLinksAdministration
48 /** Links un-/sichtbar in LinkManager einfuegen (gelinkte Bereiche)
50 virtual bool IsVisibleLinks() const = 0;
54 virtual void SetVisibleLinks(bool bFlag
) = 0;
58 virtual SvxLinkManager
& GetLinkManager() = 0;
62 virtual const SvxLinkManager
& GetLinkManager() const = 0;
64 /** FME 2005-02-25 #i42634# Moved common code of SwReader::Read() and
65 SwDocShell::UpdateLinks() to new SwDoc::UpdateLinks():
67 virtual void UpdateLinks(BOOL bUI
) = 0;
69 /** SS fuers Linken von Dokumentteilen
71 virtual bool GetData(const String
& rItem
, const String
& rMimeType
, ::com::sun::star::uno::Any
& rValue
) const = 0;
75 virtual bool SetData(const String
& rItem
, const String
& rMimeType
, const ::com::sun::star::uno::Any
& rValue
) = 0;
79 virtual ::sfx2::SvLinkSource
* CreateLinkSource(const String
& rItem
) = 0;
81 /** embedded alle lokalen Links (Bereiche/Grafiken)
83 virtual bool EmbedAllLinks() = 0;
87 virtual void SetLinksUpdated(const bool bNewLinksUpdated
) = 0;
91 virtual bool LinksUpdated() const = 0;
94 virtual ~IDocumentLinksAdministration() {};
97 #endif // IDOCUMENTLINKSADMINISTRATION_HXX_INCLUDED