/* -*- 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 . */ #ifndef INCLUDED_STARMATH_SOURCE_MATHMLIMPORT_HXX #define INCLUDED_STARMATH_SOURCE_MATHMLIMPORT_HXX #include #include #include #include #include class SfxMedium; namespace com { namespace sun { namespace star { namespace io { class XIutputStream; } namespace beans { class XPropertySet; } } } } //////////////////////////////////////////////////////////// class SmXMLImportWrapper { com::sun::star::uno::Reference xModel; public: SmXMLImportWrapper(com::sun::star::uno::Reference &rRef) : xModel(rRef) {} sal_uLong Import(SfxMedium &rMedium); sal_uLong ReadThroughComponent( ::com::sun::star::uno::Reference< ::com::sun::star::io::XInputStream > xInputStream, ::com::sun::star::uno::Reference< ::com::sun::star::lang::XComponent > xModelComponent, ::com::sun::star::uno::Reference< ::com::sun::star::uno::XComponentContext > & rxContext, ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySet > & rPropSet, const sal_Char* pFilterName, sal_Bool bEncrypted ); sal_uLong ReadThroughComponent( const ::com::sun::star::uno::Reference< ::com::sun::star::embed::XStorage >& xStorage, ::com::sun::star::uno::Reference< ::com::sun::star::lang::XComponent > xModelComponent, const sal_Char* pStreamName, const sal_Char* pCompatibilityStreamName, ::com::sun::star::uno::Reference< ::com::sun::star::uno::XComponentContext > & rxContext, ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySet > & rPropSet, const sal_Char* pFilterName ); }; //////////////////////////////////////////////////////////// class SmXMLImport : public SvXMLImport { SvXMLTokenMap *pPresLayoutElemTokenMap; SvXMLTokenMap *pPresLayoutAttrTokenMap; SvXMLTokenMap *pFencedAttrTokenMap; SvXMLTokenMap *pOperatorAttrTokenMap; SvXMLTokenMap *pAnnotationAttrTokenMap; SvXMLTokenMap *pPresElemTokenMap; SvXMLTokenMap *pPresScriptEmptyElemTokenMap; SvXMLTokenMap *pPresTableElemTokenMap; SvXMLTokenMap *pColorTokenMap; SmNodeStack aNodeStack; sal_Bool bSuccess; OUString aText; public: SmXMLImport( const ::com::sun::star::uno::Reference< ::com::sun::star::uno::XComponentContext > xContext, sal_uInt16 nImportFlags=IMPORT_ALL); virtual ~SmXMLImport() throw (); // XServiceInfo (override parent method) OUString SAL_CALL getImplementationName() throw( ::com::sun::star::uno::RuntimeException ); // XUnoTunnel sal_Int64 SAL_CALL getSomething( const ::com::sun::star::uno::Sequence< sal_Int8 >& rId ) throw(::com::sun::star::uno::RuntimeException); static const ::com::sun::star::uno::Sequence< sal_Int8 > & getUnoTunnelId() throw(); void SAL_CALL endDocument(void) throw( ::com::sun::star::xml::sax::SAXException, ::com::sun::star::uno::RuntimeException ); SvXMLImportContext *CreateContext(sal_uInt16 nPrefix, const OUString &rLocalName, const com::sun::star::uno::Reference < com::sun::star::xml::sax::XAttributeList> &xAttrList); SvXMLImportContext *CreateMathContext(sal_uInt16 nPrefix, const OUString &rLocalName, const com::sun::star::uno::Reference < com::sun::star::xml::sax::XAttributeList> &xAttrList); SvXMLImportContext *CreateRowContext(sal_uInt16 nPrefix, const OUString &rLocalName, const com::sun::star::uno::Reference < com::sun::star::xml::sax::XAttributeList> &xAttrList); SvXMLImportContext *CreateEncloseContext(sal_uInt16 nPrefix, const OUString &rLocalName, const com::sun::star::uno::Reference < com::sun::star::xml::sax::XAttributeList> &xAttrList); SvXMLImportContext *CreateFracContext(sal_uInt16 nPrefix, const OUString &rLocalName, const com::sun::star::uno::Reference < com::sun::star::xml::sax::XAttributeList> &xAttrList); SvXMLImportContext *CreateNumberContext(sal_uInt16 nPrefix, const OUString &rLocalName, const com::sun::star::uno::Reference < com::sun::star::xml::sax::XAttributeList> &xAttrList); SvXMLImportContext *CreateTextContext(sal_uInt16 nPrefix, const OUString &rLocalName, const com::sun::star::uno::Reference < com::sun::star::xml::sax::XAttributeList> &xAttrList); SvXMLImportContext *CreateAnnotationContext(sal_uInt16 nPrefix, const OUString &rLocalName, const com::sun::star::uno::Reference < com::sun::star::xml::sax::XAttributeList> &xAttrList); SvXMLImportContext *CreateStringContext(sal_uInt16 nPrefix, const OUString &rLocalName, const com::sun::star::uno::Reference < com::sun::star::xml::sax::XAttributeList> &xAttrList); SvXMLImportContext *CreateIdentifierContext(sal_uInt16 nPrefix, const OUString &rLocalName, const com::sun::star::uno::Reference < com::sun::star::xml::sax::XAttributeList> &xAttrList); SvXMLImportContext *CreateOperatorContext(sal_uInt16 nPrefix, const OUString &rLocalName, const com::sun::star::uno::Reference < com::sun::star::xml::sax::XAttributeList> &xAttrList); SvXMLImportContext *CreateSpaceContext(sal_uInt16 nPrefix, const OUString &rLocalName, const com::sun::star::uno::Reference < com::sun::star::xml::sax::XAttributeList> &xAttrList); SvXMLImportContext *CreateSqrtContext(sal_uInt16 nPrefix, const OUString &rLocalName, const com::sun::star::uno::Reference < com::sun::star::xml::sax::XAttributeList> &xAttrList); SvXMLImportContext *CreateRootContext(sal_uInt16 nPrefix, const OUString &rLocalName, const com::sun::star::uno::Reference < com::sun::star::xml::sax::XAttributeList> &xAttrList); SvXMLImportContext *CreateStyleContext(sal_uInt16 nPrefix, const OUString &rLocalName, const com::sun::star::uno::Reference < com::sun::star::xml::sax::XAttributeList> &xAttrList); SvXMLImportContext *CreatePaddedContext(sal_uInt16 nPrefix, const OUString &rLocalName, const com::sun::star::uno::Reference < com::sun::star::xml::sax::XAttributeList> &xAttrList); SvXMLImportContext *CreatePhantomContext(sal_uInt16 nPrefix, const OUString &rLocalName, const com::sun::star::uno::Reference < com::sun::star::xml::sax::XAttributeList> &xAttrList); SvXMLImportContext *CreateFencedContext(sal_uInt16 nPrefix, const OUString &rLocalName, const com::sun::star::uno::Reference < com::sun::star::xml::sax::XAttributeList> &xAttrList); SvXMLImportContext *CreateErrorContext(sal_uInt16 nPrefix, const OUString &rLocalName, const com::sun::star::uno::Reference < com::sun::star::xml::sax::XAttributeList> &xAttrList); SvXMLImportContext *CreateSubContext(sal_uInt16 nPrefix, const OUString &rLocalName, const com::sun::star::uno::Reference < com::sun::star::xml::sax::XAttributeList> &xAttrList); SvXMLImportContext *CreateSupContext(sal_uInt16 nPrefix, const OUString &rLocalName, const com::sun::star::uno::Reference < com::sun::star::xml::sax::XAttributeList> &xAttrList); SvXMLImportContext *CreateSubSupContext(sal_uInt16 nPrefix, const OUString &rLocalName, const com::sun::star::uno::Reference < com::sun::star::xml::sax::XAttributeList> &xAttrList); SvXMLImportContext *CreateUnderContext(sal_uInt16 nPrefix, const OUString &rLocalName, const com::sun::star::uno::Reference < com::sun::star::xml::sax::XAttributeList> &xAttrList); SvXMLImportContext *CreateOverContext(sal_uInt16 nPrefix, const OUString &rLocalName, const com::sun::star::uno::Reference < com::sun::star::xml::sax::XAttributeList> &xAttrList); SvXMLImportContext *CreateUnderOverContext(sal_uInt16 nPrefix, const OUString &rLocalName, const com::sun::star::uno::Reference < com::sun::star::xml::sax::XAttributeList> &xAttrList); SvXMLImportContext *CreateMultiScriptsContext(sal_uInt16 nPrefix, const OUString &rLocalName, const com::sun::star::uno::Reference < com::sun::star::xml::sax::XAttributeList> &xAttrList); SvXMLImportContext *CreateNoneContext(sal_uInt16 nPrefix, const OUString &rLocalName, const com::sun::star::uno::Reference < com::sun::star::xml::sax::XAttributeList> &xAttrList); SvXMLImportContext *CreatePrescriptsContext(sal_uInt16 nPrefix, const OUString &rLocalName, const com::sun::star::uno::Reference < com::sun::star::xml::sax::XAttributeList> &xAttrList); SvXMLImportContext *CreateTableContext(sal_uInt16 nPrefix, const OUString &rLocalName, const com::sun::star::uno::Reference < com::sun::star::xml::sax::XAttributeList> &xAttrList); SvXMLImportContext *CreateTableRowContext(sal_uInt16 nPrefix, const OUString &rLocalName, const com::sun::star::uno::Reference < com::sun::star::xml::sax::XAttributeList> &xAttrList); SvXMLImportContext *CreateTableCellContext(sal_uInt16 nPrefix, const OUString &rLocalName, const com::sun::star::uno::Reference < com::sun::star::xml::sax::XAttributeList> &xAttrList); SvXMLImportContext *CreateAlignGroupContext(sal_uInt16 nPrefix, const OUString &rLocalName, const com::sun::star::uno::Reference < com::sun::star::xml::sax::XAttributeList> &xAttrList); SvXMLImportContext *CreateActionContext(sal_uInt16 nPrefix, const OUString &rLocalName, const com::sun::star::uno::Reference < com::sun::star::xml::sax::XAttributeList> &xAttrList); const SvXMLTokenMap &GetPresLayoutElemTokenMap(); const SvXMLTokenMap &GetPresLayoutAttrTokenMap(); const SvXMLTokenMap &GetFencedAttrTokenMap(); const SvXMLTokenMap &GetOperatorAttrTokenMap(); const SvXMLTokenMap &GetAnnotationAttrTokenMap(); const SvXMLTokenMap &GetPresElemTokenMap(); const SvXMLTokenMap &GetPresScriptEmptyElemTokenMap(); const SvXMLTokenMap &GetPresTableElemTokenMap(); const SvXMLTokenMap &GetColorTokenMap(); SmNodeStack & GetNodeStack() { return aNodeStack; } SmNode *GetTree() { if (aNodeStack.empty()) return 0; SmNode* result = aNodeStack.top(); aNodeStack.pop(); return result; } sal_Bool GetSuccess() { return bSuccess; } SAL_WARN_UNUSED_RESULT OUString GetText() { return aText; } void SetText(const OUString &rStr) { aText = rStr; } virtual void SetViewSettings(const com::sun::star::uno::Sequence& aViewProps); virtual void SetConfigurationSettings(const com::sun::star::uno::Sequence& aViewProps); }; //////////////////////////////////////////////////////////// enum SmXMLMathElemTokenMap { XML_TOK_MATH }; enum SmXMLPresLayoutElemTokenMap { XML_TOK_SEMANTICS, XML_TOK_MSTYLE, XML_TOK_MERROR, XML_TOK_MPHANTOM, XML_TOK_MROW, XML_TOK_MENCLOSE, XML_TOK_MFRAC, XML_TOK_MSQRT, XML_TOK_MROOT, XML_TOK_MSUB, XML_TOK_MSUP, XML_TOK_MSUBSUP, XML_TOK_MMULTISCRIPTS, XML_TOK_MUNDER, XML_TOK_MOVER, XML_TOK_MUNDEROVER, XML_TOK_MTABLE, XML_TOK_MACTION, XML_TOK_MFENCED, XML_TOK_MPADDED }; enum SmXMLPresLayoutAttrTokenMap { XML_TOK_FONTWEIGHT, XML_TOK_FONTSTYLE, XML_TOK_FONTSIZE, XML_TOK_FONTFAMILY, XML_TOK_COLOR }; enum SmXMLFencedAttrTokenMap { XML_TOK_OPEN, XML_TOK_CLOSE }; enum SmXMLPresTableElemTokenMap { XML_TOK_MTR, XML_TOK_MTD }; enum SmXMLPresElemTokenMap { XML_TOK_ANNOTATION, XML_TOK_MI, XML_TOK_MN, XML_TOK_MO, XML_TOK_MTEXT, XML_TOK_MSPACE, XML_TOK_MS, XML_TOK_MALIGNGROUP }; enum SmXMLPresScriptEmptyElemTokenMap { XML_TOK_MPRESCRIPTS, XML_TOK_NONE }; enum SmXMLOperatorAttrTokenMap { XML_TOK_STRETCHY }; enum SmXMLAnnotationAttrTokenMap { XML_TOK_ENCODING }; //////////////////////////////////////////////////////////// #endif /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ ib_contract3753 LibreOffice 核心代码仓库文档基金会
summaryrefslogtreecommitdiff
AgeCommit message (Expand)Author
2021-04-12Fix previous typo-in-comment fixStephan Bergmann
2021-04-11we where -> we wereNoel Grandin
2020-11-30tdf#48413 handle wildcards on WindowsDeb Barkley-Yeung
2020-09-13tdf#124176 Use #pragma once in desktopGeorge Bateman
2020-07-13desktop: separate executable shortcut for safe-modeVasily Melenchuk
2020-05-06Move all public Java classes to libreoffice.jarSamuel Mehrbrodt
2020-02-04tdf#117331 Merge jurt and unoil into ridlSamuel Mehrbrodt
2020-01-23Make unopkg.com proper launcher for unopkg.bin on WindowsMike Kaganski
2019-11-26loplugin:consttobool (clang-cl)Stephan Bergmann
2019-11-19loplugin:fakebool (clang-cl)Stephan Bergmann
2019-10-01loplugin:nullptr (clang-cl)Stephan Bergmann
2019-09-17WIN make sure bootstrap.ini is openend read-onlyThorsten Behrens
2019-09-13WIN allow setting a memory limit for soffice.binJan-Marek Glogowski
2019-08-31Unify executables to take version resource from default.rcMike Kaganski
2019-01-30-Werror,-Wlogical-op-parentheses (clang-cl)Stephan Bergmann
2019-01-21o3tl::make_unique -> std::make_unique in dbaccess...frameworkGabor Kelemen
2018-11-21tdf#112536 related: make soffice.bin a proper console application on WinMike Kaganski
2018-10-27possible fix for issue 120928 - quickstart --killtray throws exceptionbrinzing
2018-10-22tdf#120249: fix escaping to handle quotes and multiple trailing backslshesMike Kaganski
2018-10-21tdf#120703 (PVS): handle failed (re)allocationsMike Kaganski
2018-10-01tdf#120249: escape trailing backslash in argument passed to soffice.binMike Kaganski
2018-09-24loplugin:external (clang-cl)Stephan Bergmann
2018-02-01desktop: MSVC: pragma warning: make more specific, remove obsoleteMike Kaganski
2018-01-23More loplugin:cstylecast on WindowsStephan Bergmann
2017-11-04Make Windows error reporting more robustMike Kaganski
2017-10-20drmemory: fix small leakCaolán McNamara
2017-09-22Windows: avoid dependence on UNICODE define; prefer W functionsMike Kaganski
2017-09-16Use more WIN32_LEAN_AND_MEANMike Kaganski
2017-09-15loader: don't use 8-bit string functionsMike Kaganski
2017-09-15applauncher: don't use 8-bit string functionsMike Kaganski
2017-09-01tdf#109241 desktop: Win32: prepend "program" dir to $PATHMichael Stahl