LibreOffice Module sc (master) 1
arealink.hxx
Go to the documentation of this file.
1/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2/*
3 * This file is part of the LibreOffice project.
4 *
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/.
8 *
9 * This file incorporates work covered by the following license notice:
10 *
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 .
18 */
19
20#pragma once
21
22#include "refreshtimer.hxx"
23#include "address.hxx"
24#include <sfx2/lnkbase.hxx>
25#include "scdllapi.h"
26
27class SfxObjectShell;
28class ScDocShell;
29
31{
32private:
34 OUString aFileName;
35 OUString aFilterName;
36 OUString aOptions;
37 OUString aSourceArea;
41 bool bDoInsert; // is set to FALSE for first update
42 static bool FindExtRange( ScRange& rRange, const ScDocument& rSrcDoc, const OUString& rAreaName );
43
44public:
45 ScAreaLink( SfxObjectShell* pShell, OUString aFile,
46 OUString aFilter, OUString aOpt,
47 OUString aArea, const ScRange& rDest, sal_Int32 nRefreshDelaySeconds );
48 virtual ~ScAreaLink() override;
49
50 virtual void Closed() override;
51 virtual ::sfx2::SvBaseLink::UpdateResult DataChanged(
52 const OUString& rMimeType, const css::uno::Any & rValue ) override;
53
54 virtual void Edit(weld::Window*, const Link<SvBaseLink&,void>& rEndEditHdl) override;
55
56 bool Refresh( const OUString& rNewFile, const OUString& rNewFilter,
57 const OUString& rNewArea, sal_Int32 nRefreshDelaySeconds );
58
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);
64
65 bool IsEqual( std::u16string_view rFile, std::u16string_view rFilter, std::u16string_view rOpt,
66 std::u16string_view rSource, const ScRange& rDest ) const;
67
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; }
73
74 DECL_DLLPRIVATE_LINK( RefreshHdl, Timer*, void );
75};
76
77/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
#define SC_DLLPUBLIC
Definition: scdllapi.h:27