tdf#130857 qt weld: Implement QtInstanceWidget::get_text_height
[LibreOffice.git] / xmloff / source / xforms / XFormsModelContext.cxx
blob387fb5517d26c8f9156c9cfd6db275d3a2adf206
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
21 #include "XFormsModelContext.hxx"
23 #include "XFormsBindContext.hxx"
24 #include "XFormsSubmissionContext.hxx"
25 #include "XFormsInstanceContext.hxx"
26 #include "SchemaContext.hxx"
27 #include "xformsapi.hxx"
29 #include <xmloff/xmlimp.hxx>
30 #include <xmloff/xmlnamespace.hxx>
31 #include <xmloff/xmltoken.hxx>
32 #include <xmloff/xmlerror.hxx>
34 #include <sal/log.hxx>
36 #include <com/sun/star/util/XUpdatable.hpp>
39 using com::sun::star::util::XUpdatable;
40 using namespace com::sun::star::uno;
41 using namespace xmloff::token;
44 XFormsModelContext::XFormsModelContext( SvXMLImport& rImport ) :
45 TokenContext( rImport ),
46 mxModel( xforms_createXFormsModel() )
50 void XFormsModelContext::HandleAttribute(const sax_fastparser::FastAttributeList::FastAttributeIter & aIter )
52 switch( aIter.getToken() & TOKEN_MASK)
54 case XML_ID:
55 mxModel->setPropertyValue( u"ID"_ustr, Any( aIter.toString() ) );
56 break;
57 case XML_SCHEMA:
58 GetImport().SetError( XMLERROR_XFORMS_NO_SCHEMA_SUPPORT );
59 break;
60 default:
61 XMLOFF_WARN_UNKNOWN("xmloff", aIter);
62 assert( false && "this should not happen" );
63 break;
67 SvXMLImportContext* XFormsModelContext::HandleChild(
68 sal_Int32 nElementToken,
69 const Reference<css::xml::sax::XFastAttributeList>& )
71 SvXMLImportContext* pContext = nullptr;
73 switch( nElementToken )
75 case XML_ELEMENT(XFORMS, XML_INSTANCE):
76 pContext = new XFormsInstanceContext( GetImport(), mxModel );
77 break;
78 case XML_ELEMENT(XFORMS, XML_BIND):
79 pContext = new XFormsBindContext( GetImport(), mxModel );
80 break;
81 case XML_ELEMENT(XFORMS, XML_SUBMISSION):
82 pContext = new XFormsSubmissionContext( GetImport(), mxModel );
83 break;
84 case XML_ELEMENT(XSD, XML_SCHEMA):
85 pContext = new SchemaContext( GetImport(), mxModel->getDataTypeRepository() );
86 break;
87 default:
88 XMLOFF_WARN_UNKNOWN_ELEMENT("xmloff", nElementToken);
89 assert( false && "Boooo!" );
90 break;
93 return pContext;
96 void XFormsModelContext::endFastElement(sal_Int32 )
98 // update before putting model into document
99 Reference<XUpdatable> xUpdate( mxModel, UNO_QUERY );
100 if( xUpdate.is() )
101 xUpdate->update();
103 GetImport().initXForms();
104 xforms_addXFormsModel( GetImport().GetModel(), mxModel );
107 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */