summaryrefslogtreecommitdiff
path: root/bf_sc/source/filter/xml/XMLConverter.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'bf_sc/source/filter/xml/XMLConverter.hxx')
-rw-r--r--bf_sc/source/filter/xml/XMLConverter.hxx224
1 files changed, 224 insertions, 0 deletions
diff --git a/bf_sc/source/filter/xml/XMLConverter.hxx b/bf_sc/source/filter/xml/XMLConverter.hxx
new file mode 100644
index 000000000..961a3bd53
--- /dev/null
+++ b/bf_sc/source/filter/xml/XMLConverter.hxx
@@ -0,0 +1,224 @@
+/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
+/*
+ * This file is part of the LibreOffice project.
+ *
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+ *
+ * This file incorporates work covered by the following license notice:
+ *
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements. See the NOTICE file distributed
+ * with this work for additional information regarding copyright
+ * ownership. The ASF licenses this file to you under the Apache
+ * License, Version 2.0 (the "License"); you may not use this file
+ * except in compliance with the License. You may obtain a copy of
+ * the License at http://www.apache.org/licenses/LICENSE-2.0 .
+ */
+
+#ifndef _SC_XMLCONVERTER_HXX
+#define _SC_XMLCONVERTER_HXX
+
+#include "global.hxx"
+#include "detfunc.hxx"
+#include "detdata.hxx"
+
+#include <rtl/ustrbuf.hxx>
+
+#include <com/sun/star/frame/XModel.hpp>
+
+#include <com/sun/star/sheet/DataPilotFieldOrientation.hpp>
+#include <com/sun/star/sheet/GeneralFunction.hpp>
+
+#include <com/sun/star/table/CellAddress.hpp>
+#include <com/sun/star/table/CellRangeAddress.hpp>
+#include <com/sun/star/util/DateTime.hpp>
+class DateTime;
+namespace binfilter {
+
+class ScArea;
+class ScDocument;
+class ScRangeList;
+class SvXMLUnitConverter;
+
+//___________________________________________________________________
+
+class ScXMLConverter
+{
+protected:
+ static void AssignString(
+ ::rtl::OUString& rString,
+ const ::rtl::OUString& rNewStr,
+ sal_Bool bAppendStr );
+
+ static sal_Int32 IndexOf(
+ const ::rtl::OUString& rString,
+ sal_Unicode cSearchChar,
+ sal_Int32 nOffset,
+ sal_Unicode cQuote = '\'' );
+
+ static sal_Int32 IndexOfDifferent(
+ const ::rtl::OUString& rString,
+ sal_Unicode cSearchChar,
+ sal_Int32 nOffset );
+
+public:
+ inline ScXMLConverter() {}
+ inline ~ScXMLConverter() {}
+
+// helper methods
+ static sal_Int32 GetTokenCount(
+ const ::rtl::OUString& rString );
+ static void GetTokenByOffset(
+ ::rtl::OUString& rToken,
+ const ::rtl::OUString& rString,
+ sal_Int32& nOffset);
+
+ static ScDocument* GetScDocument(
+ ::com::sun::star::uno::Reference< ::com::sun::star::frame::XModel > xModel );
+
+// IMPORT: CellAddress / CellRange
+ static sal_Bool GetAddressFromString(
+ ScAddress& rAddress,
+ const ::rtl::OUString& rAddressStr,
+ const ScDocument* pDocument,
+ sal_Int32& nOffset );
+ static sal_Bool GetRangeFromString(
+ ScRange& rRange,
+ const ::rtl::OUString& rRangeStr,
+ const ScDocument* pDocument,
+ sal_Int32& nOffset );
+ static void GetRangeListFromString(
+ ScRangeList& rRangeList,
+ const ::rtl::OUString& rRangeListStr,
+ const ScDocument* pDocument );
+
+ static sal_Bool GetAreaFromString(
+ ScArea& rArea,
+ const ::rtl::OUString& rRangeStr,
+ const ScDocument* pDocument,
+ sal_Int32& nOffset );
+
+ static sal_Bool GetAddressFromString(
+ ::com::sun::star::table::CellAddress& rAddress,
+ const ::rtl::OUString& rAddressStr,
+ const ScDocument* pDocument,
+ sal_Int32& nOffset );
+ static sal_Bool GetRangeFromString(
+ ::com::sun::star::table::CellRangeAddress& rRange,
+ const ::rtl::OUString& rRangeStr,
+ const ScDocument* pDocument,
+ sal_Int32& nOffset );
+ static void GetRangeListFromString(
+ ::com::sun::star::uno::Sequence< ::com::sun::star::table::CellRangeAddress >& rRangeSeq,
+ const ::rtl::OUString& rRangeListStr,
+ const ScDocument* pDocument );
+
+// EXPORT: CellAddress / CellRange
+ static void GetStringFromAddress(
+ ::rtl::OUString& rString,
+ const ScAddress& rAddress,
+ const ScDocument* pDocument,
+ sal_Bool bAppendStr = sal_False,
+ sal_uInt16 nFormatFlags = (SCA_VALID | SCA_TAB_3D) );
+ static void GetStringFromRange(
+ ::rtl::OUString& rString,
+ const ScRange& rRange,
+ const ScDocument* pDocument,
+ sal_Bool bAppendStr = sal_False,
+ sal_uInt16 nFormatFlags = (SCA_VALID | SCA_TAB_3D) );
+ static void GetStringFromRangeList(
+ ::rtl::OUString& rString,
+ const ScRangeList* pRangeList,
+ const ScDocument* pDocument,
+ sal_uInt16 nFormatFlags = (SCA_VALID | SCA_TAB_3D) );
+
+ static void GetStringFromArea(
+ ::rtl::OUString& rString,
+ const ScArea& rArea,
+ const ScDocument* pDocument,
+ sal_Bool bAppendStr = sal_False,
+ sal_uInt16 nFormatFlags = (SCA_VALID | SCA_TAB_3D) );
+
+ static void GetStringFromAddress(
+ ::rtl::OUString& rString,
+ const ::com::sun::star::table::CellAddress& rAddress,
+ const ScDocument* pDocument,
+ sal_Bool bAppendStr = sal_False,
+ sal_uInt16 nFormatFlags = (SCA_VALID | SCA_TAB_3D) );
+ static void GetStringFromRange(
+ ::rtl::OUString& rString,
+ const ::com::sun::star::table::CellRangeAddress& rRange,
+ const ScDocument* pDocument,
+ sal_Bool bAppendStr = sal_False,
+ sal_uInt16 nFormatFlags = (SCA_VALID | SCA_TAB_3D) );
+ static void GetStringFromRangeList(
+ ::rtl::OUString& rString,
+ const ::com::sun::star::uno::Sequence< ::com::sun::star::table::CellRangeAddress >& rRangeSeq,
+ const ScDocument* pDocument,
+ sal_uInt16 nFormatFlags = (SCA_VALID | SCA_TAB_3D) );
+
+// IMPORT: GeneralFunction / ScSubTotalFunc
+ static ::com::sun::star::sheet::GeneralFunction
+ GetFunctionFromString(
+ const ::rtl::OUString& rString );
+ static ScSubTotalFunc GetSubTotalFuncFromString(
+ const ::rtl::OUString& rString );
+
+// EXPORT: GeneralFunction / ScSubTotalFunc
+ static void GetStringFromFunction(
+ ::rtl::OUString& rString,
+ const ::com::sun::star::sheet::GeneralFunction eFunction,
+ sal_Bool bAppendStr = sal_False );
+ static void GetStringFromFunction(
+ ::rtl::OUString& rString,
+ const ScSubTotalFunc eFunction,
+ sal_Bool bAppendStr = sal_False );
+
+// IMPORT: DataPilotFieldOrientation
+ static ::com::sun::star::sheet::DataPilotFieldOrientation
+ GetOrientationFromString(
+ const ::rtl::OUString& rString );
+
+// EXPORT: DataPilotFieldOrientation
+ static void GetStringFromOrientation(
+ ::rtl::OUString& rString,
+ const ::com::sun::star::sheet::DataPilotFieldOrientation eOrientation,
+ sal_Bool bAppendStr = sal_False );
+
+// IMPORT: Detective
+ static ScDetectiveObjType
+ GetDetObjTypeFromString(
+ const ::rtl::OUString& rString );
+ static sal_Bool GetDetOpTypeFromString(
+ ScDetOpType& rDetOpType,
+ const ::rtl::OUString& rString );
+
+// EXPORT: Detective
+ static void GetStringFromDetObjType(
+ ::rtl::OUString& rString,
+ const ScDetectiveObjType eObjType,
+ sal_Bool bAppendStr = sal_False );
+ static void GetStringFromDetOpType(
+ ::rtl::OUString& rString,
+ const ScDetOpType eOpType,
+ sal_Bool bAppendStr = sal_False );
+
+// IMPORT: Formulas
+ static void ParseFormula(
+ ::rtl::OUString& sFormula,
+ const sal_Bool bIsFormula = sal_True);
+// EXPORT: Core Date Time
+ static void ConvertDateTimeToString(const DateTime& aDateTime, ::rtl::OUStringBuffer& sDate);
+
+ static void ConvertCoreToAPIDateTime(const DateTime& aDateTime, ::com::sun::star::util::DateTime& rDateTime);
+
+ static void ConvertAPIToCoreDateTime(const ::com::sun::star::util::DateTime& aDateTime, DateTime& rDateTime);
+};
+
+
+} //namespace binfilter
+#endif
+
+/* vim:set shiftwidth=4 softtabstop=4 expandtab: */