merge the formfield patch from ooo-build
[ooovba.git] / sw / inc / IDocumentLinksAdministration.hxx
blob739fd5d835b93f9bcf55072e3d445a4f4b5b8dbd
1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * Copyright 2008 by Sun Microsystems, Inc.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * $RCSfile: IDocumentLinksAdministration.hxx,v $
10 * $Revision: 1.6 $
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>
36 class String;
37 class SvxLinkManager;
39 namespace com { namespace sun { namespace star { namespace uno { class Any; } } } }
41 namespace sfx2 { class SvLinkSource; }
43 /** Document links administration interface
45 class IDocumentLinksAdministration
47 public:
48 /** Links un-/sichtbar in LinkManager einfuegen (gelinkte Bereiche)
50 virtual bool IsVisibleLinks() const = 0;
52 /**
54 virtual void SetVisibleLinks(bool bFlag) = 0;
56 /**
58 virtual SvxLinkManager& GetLinkManager() = 0;
60 /**
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;
73 /**
75 virtual bool SetData(const String& rItem, const String& rMimeType, const ::com::sun::star::uno::Any& rValue) = 0;
77 /**
79 virtual ::sfx2::SvLinkSource* CreateLinkSource(const String& rItem) = 0;
81 /** embedded alle lokalen Links (Bereiche/Grafiken)
83 virtual bool EmbedAllLinks() = 0;
85 /**
87 virtual void SetLinksUpdated(const bool bNewLinksUpdated) = 0;
89 /**
90 */
91 virtual bool LinksUpdated() const = 0;
93 protected:
94 virtual ~IDocumentLinksAdministration() {};
97 #endif // IDOCUMENTLINKSADMINISTRATION_HXX_INCLUDED