Bump version to 21.06.18.1
[LibreOffice.git] / sw / inc / ndgrf.hxx
blob82be71429780e012e025baec3e91024d345deb72
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
20 #ifndef INCLUDED_SW_INC_NDGRF_HXX
21 #define INCLUDED_SW_INC_NDGRF_HXX
23 #include <sfx2/lnkbase.hxx>
24 #include <vcl/GraphicObject.hxx>
25 #include "ndnotxt.hxx"
26 #include <memory>
28 class SwAsyncRetrieveInputStreamThreadConsumer;
30 class SwGrfFormatColl;
31 class SwDoc;
33 // SwGrfNode
34 class SW_DLLPUBLIC SwGrfNode: public SwNoTextNode
36 friend class SwNodes;
38 GraphicObject maGrfObj;
39 std::unique_ptr<GraphicObject> mpReplacementGraphic;
40 tools::SvRef<sfx2::SvBaseLink> mxLink; ///< If graphics only as link then pointer is set.
41 Size mnGrfSize;
42 bool mbInSwapIn :1; // to avoid recursion in SwGrfNode::SwapIn
43 bool mbInBaseLinkSwapIn :1; // to avoid recursion in SwBaseLink::SwapIn
45 bool mbChangeTwipSize :1;
46 bool mbFrameInPaint :1; ///< To avoid Start-/EndActions in Paint via SwapIn.
47 bool mbScaleImageMap :1; ///< Scale image map in SetTwipSize.
49 std::shared_ptr< SwAsyncRetrieveInputStreamThreadConsumer > mpThreadConsumer;
50 bool mbLinkedInputStreamReady;
51 css::uno::Reference<css::io::XInputStream> mxInputStream;
52 bool mbIsStreamReadOnly;
54 SwGrfNode( const SwNodeIndex& rWhere,
55 const OUString& rGrfName, const OUString& rFltName,
56 const Graphic* pGraphic,
57 SwGrfFormatColl* pGrfColl,
58 SwAttrSet const * pAutoAttr );
59 ///< Ctor for reading (SW/G) without graphics.
60 SwGrfNode( const SwNodeIndex& rWhere,
61 const OUString& rGrfName, const OUString& rFltName,
62 SwGrfFormatColl* pGrfColl,
63 SwAttrSet const * pAutoAttr );
64 SwGrfNode( const SwNodeIndex& rWhere,
65 const GraphicObject& rGrfObj,
66 SwGrfFormatColl* pGrfColl,
67 SwAttrSet const * pAutoAttr );
69 void InsertLink( const OUString& rGrfName, const OUString& rFltName );
71 /// allow reaction on change of content of GraphicObject, so always call
72 /// when GraphicObject content changes
73 void onGraphicChanged();
75 public:
76 virtual ~SwGrfNode() override;
77 const Graphic& GetGrf(bool bWait = false) const;
78 const GraphicObject& GetGrfObj(bool bWait = false) const;
79 const GraphicObject* GetReplacementGrfObj() const;
81 /// isolated only way to set GraphicObject to allow more actions when doing so
82 void SetGraphic(const Graphic& rGraphic);
83 void TriggerGraphicArrived();
85 /// wrappers for non-const calls at GraphicObject
86 void StartGraphicAnimation(OutputDevice* pOut, const Point& rPt, const Size& rSz, tools::Long nExtraData, OutputDevice* pFirstFrameOutDev)
87 { maGrfObj.StartAnimation(pOut, rPt, rSz, nExtraData, pFirstFrameOutDev); }
88 void StopGraphicAnimation(const OutputDevice* pOut, tools::Long nExtraData) { maGrfObj.StopAnimation(pOut, nExtraData); }
90 virtual Size GetTwipSize() const override;
91 void SetTwipSize( const Size& rSz );
93 bool IsTransparent() const;
95 bool IsAnimated() const { return maGrfObj.IsAnimated(); }
97 bool IsChgTwipSize() const { return mbChangeTwipSize; }
98 void SetChgTwipSize( bool b)
100 mbChangeTwipSize = b;
103 bool IsFrameInPaint() const { return mbFrameInPaint; }
104 void SetFrameInPaint( bool b ) { mbFrameInPaint = b; }
106 bool IsScaleImageMap() const { return mbScaleImageMap; }
107 void SetScaleImageMap( bool b ) { mbScaleImageMap = b; }
109 /// in ndcopy.cxx
110 virtual SwContentNode* MakeCopy(SwDoc&, const SwNodeIndex&, bool bNewFrames) const override;
112 /** Re-read in case graphic was not OK. The current one
113 gets replaced by the new one. */
114 bool ReRead( const OUString& rGrfName, const OUString& rFltName,
115 const Graphic* pGraphic = nullptr,
116 bool bModify = true );
117 private:
118 /// Loading of graphic immediately before displaying.
119 bool SwapIn( bool bWaitForData = false );
121 public:
122 bool HasEmbeddedStreamName() const { return maGrfObj.HasUserData(); }
124 /// Communicate to graphic that node is in Undo-range.
125 virtual bool SavePersistentData() override;
126 virtual bool RestorePersistentData() override;
128 /// Query link-data.
129 bool IsGrfLink() const { return mxLink.is(); }
130 bool IsLinkedFile() const;
131 bool IsLinkedDDE() const;
132 const tools::SvRef<sfx2::SvBaseLink>& GetLink() const { return mxLink; }
133 bool GetFileFilterNms( OUString* pFileNm, OUString* pFilterNm ) const;
134 void ReleaseLink();
136 /** Scale an image-map: the image-map becomes zoomed in / out by
137 factor between graphic-size and border-size. */
138 void ScaleImageMap();
140 /// Returns the with our graphic attributes filled Graphic-Attr-Structure.
141 GraphicAttr& GetGraphicAttr( GraphicAttr&, const SwFrame* pFrame ) const;
143 std::weak_ptr< SwAsyncRetrieveInputStreamThreadConsumer > GetThreadConsumer() const { return mpThreadConsumer;}
144 bool IsLinkedInputStreamReady() const { return mbLinkedInputStreamReady;}
145 void TriggerAsyncRetrieveInputStream();
146 void ApplyInputStream(
147 const css::uno::Reference<css::io::XInputStream>& xInputStream,
148 const bool bIsStreamReadOnly );
149 void UpdateLinkWithInputStream();
150 bool IsAsyncRetrieveInputStreamPossible() const;
153 // Inline methods from Node.hxx - it is only now that we know TextNode!!
154 inline SwGrfNode *SwNode::GetGrfNode()
156 return SwNodeType::Grf == m_nNodeType ? static_cast<SwGrfNode*>(this) : nullptr;
159 inline const SwGrfNode *SwNode::GetGrfNode() const
161 return SwNodeType::Grf == m_nNodeType ? static_cast<const SwGrfNode*>(this) : nullptr;
164 inline bool SwGrfNode::IsLinkedFile() const
166 return mxLink.is() && sfx2::SvBaseLinkObjectType::ClientGraphic == mxLink->GetObjType();
169 inline bool SwGrfNode::IsLinkedDDE() const
171 return mxLink.is() && sfx2::SvBaseLinkObjectType::ClientDde == mxLink->GetObjType();
174 #endif
176 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */