Branch libreoffice-5-0-4
[LibreOffice.git] / include / xmloff / SchXMLExportHelper.hxx
blob3585d64d1a03c23e189d2142e3cfcf5df0f392c9
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 .
19 #ifndef INCLUDED_XMLOFF_SCHXMLEXPORTHELPER_HXX
20 #define INCLUDED_XMLOFF_SCHXMLEXPORTHELPER_HXX
22 #include <sal/config.h>
23 #include <xmloff/dllapi.h>
24 #include <sal/types.h>
25 #include <salhelper/simplereferenceobject.hxx>
26 #include <rtl/ustrbuf.hxx>
27 #include <com/sun/star/util/XStringMapping.hpp>
28 #include <com/sun/star/awt/Size.hpp>
29 #include <com/sun/star/awt/Point.hpp>
30 #include <xmloff/xmlprmap.hxx>
32 #include <queue>
33 #include <vector>
35 class SvXMLAutoStylePoolP;
36 class SvXMLExport;
37 class SchXMLExportHelper_Impl;
39 /** With this class you can export a <chart:chart> element containing
40 its data as <table:table> element or without internal table. In
41 the latter case you have to provide a table address mapper if the
42 cell addressing set at the document is not in XML format.
44 class XMLOFF_DLLPUBLIC SchXMLExportHelper : public salhelper::SimpleReferenceObject
46 public:
47 SchXMLExportHelper( SvXMLExport& rExport,
48 SvXMLAutoStylePoolP& rASPool );
50 virtual ~SchXMLExportHelper();
52 /// returns the string corresponding to the current FileFormat CLSID for Chart
53 const OUString& getChartCLSID();
55 void SetSourceShellID( const OUString& rShellID );
56 void SetDestinationShellID( const OUString& rShellID );
58 private:
59 SchXMLExportHelper(SchXMLExportHelper &) SAL_DELETED_FUNCTION;
60 void operator =(SchXMLExportHelper &) SAL_DELETED_FUNCTION;
62 private:
63 SchXMLExportHelper_Impl* m_pImpl;
64 friend class SchXMLExport;
67 #endif // INCLUDED_XMLOFF_SCHXMLEXPORTHELPER_HXX
69 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */