summaryrefslogtreecommitdiff
path: root/sc/source/filter/xml/xmlcvali.hxx
diff options
context:
space:
mode:
authorSascha Ballach <sab@openoffice.org>2000-10-12 07:18:09 +0000
committerSascha Ballach <sab@openoffice.org>2000-10-12 07:18:09 +0000
commit413ef831ee81f0070113782debc27126137b383e (patch)
treee47392c592997796d2abde9b38dc5ead1a4722db /sc/source/filter/xml/xmlcvali.hxx
parent94f8b4d77f103aa433d4549b5d0fc1ef331c91da (diff)
Import Content Validation completed
Diffstat (limited to 'sc/source/filter/xml/xmlcvali.hxx')
-rw-r--r--sc/source/filter/xml/xmlcvali.hxx19
1 files changed, 17 insertions, 2 deletions
diff --git a/sc/source/filter/xml/xmlcvali.hxx b/sc/source/filter/xml/xmlcvali.hxx
index a71a0f9e358d..1467b28e0f71 100644
--- a/sc/source/filter/xml/xmlcvali.hxx
+++ b/sc/source/filter/xml/xmlcvali.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: xmlcvali.hxx,v $
*
- * $Revision: 1.1 $
+ * $Revision: 1.2 $
*
- * last change: $Author: sab $ $Date: 2000-10-12 06:35:57 $
+ * last change: $Author: sab $ $Date: 2000-10-12 08:18:09 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -68,6 +68,15 @@
#ifndef _XMLOFF_XMLIMP_HXX
#include <xmloff/xmlimp.hxx>
#endif
+#ifndef _COM_SUN_STAR_SHEET_VALIDATIONALERTSTYLE_HPP_
+#include <com/sun/star/sheet/ValidationAlertStyle.hpp>
+#endif
+#ifndef _COM_SUN_STAR_SHEET_VALIDATIONTYPE_HPP_
+#include <com/sun/star/sheet/ValidationType.hpp>
+#endif
+#ifndef _COM_SUN_STAR_SHEET_CONDITIONOPERATOR_HPP_
+#include <com/sun/star/sheet/ConditionOperator.hpp>
+#endif
class ScXMLImport;
@@ -110,6 +119,12 @@ class ScXMLContentValidationContext : public SvXMLImportContext
const ScXMLImport& GetScImport() const { return (const ScXMLImport&)GetImport(); }
ScXMLImport& GetScImport() { return (ScXMLImport&)GetImport(); }
+ void GetAlertStyle(const rtl::OUString& sMessageType, com::sun::star::sheet::ValidationAlertStyle& aAlertStyle);
+ void SetFormulas(const rtl::OUString& sFormulas, rtl::OUString& sFormula1, rtl::OUString& sFormula2) const;
+ void GetCondition(const rtl::OUString& sCondition, rtl::OUString& sFormula1, rtl::OUString& sFormula2,
+ com::sun::star::sheet::ValidationType& aValidationType,
+ com::sun::star::sheet::ConditionOperator& aOperator);
+
public:
ScXMLContentValidationContext( ScXMLImport& rImport, USHORT nPrfx,