LibreOffice Module sc (master) 1
areasave.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 <address.hxx>
23
24#include <memory>
25#include <vector>
26
27class ScDocument;
28class ScAreaLink;
29
31{
32private:
33 OUString aFileName;
34 OUString aFilterName;
35 OUString aOptions;
36 OUString aSourceArea;
39
40public:
41 ScAreaLinkSaver( const ScAreaLink& rSource );
42
43 bool IsEqual( const ScAreaLink& rCompare ) const;
44 bool IsEqualSource( const ScAreaLink& rCompare ) const;
45
46 void WriteToLink( ScAreaLink& rLink ) const;
47 void InsertNewLink( ScDocument* pDoc );
48};
49
51{
52 typedef ::std::vector<ScAreaLinkSaver> DataType;
54public:
57
58 bool IsEqual( const ScDocument* pDoc ) const;
59 void Restore( ScDocument* pDoc );
60
61 // returns NULL if empty
62 static std::unique_ptr<ScAreaLinkSaveCollection> CreateFromDoc( const ScDocument* pDoc );
63
64 ScAreaLinkSaver& operator[](size_t nIndex);
65 const ScAreaLinkSaver& operator[](size_t nIndex) const;
66 size_t size() const;
67 void push_back(const ScAreaLinkSaver&);
68};
69
70/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
static std::unique_ptr< ScAreaLinkSaveCollection > CreateFromDoc(const ScDocument *pDoc)
Definition: areasave.cxx:147
void push_back(const ScAreaLinkSaver &)
Definition: areasave.cxx:187
void Restore(ScDocument *pDoc)
Definition: areasave.cxx:123
bool IsEqual(const ScDocument *pDoc) const
Definition: areasave.cxx:81
size_t size() const
Definition: areasave.cxx:182
ScAreaLinkSaver & operator[](size_t nIndex)
Definition: areasave.cxx:172
::std::vector< ScAreaLinkSaver > DataType
Definition: areasave.hxx:52
OUString aSourceArea
Definition: areasave.hxx:36
bool IsEqualSource(const ScAreaLink &rCompare) const
Definition: areasave.cxx:37
bool IsEqual(const ScAreaLink &rCompare) const
Definition: areasave.cxx:46
ScRange aDestArea
Definition: areasave.hxx:37
OUString aOptions
Definition: areasave.hxx:35
void WriteToLink(ScAreaLink &rLink) const
Definition: areasave.cxx:52
OUString aFilterName
Definition: areasave.hxx:34
sal_Int32 nRefreshDelaySeconds
Definition: areasave.hxx:38
ScAreaLinkSaver(const ScAreaLink &rSource)
Definition: areasave.cxx:27
void InsertNewLink(ScDocument *pDoc)
Definition: areasave.cxx:57
OUString aFileName
Definition: areasave.hxx:33