/* -*- 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 . */ #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include using namespace com::sun::star; static const SvxItemPropertySet* ImplGetSvxTextPortionPropertySet() { static const SfxItemPropertyMapEntry aSvxTextPortionPropertyMap[] = { SVX_UNOEDIT_CHAR_PROPERTIES, SVX_UNOEDIT_FONT_PROPERTIES, SVX_UNOEDIT_OUTLINER_PROPERTIES, SVX_UNOEDIT_PARA_PROPERTIES, {UNO_NAME_PARA_STYLE_NAME, WID_PARASTYLENAME, cppu::UnoType::get(), beans::PropertyAttribute::MAYBEVOID, 0 }, {u"TextField"_ustr, EE_FEATURE_FIELD, cppu::UnoType::get(), beans::PropertyAttribute::READONLY, 0 }, {u"TextPortionType"_ustr, WID_PORTIONTYPE, ::cppu::UnoType::get(), beans::PropertyAttribute::READONLY, 0 }, {u"TextUserDefinedAttributes"_ustr, EE_CHAR_XMLATTRIBS, cppu::UnoType::get(), 0, 0}, {u"ParaUserDefinedAttributes"_ustr, EE_PARA_XMLATTRIBS, cppu::UnoType::get(), 0, 0}, }; static SvxItemPropertySet aSvxTextPortionPropertySet( aSvxTextPortionPropertyMap, EditEngine::GetGlobalItemPool() ); return &aSvxTextPortionPropertySet; } SwTextAPIObject::SwTextAPIObject( std::unique_ptr p ) : SvxUnoText( p.get(), ImplGetSvxTextPortionPropertySet(), uno::Reference < text::XText >() ) , m_pSource(std::move(p)) { } SwTextAPIObject::~SwTextAPIObject() noexcept { m_pSource->Dispose(); m_pSource.reset(); } struct SwTextAPIEditSource_Impl { // needed for "internal" refcounting SfxItemPool* mpPool; SwDoc* mpDoc; std::unique_ptr mpOutliner; std::unique_ptr mpTextForwarder; sal_Int32 mnRef; }; namespace { class SwTextAPIForwarder : public SvxOutlinerForwarder { public: using SvxOutlinerForwarder::SvxOutlinerForwarder; OUString GetStyleSheet(sal_Int32 nPara) const override { return SwStyleNameMapper::GetProgName(SvxOutlinerForwarder::GetStyleSheet(nPara), SwGetPoolIdFromName::TxtColl); } void SetStyleSheet(sal_Int32 nPara, const OUString& rStyleName) override { SvxOutlinerForwarder::SetStyleSheet(nPara, SwStyleNameMapper::GetUIName(rStyleName, SwGetPoolIdFromName::TxtColl)); } }; } SwTextAPIEditSource::SwTextAPIEditSource( const SwTextAPIEditSource& rSource ) : SvxEditSource( *this ) { // shallow copy; uses internal refcounting m_pImpl = rSource.m_pImpl; m_pImpl->mnRef++; } std::unique_ptr SwTextAPIEditSource::Clone() const { return std::unique_ptr(new SwTextAPIEditSource( *this )); } void SwTextAPIEditSource::UpdateData() { // data is kept in outliner all the time } SwTextAPIEditSource::SwTextAPIEditSource(SwDoc* pDoc) : m_pImpl(new SwTextAPIEditSource_Impl) { m_pImpl->mpPool = &pDoc->GetDocShell()->GetPool(); m_pImpl->mpDoc = pDoc; m_pImpl->mnRef = 1; } SwTextAPIEditSource::~SwTextAPIEditSource() { if (!--m_pImpl->mnRef) delete m_pImpl; } void SwTextAPIEditSource::Dispose() { m_pImpl->mpPool=nullptr; m_pImpl->mpDoc=nullptr; m_pImpl->mpTextForwarder.reset(); m_pImpl->mpOutliner.reset(); } void SwTextAPIEditSource::EnsureOutliner() { if( !m_pImpl->mpOutliner ) { //init draw model first m_pImpl->mpDoc->getIDocumentDrawModelAccess().GetOrCreateDrawModel(); m_pImpl->mpOutliner.reset(new Outliner(m_pImpl->mpPool, OutlinerMode::TextObject)); m_pImpl->mpOutliner->SetStyleSheetPool( static_cast(m_pImpl->mpDoc->GetDocShell()->GetStyleSheetPool())->GetEEStyleSheetPool()); m_pImpl->mpDoc->SetCalcFieldValueHdl(m_pImpl->mpOutliner.get()); } } SvxTextForwarder* SwTextAPIEditSource::GetTextForwarder() { if( !m_pImpl->mpPool ) return nullptr; // mpPool == 0 can be used to flag this as disposed EnsureOutliner(); if( !m_pImpl->mpTextForwarder ) { m_pImpl->mpTextForwarder.reset(new SwTextAPIForwarder(*m_pImpl->mpOutliner, false)); } return m_pImpl->mpTextForwarder.get(); } void SwTextAPIEditSource::SetText( OutlinerParaObject const & rText ) { if ( m_pImpl->mpPool ) { EnsureOutliner(); m_pImpl->mpOutliner->SetText( rText ); } } void SwTextAPIEditSource::SetString( const OUString& rText ) { if ( !m_pImpl->mpPool ) return; if ( m_pImpl->mpOutliner ) m_pImpl->mpOutliner->Clear(); EnsureOutliner(); if (auto pStyle = m_pImpl->mpOutliner->GetStyleSheetPool()->Find(SwResId(STR_POOLCOLL_COMMENT), SfxStyleFamily::Para)) m_pImpl->mpOutliner->SetStyleSheet(0, static_cast(pStyle)); m_pImpl->mpOutliner->Insert( rText ); } std::optional SwTextAPIEditSource::CreateText() { if ( m_pImpl->mpPool && m_pImpl->mpOutliner ) return m_pImpl->mpOutliner->CreateParaObject(); else return std::nullopt; } OUString SwTextAPIEditSource::GetText() const { if ( m_pImpl->mpPool && m_pImpl->mpOutliner ) return m_pImpl->mpOutliner->GetEditEngine().GetText(); else return OUString(); } /* vim:set shiftwidth=4 softtabstop=4 expandtab: */