Stop leaking all ScPostIt instances.
[LibreOffice.git] / sc / source / ui / inc / areasave.hxx
blob8d7ff13ca8183497e318890376340cab90c2ddbe
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
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 .
20 #ifndef SC_AREASAVE_HXX
21 #define SC_AREASAVE_HXX
23 #include "address.hxx"
25 #include <boost/ptr_container/ptr_vector.hpp>
27 class ScDocument;
28 class ScAreaLink;
31 class ScAreaLinkSaver
33 private:
34 OUString aFileName;
35 OUString aFilterName;
36 OUString aOptions;
37 OUString aSourceArea;
38 ScRange aDestArea;
39 sal_uLong nRefresh;
41 public:
42 ScAreaLinkSaver( const ScAreaLink& rSource );
43 ScAreaLinkSaver( const ScAreaLinkSaver& rCopy );
44 ~ScAreaLinkSaver();
46 bool IsEqual( const ScAreaLink& rCompare ) const;
47 bool IsEqualSource( const ScAreaLink& rCompare ) const;
49 void WriteToLink( ScAreaLink& rLink ) const;
50 void InsertNewLink( ScDocument* pDoc ) const;
54 class ScAreaLinkSaveCollection
56 typedef ::boost::ptr_vector<ScAreaLinkSaver> DataType;
57 DataType maData;
58 public:
59 ScAreaLinkSaveCollection();
60 ScAreaLinkSaveCollection( const ScAreaLinkSaveCollection& r );
61 ~ScAreaLinkSaveCollection();
64 bool IsEqual( const ScDocument* pDoc ) const;
65 void Restore( ScDocument* pDoc ) const;
67 // returns NULL if empty
68 static ScAreaLinkSaveCollection* CreateFromDoc( const ScDocument* pDoc );
70 const ScAreaLinkSaver* operator[](size_t nIndex) const;
71 size_t size() const;
72 void push_back(ScAreaLinkSaver* p);
76 #endif
78 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */