Update ooo320-m1
[ooovba.git] / binfilter / inc / bf_svx / linkmgr.hxx
blob981fe641ea1b27794b0542504dae03f9c2a6bd3a
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: linkmgr.hxx,v $
10 * $Revision: 1.7 $
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 ************************************************************************/
30 #ifndef _SVXLINKMGR_HXX
31 #define _SVXLINKMGR_HXX
33 #ifndef _LINKMGR_HXX
34 #include <bf_so3/linkmgr.hxx>
35 #endif
36 class Graphic;
37 class Size;
38 namespace binfilter {
41 // Damit der Link ueber den Status der zu ladenen Grafik informierten werden
42 // verschickt das FileObject ein SvData, mit der FormatId
43 // "RegisterStatusInfoId" und ein einem String als Datentraeger. Dieser
44 // enthaelt den folgenden enum.
45 enum LinkState
47 STATE_LOAD_OK,
48 STATE_LOAD_ERROR,
49 STATE_LOAD_ABORT
52 class SvxLinkManager : public ::binfilter::SvLinkManager
54 SvxLinkManager( const SvxLinkManager& );
55 SvxLinkManager& operator=( const SvxLinkManager& );
57 public:
58 SvxLinkManager( SvPersist * pCacheCont );
60 // den Link mit einem PseudoObject verbinden und in die Liste eintragen
61 BOOL InsertFileLink( ::binfilter::SvBaseLink&,
62 USHORT nFileType,
63 const String& rTxt,
64 const String* pFilterNm = 0,
65 const String* pRange = 0 );
67 // falls am Link schon alles eingestellt ist !
69 // erfrage die Strings fuer den Dialog
70 virtual BOOL GetDisplayNames( const ::binfilter::SvBaseLink*,
71 String* pType,
72 String* pFile = 0,
73 String* pLink = 0,
74 String* pFilter = 0 ) const;
76 virtual ::binfilter::SvLinkSourceRef CreateObj( ::binfilter::SvBaseLink * );
78 // eine Uebertragung wird abgebrochen, also alle DownloadMedien canceln
79 // (ist zur Zeit nur fuer die FileLinks interressant!)
80 void CancelTransfers();
83 // um Status Informationen aus dem FileObject an den BaseLink zu
84 // senden, gibt es eine eigene ClipBoardId. Das SvData-Object hat
85 // dann die entsprechenden Informationen als String.
86 // Wird zur Zeit fuer FileObject in Verbindung mit JavaScript benoetigt
87 // - das braucht Informationen ueber Load/Abort/Error
88 static ULONG RegisterStatusInfoId();
90 // if the mimetype says graphic/bitmap/gdimetafile then get the
91 // graphic from the Any. Return says no errors
92 static BOOL GetGraphicFromAny( const String& rMimeType,
93 const ::com::sun::star::uno::Any & rValue,
94 Graphic& rGrf );
98 }//end of namespace binfilter
99 #endif