/* -*- 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 .
*/
using com::sun::star::uno::Reference; using com::sun::star::uno::Sequence; using com::sun::star::uno::UNO_QUERY; using com::sun::star::uno::UNO_QUERY_THROW; using com::sun::star::beans::XPropertySet; using com::sun::star::container::XNameAccess; using com::sun::star::xforms::XFormsSupplier; using com::sun::star::xforms::XDataTypeRepository; using com::sun::star::xforms::Model; using com::sun::star::xforms::XModel2; using com::sun::star::container::XNameContainer; using com::sun::star::uno::Any; using com::sun::star::uno::Exception;
static Reference<XPropertySet> lcl_findXFormsBindingOrSubmission(
Reference<frame::XModel> const & xDocument, const OUString& rBindingID, bool bBinding )
{ // find binding by iterating over all models, and look for the // given binding ID
sal_uInt16 xforms_getTypeClass( const Reference<XDataTypeRepository>& xRepository, const SvXMLNamespaceMap& rNamespaceMap, const OUString& rXMLName )
{ // translate name into token for local name
OUString sLocalName;
sal_uInt16 nPrefix = rNamespaceMap.GetKeyByAttrValueQName(rXMLName, &sLocalName); staticconst SvXMLTokenMap aMap( aTypes );
sal_uInt16 nToken = aMap.Get( nPrefix, sLocalName );
sal_uInt16 nTypeClass = css::xsd::DataTypeClass::STRING; if( nToken != XML_TOK_UNKNOWN )
{ // we found an XSD name: then get the proper API name for it
SAL_WARN_IF( !xRepository.is(), "xmloff", "can't find type without repository"); switch( nToken )
{ case XML_STRING:
nTypeClass = css::xsd::DataTypeClass::STRING; break; case XML_ANYURI:
nTypeClass = css::xsd::DataTypeClass::anyURI; break; case XML_DECIMAL:
nTypeClass = css::xsd::DataTypeClass::DECIMAL; break; case XML_DOUBLE:
nTypeClass = css::xsd::DataTypeClass::DOUBLE; break; case XML_FLOAT:
nTypeClass = css::xsd::DataTypeClass::FLOAT; break; case XML_BOOLEAN:
nTypeClass = css::xsd::DataTypeClass::BOOLEAN; break; case XML_DATETIME_XSD:
nTypeClass = css::xsd::DataTypeClass::DATETIME; break; case XML_DATE:
nTypeClass = css::xsd::DataTypeClass::DATE; break; case XML_TIME:
nTypeClass = css::xsd::DataTypeClass::TIME; break; case XML_YEAR:
nTypeClass = css::xsd::DataTypeClass::gYear; break; case XML_DAY:
nTypeClass = css::xsd::DataTypeClass::gDay; break; case XML_MONTH:
nTypeClass = css::xsd::DataTypeClass::gMonth; break;
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung ist noch experimentell.