merged tag ooo/OOO330_m14
[LibreOffice.git] / sc / inc / arealink.hxx
blob46ce98709df1aabb1575079afa4f276e8e8db920
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
31 #include "global.hxx"
32 #include "refreshtimer.hxx"
33 #include "address.hxx"
34 #include <sfx2/lnkbase.hxx>
35 #include "scdllapi.h"
37 class ScDocShell;
38 class SfxObjectShell;
39 class AbstractScLinkedAreaDlg;
40 struct AreaLink_Impl;
42 class SC_DLLPUBLIC ScAreaLink : public ::sfx2::SvBaseLink, public ScRefreshTimer
44 private:
45 AreaLink_Impl* pImpl;
46 String aFileName;
47 String aFilterName;
48 String aOptions;
49 String aSourceArea;
50 ScRange aDestArea;
51 BOOL bAddUndo;
52 BOOL bInCreate;
53 BOOL bDoInsert; // wird fuer das erste Update auf FALSE gesetzt
55 BOOL FindExtRange( ScRange& rRange, ScDocument* pSrcDoc, const String& rAreaName );
57 public:
58 TYPEINFO();
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,
77 const String& rArea);
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* );
92 #endif