1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5 * Copyright 2000, 2010 Oracle and/or its affiliates.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * This file is part of OpenOffice.org.
11 * OpenOffice.org is free software: you can redistribute it and/or modify
12 * it under the terms of the GNU Lesser General Public License version 3
13 * only, as published by the Free Software Foundation.
15 * OpenOffice.org is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU Lesser General Public License version 3 for more details
19 * (a copy is included in the LICENSE file that accompanied this code).
21 * You should have received a copy of the GNU Lesser General Public License
22 * version 3 along with OpenOffice.org. If not, see
23 * <http://www.openoffice.org/license.html>
24 * for a copy of the LGPLv3 License.
26 ************************************************************************/
28 #ifndef SC_AREALINK_HXX
29 #define SC_AREALINK_HXX
32 #include "refreshtimer.hxx"
33 #include "address.hxx"
34 #include <sfx2/lnkbase.hxx>
39 class AbstractScLinkedAreaDlg
;
42 class SC_DLLPUBLIC ScAreaLink
: public ::sfx2::SvBaseLink
, public ScRefreshTimer
53 BOOL bDoInsert
; // wird fuer das erste Update auf FALSE gesetzt
55 BOOL
FindExtRange( ScRange
& rRange
, ScDocument
* pSrcDoc
, const String
& rAreaName
);
59 ScAreaLink( SfxObjectShell
* pShell
, const String
& rFile
,
60 const String
& rFilter
, const String
& rOpt
,
61 const String
& rArea
, const ScRange
& rDest
, ULONG nRefresh
);
62 virtual ~ScAreaLink();
64 virtual void Closed();
65 virtual void DataChanged( const String
& rMimeType
,
66 const ::com::sun::star::uno::Any
& rValue
);
68 virtual void Edit( Window
*, const Link
& rEndEditHdl
);
70 BOOL
Refresh( const String
& rNewFile
, const String
& rNewFilter
,
71 const String
& rNewArea
, ULONG nNewRefresh
);
73 void SetInCreate(BOOL bSet
) { bInCreate
= bSet
; }
74 void SetDoInsert(BOOL bSet
) { bDoInsert
= bSet
; }
75 void SetDestArea(const ScRange
& rNew
);
76 void SetSource(const String
& rDoc
, const String
& rFlt
, const String
& rOpt
,
79 BOOL
IsEqual( const String
& rFile
, const String
& rFilter
, const String
& rOpt
,
80 const String
& rSource
, const ScRange
& rDest
) const;
82 const String
& GetFile() const { return aFileName
; }
83 const String
& GetFilter() const { return aFilterName
; }
84 const String
& GetOptions() const { return aOptions
; }
85 const String
& GetSource() const { return aSourceArea
; }
86 const ScRange
& GetDestArea() const { return aDestArea
; }
88 DECL_LINK( RefreshHdl
, ScAreaLink
* );
89 DECL_LINK( AreaEndEditHdl
, void* );