summaryrefslogtreecommitdiff
path: root/extensions
diff options
context:
space:
mode:
authorOliver Bolte <obo@openoffice.org>2004-11-16 11:14:04 +0000
committerOliver Bolte <obo@openoffice.org>2004-11-16 11:14:04 +0000
commit42471a32549e3f234ac571b49d904954095ae1a6 (patch)
tree0befef507d9f75deabc753268772304b915cc329 /extensions
parent28315c27303cab83c9a6bbc59ba871ae60b74f08 (diff)
INTEGRATION: CWS eforms2 (1.1.2); FILE ADDED
2004/07/15 09:52:50 fs 1.1.2.5: #114856# added built-in clasification of the UNO data types 2004/07/15 07:44:12 fs 1.1.2.4: #114856# some more types 2004/07/12 14:30:29 fs 1.1.2.3: #114856# 2004/04/27 14:16:24 fs 1.1.2.2: smarter behavior when switching models 2004/04/26 11:48:24 fs 1.1.2.1: helper for wrapping XSD data type components
Diffstat (limited to 'extensions')
-rw-r--r--extensions/source/propctrlr/xsddatatypes.hxx156
1 files changed, 156 insertions, 0 deletions
diff --git a/extensions/source/propctrlr/xsddatatypes.hxx b/extensions/source/propctrlr/xsddatatypes.hxx
new file mode 100644
index 000000000000..18470f849027
--- /dev/null
+++ b/extensions/source/propctrlr/xsddatatypes.hxx
@@ -0,0 +1,156 @@
+/*************************************************************************
+ *
+ * $RCSfile: xsddatatypes.hxx,v $
+ *
+ * $Revision: 1.2 $
+ *
+ * last change: $Author: obo $ $Date: 2004-11-16 12:14:04 $
+ *
+ * The Contents of this file are made available subject to the terms of
+ * either of the following licenses
+ *
+ * - GNU Lesser General Public License Version 2.1
+ * - Sun Industry Standards Source License Version 1.1
+ *
+ * Sun Microsystems Inc., October, 2000
+ *
+ * GNU Lesser General Public License Version 2.1
+ * =============================================
+ * Copyright 2000 by Sun Microsystems, Inc.
+ * 901 San Antonio Road, Palo Alto, CA 94303, USA
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1, as published by the Free Software Foundation.
+ *
+ * This library 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 for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
+ * MA 02111-1307 USA
+ *
+ *
+ * Sun Industry Standards Source License Version 1.1
+ * =================================================
+ * The contents of this file are subject to the Sun Industry Standards
+ * Source License Version 1.1 (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.openoffice.org/license.html.
+ *
+ * Software provided under this License is provided on an "AS IS" basis,
+ * WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,
+ * WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS,
+ * MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING.
+ * See the License for the specific provisions governing your rights and
+ * obligations concerning the Software.
+ *
+ * The Initial Developer of the Original Code is: Sun Microsystems, Inc.
+ *
+ * Copyright: 2000 by Sun Microsystems, Inc.
+ *
+ * All Rights Reserved.
+ *
+ * Contributor(s): _______________________________________
+ *
+ *
+ ************************************************************************/
+
+#ifndef EXTENSIONS_SOURCE_PROPCTRLR_XSDDATATYPES_HXX
+#define EXTENSIONS_SOURCE_PROPCTRLR_XSDDATATYPES_HXX
+
+/** === begin UNO includes === **/
+#ifndef _COM_SUN_STAR_UNO_REFERENCE_HXX_
+#include <com/sun/star/uno/Reference.hxx>
+#endif
+/** === end UNO includes === **/
+
+#ifndef _RTL_REF_HXX_
+#include <rtl/ref.hxx>
+#endif
+
+namespace com { namespace sun { namespace star {
+ namespace xsd {
+ class XDataType;
+ }
+ namespace beans {
+ class XPropertySet;
+ class XPropertySetInfo;
+ }
+} } }
+
+//........................................................................
+namespace pcr
+{
+//........................................................................
+
+ //====================================================================
+ //= XSDDataType
+ //====================================================================
+ class XSDDataType : public ::rtl::IReference
+ {
+ private:
+ ::com::sun::star::uno::Reference< ::com::sun::star::xsd::XDataType >
+ m_xDataType;
+ ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySetInfo >
+ m_xFacetInfo;
+
+ protected:
+ oslInterlockedCount m_refCount;
+
+ protected:
+ inline ::com::sun::star::xsd::XDataType* getDataTypeInterface() const { return m_xDataType.get(); }
+
+ public:
+ XSDDataType(
+ const ::com::sun::star::uno::Reference< ::com::sun::star::xsd::XDataType >& _rxDataType
+ );
+
+ // IReference
+ virtual oslInterlockedCount SAL_CALL acquire();
+ virtual oslInterlockedCount SAL_CALL release();
+
+ /// retrieves the underlying UNO component
+ inline const ::com::sun::star::uno::Reference< ::com::sun::star::xsd::XDataType >&
+ getUnoDataType() const { return m_xDataType; }
+
+ /// classifies the data typ
+ sal_Int16 classify() const SAL_THROW(());
+
+ // attribute access
+ ::rtl::OUString getName() const SAL_THROW(());
+ bool isBasicType() const SAL_THROW(());
+
+ /// determines whether a given facet exists at the type
+ bool hasFacet( const ::rtl::OUString& _rFacetName ) const SAL_THROW(());
+ /// determines the UNO type of a facet
+ ::com::sun::star::uno::Type
+ getFacetType( const ::rtl::OUString& _rFacetName ) const SAL_THROW(());
+ /// retrieves a facet value
+ ::com::sun::star::uno::Any
+ getFacet( const ::rtl::OUString& _rFacetName ) SAL_THROW(());
+ /// sets a facet value
+ void setFacet( const ::rtl::OUString& _rFacetName, const ::com::sun::star::uno::Any& _rFacetValue ) SAL_THROW(());
+
+ /** copies as much facets (values, respectively) from a give data type instance
+ */
+ void copyFacetsFrom( const ::rtl::Reference< XSDDataType >& _pSourceType );
+
+ protected:
+ ~XSDDataType();
+
+ private:
+ XSDDataType(); // never implemented
+ XSDDataType( const XSDDataType& ); // never implemented
+ XSDDataType& operator=( const XSDDataType& ); // never implemented
+ };
+
+//........................................................................
+} // namespace pcr
+//........................................................................
+
+#endif // EXTENSIONS_SOURCE_PROPCTRLR_XSDDATATYPES_HXX
+