summaryrefslogtreecommitdiff
path: root/binfilter/bf_sc/source/filter/xml/XMLChangeTrackingExportHelper.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'binfilter/bf_sc/source/filter/xml/XMLChangeTrackingExportHelper.hxx')
-rw-r--r--binfilter/bf_sc/source/filter/xml/XMLChangeTrackingExportHelper.hxx107
1 files changed, 107 insertions, 0 deletions
diff --git a/binfilter/bf_sc/source/filter/xml/XMLChangeTrackingExportHelper.hxx b/binfilter/bf_sc/source/filter/xml/XMLChangeTrackingExportHelper.hxx
new file mode 100644
index 000000000000..e43edcd2a2bf
--- /dev/null
+++ b/binfilter/bf_sc/source/filter/xml/XMLChangeTrackingExportHelper.hxx
@@ -0,0 +1,107 @@
+/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
+/*************************************************************************
+ *
+ * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
+ *
+ * Copyright 2000, 2010 Oracle and/or its affiliates.
+ *
+ * OpenOffice.org - a multi-platform office productivity suite
+ *
+ * This file is part of OpenOffice.org.
+ *
+ * OpenOffice.org is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Lesser General Public License version 3
+ * only, as published by the Free Software Foundation.
+ *
+ * OpenOffice.org is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU Lesser General Public License version 3 for more details
+ * (a copy is included in the LICENSE file that accompanied this code).
+ *
+ * You should have received a copy of the GNU Lesser General Public License
+ * version 3 along with OpenOffice.org. If not, see
+ * <http://www.openoffice.org/license.html>
+ * for a copy of the LGPLv3 License.
+ *
+ ************************************************************************/
+
+#ifndef _SC_XMLCHANGETRACKINGEXPORTHELPER_HXX
+#define _SC_XMLCHANGETRACKINGEXPORTHELPER_HXX
+
+#include <bf_xmloff/xmltoken.hxx>
+#ifndef __SGI_STL_LIST
+#include <list>
+#endif
+#include <com/sun/star/text/XText.hpp>
+#include <rtl/ustrbuf.hxx>
+
+class DateTime;
+class String;
+
+namespace binfilter {
+
+class ScChangeAction;
+class ScChangeTrack;
+class ScXMLExport;
+class ScBaseCell;
+class ScChangeActionDel;
+class ScBigRange;
+class ScEditEngineTextObj;
+class ScChangeActionTable;
+
+typedef std::list<ScChangeActionDel*> ScMyDeletionsList;
+
+class ScChangeTrackingExportHelper
+{
+ ScXMLExport& rExport;
+
+ ScChangeTrack* pChangeTrack;
+ ScEditEngineTextObj* pEditTextObj;
+ ScChangeActionTable* pDependings;
+ ::rtl::OUString sChangeIDPrefix;
+ ::com::sun::star::uno::Reference< ::com::sun::star::text::XText> xText;
+
+ ::rtl::OUString GetChangeID(const sal_uInt32 nActionNumber);
+ void GetAcceptanceState(const ScChangeAction* pAction);
+
+ void WriteBigRange(const ScBigRange& rBigRange, xmloff::token::XMLTokenEnum aName);
+ void WriteChangeInfo(const ScChangeAction* pAction);
+ void WriteGenerated(const ScChangeAction* pDependAction);
+ void WriteDeleted(const ScChangeAction* pDependAction);
+ void WriteDepending(const ScChangeAction* pDependAction);
+ void WriteDependings(ScChangeAction* pAction);
+
+ void WriteEmptyCell();
+ void SetValueAttributes(const double& fValue, const String& sValue);
+ void WriteValueCell(const ScBaseCell* pCell, const String& sValue);
+ void WriteStringCell(const ScBaseCell* pCell);
+ void WriteEditCell(const ScBaseCell* pCell);
+ void WriteFormulaCell(const ScBaseCell* pCell, const String& sValue);
+ void WriteCell(const ScBaseCell* pCell, const String& sValue);
+
+ void WriteContentChange(ScChangeAction* pAction);
+ void AddInsertionAttributes(const ScChangeAction* pAction);
+ void WriteInsertion(ScChangeAction* pAction);
+ void AddDeletionAttributes(const ScChangeActionDel* pAction, const ScChangeActionDel* pLastAction);
+ void WriteDeletionCells(ScChangeActionDel* pAction);
+ void WriteCutOffs(const ScChangeActionDel* pAction);
+ void WriteDeletion(ScChangeAction* pAction);
+ void WriteMovement(ScChangeAction* pAction);
+ void WriteRejection(ScChangeAction* pAction);
+
+ void CollectCellAutoStyles(const ScBaseCell* pBaseCell);
+ void CollectActionAutoStyles(ScChangeAction* pAction);
+ void WorkWithChangeAction(ScChangeAction* pAction);
+public:
+ ScChangeTrackingExportHelper(ScXMLExport& rExport);
+ ~ScChangeTrackingExportHelper();
+
+ void CollectAutoStyles();
+ void CollectAndWriteChanges();
+};
+
+} //namespace binfilter
+#endif
+
+/* vim:set shiftwidth=4 softtabstop=4 expandtab: */