/* -*- 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_XMLOFF_XMLEVENTSIMPORTCONTEXT_HXX #define INCLUDED_XMLOFF_XMLEVENTSIMPORTCONTEXT_HXX #include #include #include #include #include #include #include #include namespace com { namespace sun { namespace star { namespace xml { namespace sax { class XAttributeList; } } namespace beans { struct PropertyValue; } namespace container { class XNameReplace; } namespace document { class XEventsSupplier; } } } } typedef ::std::pair< OUString, css::uno::Sequence > EventNameValuesPair; typedef ::std::vector< EventNameValuesPair > EventsVector; /** * Import element. * * The import context usually sets the events immediately at the event * XNameReplace. If none was given on construction, it operates in * delayed mode: All events are collected and may then be set * with the setEvents() method. */ class XMLOFF_DLLPUBLIC XMLEventsImportContext : public SvXMLImportContext { // the event XNameReplace; may be empty css::uno::Reference xEvents; protected: // if no XNameReplace is given, use this vector to collect events EventsVector aCollectEvents; public: XMLEventsImportContext( SvXMLImport& rImport, sal_uInt16 nPrfx, const OUString& rLocalName); XMLEventsImportContext( SvXMLImport& rImport, sal_uInt16 nPrfx, const OUString& rLocalName, const css::uno::Reference & xEventsSupplier); XMLEventsImportContext( SvXMLImport& rImport, sal_uInt16 nPrfx, const OUString& rLocalName, const css::uno::Reference & xNameRepl); virtual ~XMLEventsImportContext() override; void AddEventValues( const OUString& rEventName, const css::uno::Sequence & rValues); /// if the import operates in delayed mode, you can use this method /// to set all events that have been read on the XEventsSupplier void SetEvents( const css::uno::Reference & xEventsSupplier); /// if the import operates in delayed mode, you can use this method /// to set all events that have been read on the XNameReplace void SetEvents( const css::uno::Reference & xNameRepl); /// if the import operates in delayed mode, you can use this method /// to obtain the value sequence for a specific event void GetEventSequence( const OUString& rName, css::uno::Sequence & rSequence ); protected: virtual void StartElement( const css::uno::Reference & xAttrList) override; virtual void EndElement() override; virtual SvXMLImportContextRef CreateChildContext( sal_uInt16 nPrefix, const OUString& rLocalName, const css::uno::Reference & xAttrList ) override; }; #endif /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ distro/collabora/cp-6.0-29'>distro/collabora/cp-6.0-29 LibreOffice 核心代码仓库文档基金会
summaryrefslogtreecommitdiff
AgeCommit message (Expand)Author
2018-10-08tdf#42949 Fix IWYU warnings in include/comphelper/[m-z]*Gabor Kelemen
2018-07-20loplugin:unusedfields - look for fields that can be const, in comphelperNoel Grandin
2017-03-29sw: plain-text ASCII export: filter out all CH_TXT_ATR_*Michael Stahl
2016-08-25new loplugin: countusersofdefaultparamsNoel Grandin
2016-07-04remove comphelper::string::removeNoel Grandin
2016-06-18add comphelper::string::splitMarkus Mohrhard
2016-05-01Fix typosAndrea Gelmini
2016-02-08loplugin:unusedmethodsNoel Grandin
2015-10-27loplugin:unusedmethodsNoel Grandin
2015-10-20com::sun::star->css in include/comphelperNoel Grandin
2015-10-08comphelper: add string::join()Miklos Vajna
2015-06-25loplugin:stringconstant: Flag more inefficienciesStephan Bergmann
2015-06-24Get rid of comphelper::string::is*Ascii functionsStephan Bergmann
2015-01-02Remove unnecessary comphelper::string::getTokenStephan Bergmann
2014-11-11Add a function to compare version number stringsTor Lillqvist
2014-06-05comphelper: remove SAL_THROW macroNoel Grandin
2014-05-30New loplugin:inlinevisible to flag inline functions marked DLLEXPORTStephan Bergmann
2014-05-30Revert "Add function to catenate n copies of a string"Tor Lillqvist
2014-05-29Add function to catenate n copies of a stringTor Lillqvist
2014-01-28bool improvementsStephan Bergmann
2013-11-19need a String::EraseAllChars-alike for OUStringBufferCaolán McNamara
2013-11-09fdo#65108 inter-module includes <>Norbert Thiebaud
2013-10-09Related: fdo#38838 remove UniString::EqualsAsciiCaolán McNamara
2013-05-15Spelling "separate" (etc) correctly is hardTor Lillqvist
2013-04-26comphelper: ConstAsciiString is now unusedMiklos Vajna
2013-04-23execute move of global headersBjoern Michaelsen