/* -*- 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_SVTOOLS_EMBEDHLP_HXX #define INCLUDED_SVTOOLS_EMBEDHLP_HXX #include #include #include #include #include #include namespace comphelper { class EmbeddedObjectContainer; } namespace com { namespace sun { namespace star { namespace embed { class XEmbeddedObject; }}}} class Rectangle; class OutputDevice; namespace svt { struct EmbeddedObjectRef_Impl; class SVT_DLLPUBLIC EmbeddedObjectRef { EmbeddedObjectRef_Impl* mpImpl; SVT_DLLPRIVATE SvStream* GetGraphicStream( bool bUpdate ) const; SVT_DLLPRIVATE void GetReplacement( bool bUpdate ); EmbeddedObjectRef& operator = ( const EmbeddedObjectRef& ); public: static void DrawPaintReplacement( const Rectangle &rRect, const OUString &rText, OutputDevice *pOut ); static void DrawShading( const Rectangle &rRect, OutputDevice *pOut ); static bool TryRunningState( const ::com::sun::star::uno::Reference < ::com::sun::star::embed::XEmbeddedObject >& ); static void SetGraphicToContainer( const Graphic& rGraphic, comphelper::EmbeddedObjectContainer& aContainer, const OUString& aName, const OUString& aMediaType ); static ::com::sun::star::uno::Reference< ::com::sun::star::io::XInputStream > GetGraphicReplacementStream( sal_Int64 nViewAspect, const ::com::sun::star::uno::Reference < ::com::sun::star::embed::XEmbeddedObject >&, OUString* pMediaType ) throw(); const com::sun::star::uno::Reference & operator->() const; const com::sun::star::uno::Reference & GetObject() const; // default constructed object; needs further assignment before it can be used EmbeddedObjectRef(); // assign a previously default constructed object void Assign( const ::com::sun::star::uno::Reference < ::com::sun::star::embed::XEmbeddedObject >& xObj, sal_Int64 nAspect ); // create object for a certain view aspect EmbeddedObjectRef( const ::com::sun::star::uno::Reference < ::com::sun::star::embed::XEmbeddedObject >& xObj, sal_Int64 nAspect ); ~EmbeddedObjectRef(); EmbeddedObjectRef( const EmbeddedObjectRef& ); // assigning to a container enables the object to exchange graphical representations with a storage void AssignToContainer( comphelper::EmbeddedObjectContainer* pContainer, const OUString& rPersistName ); comphelper::EmbeddedObjectContainer* GetContainer() const; sal_Int64 GetViewAspect() const; void SetViewAspect( sal_Int64 nAspect ); const Graphic* GetGraphic( OUString* pMediaType = NULL ) const; // the original size of the object ( size of the icon for iconified object ) // no conversion is done if no target mode is provided Size GetSize( MapMode* pTargetMapMode = NULL ) const; void SetGraphic( const Graphic& rGraphic, const OUString& rMediaType ); void SetGraphicStream( const ::com::sun::star::uno::Reference< ::com::sun::star::io::XInputStream >& xInGrStream, const OUString& rMediaType ); void UpdateReplacement(); void UpdateReplacementOnDemand(); void Lock( bool bLock = true ); void Clear(); bool is() const; bool IsLocked() const; bool IsChart() const; OUString GetChartType(); // #i104867# // Provides a graphic version number for the fetchable Graphic during this object's lifetime. Internally, // that number is incremented at each change of the Graphic. This mechanism is needed to identify if a // remembered Graphic (e.g. primitives) has changed compared to the current one, but without actively // fetching the Graphic what would be too expensive e.g. for charts sal_uInt32 getGraphicVersion() const; void SetDefaultSizeForChart( const Size& rSizeIn_100TH_MM );//#i103460# charts do not necessaryly have an own size within ODF files, in this case they need to use the size settings from the surrounding frame, which is made available with this method }; } #endif /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ /lhm/libreoffice-4-1-6+backports'>distro/lhm/libreoffice-4-1-6+backports LibreOffice 核心代码仓库文档基金会
summaryrefslogtreecommitdiff
AgeCommit message (Expand)Author
2020-04-19loplugin:buriedassign in variousNoel Grandin
2020-02-12move some canvas/ headers inside the moduleNoel Grandin
2019-12-12Remove some redundant user-provided dtorsStephan Bergmann
2019-08-23Mark move ctors/assignments noexceptMike Kaganski
2019-07-16tdf#42949 Fix IWYU warnings in include/Gabor Kelemen
2019-06-30Fix typoAndrea Gelmini
2019-06-29Fix typoAndrea Gelmini
2019-06-29Fix typoAndrea Gelmini
2019-06-29Fix typoAndrea Gelmini
2019-06-26Fix typoAndrea Gelmini
2019-03-05re-land "new loplugin typedefparam""Noel Grandin
2019-03-04Revert "new loplugin typedefparam"Noel Grandin
2019-03-04new loplugin typedefparamNoel Grandin
2019-02-25tdf#42949 Fix IWYU warnings in include/canvas/Gabor Kelemen
2018-11-24remove unused SpriteChangeRecord::ChangeType::noneNoel Grandin
2018-11-13loplugin singlevalfields improvementNoel Grandin
2018-11-01tdf#43671 set emphasis mark of vcl::Font (windows).Mark Hung
2018-10-22pvs-studio: V794 The assignment operator should be protectedCaolán McNamara
2018-08-06loplugin:useuniqueptr in VCLObjectNoel Grandin
2018-07-30Add missing sal/log.hxx headersGabor Kelemen