/* -*- 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_WRITERFILTER_SOURCE_DMAPPER_STYLESHEETTABLE_HXX #define INCLUDED_WRITERFILTER_SOURCE_DMAPPER_STYLESHEETTABLE_HXX #include #include "TblStylePrHandler.hxx" #include "DomainMapper.hxx" #include #include #include "PropertyMap.hxx" #include "FontTable.hxx" #include "LoggedResources.hxx" namespace com{ namespace sun { namespace star { namespace text{ class XTextDocument; }}}} namespace writerfilter { namespace dmapper { enum StyleType { STYLE_TYPE_UNKNOWN, STYLE_TYPE_PARA, STYLE_TYPE_CHAR, STYLE_TYPE_TABLE, STYLE_TYPE_LIST }; class StyleSheetTable; typedef tools::SvRef StyleSheetTablePtr; struct StyleSheetTable_Impl; class StyleSheetEntry : public virtual SvRefBase { std::vector m_aInteropGrabBag; public: OUString sStyleIdentifierD; // WW8 name bool bIsDefaultStyle; bool bInvalidHeight; bool bHasUPE; //universal property expansion StyleType nStyleTypeCode; //sgc OUString sBaseStyleIdentifier; OUString sNextStyleIdentifier; OUString sStyleName; PropertyMapPtr pProperties; OUString sConvertedStyleName; std::vector aLatentStyles; ///< Attributes of latentStyles std::vector aLsdExceptions; ///< List of lsdException attribute lists bool bAutoRedefine; ///< Writer calls this auto-update. void AppendInteropGrabBag(const css::beans::PropertyValue& rValue); css::beans::PropertyValue GetInteropGrabBag(); ///< Used for table styles, has a name. css::beans::PropertyValues GetInteropGrabBagSeq(); ///< Used for existing styles, just a list of properties. // Get all properties, merged with the all of the parent's properties PropertyMapPtr GetMergedInheritedProperties(const StyleSheetTablePtr& pStyleSheetTable); StyleSheetEntry(); virtual ~StyleSheetEntry() override; }; typedef tools::SvRef StyleSheetEntryPtr; class DomainMapper; class StyleSheetTable : public LoggedProperties, public LoggedTable { std::unique_ptr m_pImpl; public: StyleSheetTable(DomainMapper& rDMapper, css::uno::Reference const& xTextDocument, bool bIsNewDoc); virtual ~StyleSheetTable() override; void ApplyStyleSheets( const FontTablePtr& rFontTable ); const StyleSheetEntryPtr FindStyleSheetByISTD(const OUString& sIndex); const StyleSheetEntryPtr FindStyleSheetByConvertedStyleName(const OUString& rIndex); const StyleSheetEntryPtr FindDefaultParaStyle(); OUString ConvertStyleName( const OUString& rWWName, bool bExtendedSearch = false ); OUString getOrCreateCharStyle( PropertyValueVector_t& rCharProperties, bool bAlwaysCreate ); PropertyMapPtr const & GetDefaultParaProps(); /// Returns the default character properties. PropertyMapPtr const & GetDefaultCharProps(); const StyleSheetEntryPtr GetCurrentEntry(); private: // Properties virtual void lcl_attribute(Id Name, Value & val) override; virtual void lcl_sprm(Sprm & sprm) override; // Table virtual void lcl_entry(int pos, writerfilter::Reference::Pointer_t ref) override; void applyDefaults(bool bParaProperties); }; class TableStyleSheetEntry : public StyleSheetEntry { public: // Adds a new tblStylePr to the table style entry. This method // fixes some possible properties conflicts, like borders ones. void AddTblStylePr( TblStyleType nType, const PropertyMapPtr& pProps ); // Gets all the properties // + corresponding to the mask, // + from the parent styles // @param mask mask describing which properties to return PropertyMapPtr GetProperties( sal_Int32 nMask); TableStyleSheetEntry( StyleSheetEntry const & aEntry ); virtual ~TableStyleSheetEntry( ) override; private: typedef std::map TblStylePrs; TblStylePrs m_aStyles; PropertyMapPtr GetLocalPropertiesFromMask( sal_Int32 nMask ); }; }} #endif /* vim:set shiftwidth=4 softtabstop=4 expandtab: */