KReport

KoSimpleOdsDocument.h
1 /* This file is part of the KDE project
2  Copyright (C) 2010 by Adam Pigg ([email protected])
3 
4  This library is free software; you can redistribute it and/or
5  modify it under the terms of the GNU Library General Public
6  License as published by the Free Software Foundation; either
7  version 2.1 of the License, or (at your option) any later version.
8 
9  This library is distributed in the hope that it will be useful,
10  but WITHOUT ANY WARRANTY; without even the implied warranty of
11  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12  Library General Public License for more details.
13 
14  You should have received a copy of the GNU Library General Public License
15  along with this library; see the file COPYING.LIB. If not, write to
16  the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
17  Boston, MA 02110-1301, USA.
18 */
19 
20 #ifndef KOSIMPLEODSDOCUMENT_H
21 #define KOSIMPLEODSDOCUMENT_H
22 
23 #include <QFile>
24 
25 #include "KoSimpleOdsSheet.h"
26 
27 class KoOdfWriteStore;
28 class KoStore;
29 
30 class KoSimpleOdsDocument
31 {
32  public:
33  KoSimpleOdsDocument();
34  ~KoSimpleOdsDocument();
35 
36  QFile::FileError saveDocument(const QString&);
37 
38  //!Adds a worksheet to the document.
39  //!The document assumes ownership of the sheet
40  //!and will delete it when destroyed
41  void addSheet(KoSimpleOdsSheet*);
42 
43  private:
44  bool createContent(KoOdfWriteStore* store);
45 
46  KoStore *m_store;
47  QList<KoSimpleOdsSheet*> m_worksheets;
48 };
49 
50 #endif // KOSIMPLEODSDOCUMENT_H
This file is part of the KDE documentation.
Documentation copyright © 1996-2023 The KDE developers.
Generated on Wed Dec 6 2023 04:08:57 by doxygen 1.8.17 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.