1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
22 #include "refreshtimer.hxx"
23 #include "address.hxx"
24 #include <sfx2/lnkbase.hxx>
30 class SAL_DLLPUBLIC_RTTI ScAreaLink final
: public ::sfx2::SvBaseLink
, public ScRefreshTimer
41 bool bDoInsert
; // is set to FALSE for first update
42 static bool FindExtRange( ScRange
& rRange
, const ScDocument
& rSrcDoc
, const OUString
& rAreaName
);
45 SC_DLLPUBLIC
ScAreaLink( ScDocShell
* pShell
, OUString aFile
,
46 OUString aFilter
, OUString aOpt
,
47 OUString aArea
, const ScRange
& rDest
, sal_Int32 nRefreshDelaySeconds
);
48 virtual ~ScAreaLink() override
;
50 virtual void Closed() override
;
51 virtual ::sfx2::SvBaseLink::UpdateResult
DataChanged(
52 const OUString
& rMimeType
, const css::uno::Any
& rValue
) override
;
54 virtual void Edit(weld::Window
*, const Link
<SvBaseLink
&,void>& rEndEditHdl
) override
;
56 bool Refresh( const OUString
& rNewFile
, const OUString
& rNewFilter
,
57 const OUString
& rNewArea
, sal_Int32 nRefreshDelaySeconds
);
59 void SetInCreate(bool bSet
) { bInCreate
= bSet
; }
60 void SetDoInsert(bool bSet
) { bDoInsert
= bSet
; }
61 void SetDestArea(const ScRange
& rNew
);
62 void SetSource(const OUString
& rDoc
, const OUString
& rFlt
, const OUString
& rOpt
,
63 const OUString
& rArea
);
65 bool IsEqual( std::u16string_view rFile
, std::u16string_view rFilter
, std::u16string_view rOpt
,
66 std::u16string_view rSource
, const ScRange
& rDest
) const;
68 const OUString
& GetFile() const { return aFileName
; }
69 const OUString
& GetFilter() const { return aFilterName
; }
70 const OUString
& GetOptions() const { return aOptions
; }
71 const OUString
& GetSource() const { return aSourceArea
; }
72 const ScRange
& GetDestArea() const { return aDestArea
; }
74 DECL_DLLPRIVATE_LINK( RefreshHdl
, Timer
*, void );
77 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */