LibreOffice Module sw (master) 1
unodraw.hxx
Go to the documentation of this file.
1/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2/*
3 * This file is part of the LibreOffice project.
4 *
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/.
8 *
9 * This file incorporates work covered by the following license notice:
10 *
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 .
18 */
19#ifndef INCLUDED_SW_INC_UNODRAW_HXX
20#define INCLUDED_SW_INC_UNODRAW_HXX
21
22#include <svl/itemprop.hxx>
23#include <svl/listener.hxx>
24#include <svx/fmdpage.hxx>
25#include "frmfmt.hxx"
26#include <com/sun/star/text/XTextContent.hpp>
27#include <com/sun/star/drawing/PolyPolygonBezierCoords.hpp>
28#include <com/sun/star/drawing/XShape.hpp>
29#include <com/sun/star/lang/XUnoTunnel.hpp>
30#include <com/sun/star/beans/XPropertySet.hpp>
31#include <com/sun/star/beans/XPropertyState.hpp>
32#include <com/sun/star/drawing/XShapes.hpp>
35#include <com/sun/star/container/XEnumerationAccess.hpp>
36#include <com/sun/star/drawing/HomogenMatrix3.hpp>
37
38class SdrMarkList;
39class SdrView;
40class SwDoc;
41class SwXShape;
42
44<
46 css::container::XEnumerationAccess,
47 css::beans::XPropertySet>
49
50class SwFmDrawPage final : public SwFmDrawPage_Base
51{
54 std::vector<rtl::Reference<SwXShape>> m_vShapes;
56
57public:
58 SwFmDrawPage( SwDoc* pDoc, SdrPage* pPage );
59 virtual ~SwFmDrawPage() noexcept override;
60
61 const SdrMarkList& PreGroup(const css::uno::Reference< css::drawing::XShapes >& rShapes);
62 void PreUnGroup(const css::uno::Reference< css::drawing::XShapeGroup >& rShapeGroup);
63
64 SdrView* GetDrawView() {return mpView.get();}
66 void RemovePageView();
67 static css::uno::Reference<css::drawing::XShape> GetShape(SdrObject* pObj);
68 static css::uno::Reference<css::drawing::XShapeGroup> GetShapeGroup(SdrObject* pObj);
69
70 // The following method is called when a SvxShape-object is to be created.
71 // Derived classes may obtain at this point a derivation or an object
72 // that is aggregating a SvxShape.
73 virtual css::uno::Reference< css::drawing::XShape > CreateShape( SdrObject *pObj ) const override;
74 void RemoveShape(const SwXShape* pShape)
75 {
76 auto ppShape = find(m_vShapes.begin(), m_vShapes.end(), pShape);
77 if(ppShape != m_vShapes.end())
78 m_vShapes.erase(ppShape);
79 };
80
81 //XEnumerationAccess
82 virtual css::uno::Reference< css::container::XEnumeration > SAL_CALL createEnumeration() override;
83
84 //XIndexAccess
85 virtual sal_Int32 SAL_CALL getCount() override;
86 virtual css::uno::Any SAL_CALL getByIndex(sal_Int32 nIndex) override;
87
88 //XElementAccess
89 virtual css::uno::Type SAL_CALL getElementType( ) override;
90 virtual sal_Bool SAL_CALL hasElements( ) override;
91
92 //XShapes
93 virtual void SAL_CALL add(const css::uno::Reference< css::drawing::XShape > & xShape) override;
94 virtual void SAL_CALL remove(const css::uno::Reference< css::drawing::XShape > & xShape) override;
95
96 //XShapeGrouper
97 virtual css::uno::Reference< css::drawing::XShapeGroup > SAL_CALL group(const css::uno::Reference< css::drawing::XShapes > & xShapes) override;
98 virtual void SAL_CALL ungroup(const css::uno::Reference< css::drawing::XShapeGroup > & aGroup) override;
99
100 //XServiceInfo
101 virtual OUString SAL_CALL getImplementationName() override;
102 virtual sal_Bool SAL_CALL supportsService(const OUString& ServiceName) override;
103 virtual css::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames() override;
104
105 //XPropertySet
106 virtual css::uno::Reference<css::beans::XPropertySetInfo> SAL_CALL getPropertySetInfo() override;
107 virtual void SAL_CALL setPropertyValue(const OUString& aPropertyName, const css::uno::Any& aValue) override;
108 virtual css::uno::Any SAL_CALL getPropertyValue(const OUString& PropertyName) override;
109 virtual void SAL_CALL addPropertyChangeListener(const OUString& aPropertyName, const css::uno::Reference<css::beans::XPropertyChangeListener>& xListener) override;
110 virtual void SAL_CALL removePropertyChangeListener(const OUString& aPropertyName, const css::uno::Reference<css::beans::XPropertyChangeListener>& aListener) override;
111 virtual void SAL_CALL addVetoableChangeListener(const OUString& PropertyName, const css::uno::Reference<css::beans::XVetoableChangeListener>& aListener) override;
112 virtual void SAL_CALL removeVetoableChangeListener(const OUString& PropertyName, const css::uno::Reference<css::beans::XVetoableChangeListener>& aListener) override;
113
114 // renamed and outlined to detect where it's called
115 void InvalidateSwDoc(); // {pDoc = 0;}
116};
117
119typedef
120cppu::WeakImplHelper
121<
122 css::beans::XPropertySet,
123 css::beans::XPropertyState,
124 css::text::XTextContent,
125 css::lang::XServiceInfo,
126 css::lang::XUnoTunnel,
127 css::drawing::XShape
128>
131{
132 friend class SwXGroupShape;
133 friend class SwFmDrawPage;
135
136 css::uno::Reference< css::uno::XAggregation > m_xShapeAgg;
137 // reference to <XShape>, determined in the
138 // constructor by <queryAggregation> at <xShapeAgg>.
139 css::uno::Reference< css::drawing::XShape > mxShape;
140
143 css::uno::Reference< css::beans::XPropertySetInfo > mxPropertySetInfo;
144
145 std::unique_ptr<SwShapeDescriptor_Impl> m_pImpl;
146
148
150
152 SdrObject* GetTopGroupObj( SvxShape* _pSvxShape = nullptr );
153
155 css::awt::Point GetAttrPosition();
156
159 css::awt::Point ConvertPositionToHoriL2R(
160 const css::awt::Point& rObjPos,
161 const css::awt::Size& rObjSize );
162
166 css::drawing::HomogenMatrix3 ConvertTransformationToLayoutDir(
167 const css::drawing::HomogenMatrix3& rMatrixInHoriL2R );
168
176 void AdjustPositionProperties(const css::awt::Point& rPosition);
177
181 css::awt::Point ConvertStartOrEndPosToLayoutDir(
182 const css::awt::Point& aStartOrEndPos );
183
187 css::drawing::PolyPolygonBezierCoords ConvertPolyPolygonBezierToLayoutDir(
188 const css::drawing::PolyPolygonBezierCoords& aPath );
189
196 css::uno::Any _getPropAtAggrObj( const OUString& _rPropertyName );
197
198protected:
199 virtual ~SwXShape() override;
200public:
201 SwXShape(css::uno::Reference<css::uno::XInterface> & xShape, SwDoc const*const pDoc);
202
203 static const css::uno::Sequence< sal_Int8 > & getUnoTunnelId();
204 virtual css::uno::Any SAL_CALL queryInterface( const css::uno::Type& aType ) override;
205 virtual css::uno::Sequence< css::uno::Type > SAL_CALL getTypes( ) override;
206 virtual css::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId( ) override;
207
208 //XUnoTunnel
209 virtual sal_Int64 SAL_CALL getSomething( const css::uno::Sequence< sal_Int8 >& aIdentifier ) override;
210
211 //XPropertySet
212 virtual css::uno::Reference< css::beans::XPropertySetInfo > SAL_CALL getPropertySetInfo( ) override;
213 virtual void SAL_CALL setPropertyValue( const OUString& aPropertyName, const css::uno::Any& aValue ) override;
214 virtual css::uno::Any SAL_CALL getPropertyValue( const OUString& PropertyName ) override;
215 virtual void SAL_CALL addPropertyChangeListener( const OUString& aPropertyName, const css::uno::Reference< css::beans::XPropertyChangeListener >& xListener ) override;
216 virtual void SAL_CALL removePropertyChangeListener( const OUString& aPropertyName, const css::uno::Reference< css::beans::XPropertyChangeListener >& aListener ) override;
217 virtual void SAL_CALL addVetoableChangeListener( const OUString& PropertyName, const css::uno::Reference< css::beans::XVetoableChangeListener >& aListener ) override;
218 virtual void SAL_CALL removeVetoableChangeListener( const OUString& PropertyName, const css::uno::Reference< css::beans::XVetoableChangeListener >& aListener ) override;
219
220 //XPropertyState
221 virtual css::beans::PropertyState SAL_CALL getPropertyState( const OUString& PropertyName ) override;
222 virtual css::uno::Sequence< css::beans::PropertyState > SAL_CALL getPropertyStates( const css::uno::Sequence< OUString >& aPropertyName ) override;
223 virtual void SAL_CALL setPropertyToDefault( const OUString& PropertyName ) override;
224 virtual css::uno::Any SAL_CALL getPropertyDefault( const OUString& aPropertyName ) override;
225
226 //XTextContent
227 virtual void SAL_CALL attach(const css::uno::Reference< css::text::XTextRange > & xTextRange) override;
228 virtual css::uno::Reference< css::text::XTextRange > SAL_CALL getAnchor() override;
229
230 //XComponent
231 virtual void SAL_CALL dispose() override;
232 virtual void SAL_CALL addEventListener(const css::uno::Reference< css::lang::XEventListener > & aListener) override;
233 virtual void SAL_CALL removeEventListener(const css::uno::Reference< css::lang::XEventListener > & aListener) override;
234
235 //XServiceInfo
236 virtual OUString SAL_CALL getImplementationName() override;
237 virtual sal_Bool SAL_CALL supportsService(const OUString& ServiceName) override;
238 virtual css::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames() override;
239
240 virtual css::awt::Point SAL_CALL getPosition( ) override;
241 virtual void SAL_CALL setPosition( const css::awt::Point& aPosition ) override;
242 virtual css::awt::Size SAL_CALL getSize( ) override;
243 virtual void SAL_CALL setSize( const css::awt::Size& aSize ) override;
244 virtual OUString SAL_CALL getShapeType( ) override;
245
248 const css::uno::Reference< css::uno::XAggregation >& GetAggregationInterface() const {return m_xShapeAgg;}
249
250 // helper
251 static void AddExistingShapeToFormat( SdrObject const & _rObj );
252};
253
254class SwXGroupShape final :
255 public SwXShape,
256 public css::drawing::XShapes
257{
258 virtual ~SwXGroupShape() override;
259public:
260 SwXGroupShape(css::uno::Reference<css::uno::XInterface> & xShape, SwDoc const* pDoc);
261
262 virtual css::uno::Any SAL_CALL queryInterface( const css::uno::Type& aType ) override;
263 virtual void SAL_CALL acquire( ) noexcept override;
264 virtual void SAL_CALL release( ) noexcept override;
265
266 //XShapes
267 virtual void SAL_CALL add( const css::uno::Reference< css::drawing::XShape >& xShape ) override;
268 virtual void SAL_CALL remove( const css::uno::Reference< css::drawing::XShape >& xShape ) override;
269
270 //XIndexAccess
271 virtual sal_Int32 SAL_CALL getCount() override;
272 virtual css::uno::Any SAL_CALL getByIndex(sal_Int32 nIndex) override;
273
274 //XElementAccess
275 virtual css::uno::Type SAL_CALL getElementType( ) override;
276 virtual sal_Bool SAL_CALL hasElements( ) override;
277};
278#endif
279
280/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
Definition: doc.hxx:197
SdrPageView * m_pPageView
Definition: unodraw.hxx:53
virtual sal_Bool SAL_CALL hasElements() override
Definition: unodraw.cxx:617
std::vector< rtl::Reference< SwXShape > > m_vShapes
Definition: unodraw.hxx:54
void InvalidateSwDoc()
Renamed and outlined to detect where it's called.
Definition: unodraw.cxx:875
virtual css::uno::Reference< css::container::XEnumeration > SAL_CALL createEnumeration() override
Definition: unodraw.cxx:568
SwDoc * m_pDoc
Definition: unodraw.hxx:52
virtual sal_Bool SAL_CALL supportsService(const OUString &ServiceName) override
Definition: unodraw.cxx:580
virtual void SAL_CALL removePropertyChangeListener(const OUString &aPropertyName, const css::uno::Reference< css::beans::XPropertyChangeListener > &aListener) override
Definition: unodraw.cxx:484
static css::uno::Reference< css::drawing::XShapeGroup > GetShapeGroup(SdrObject *pObj)
Definition: unodraw.cxx:317
virtual css::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames() override
Definition: unodraw.cxx:585
virtual css::uno::Any SAL_CALL getPropertyValue(const OUString &PropertyName) override
Definition: unodraw.cxx:432
static css::uno::Reference< css::drawing::XShape > GetShape(SdrObject *pObj)
Definition: unodraw.cxx:297
virtual css::uno::Type SAL_CALL getElementType() override
Definition: unodraw.cxx:612
virtual css::uno::Reference< css::beans::XPropertySetInfo > SAL_CALL getPropertySetInfo() override
Definition: unodraw.cxx:389
virtual css::uno::Reference< css::drawing::XShapeGroup > SAL_CALL group(const css::uno::Reference< css::drawing::XShapes > &xShapes) override
Definition: unodraw.cxx:815
virtual ~SwFmDrawPage() noexcept override
Definition: unodraw.cxx:264
virtual OUString SAL_CALL getImplementationName() override
Definition: unodraw.cxx:575
virtual void SAL_CALL remove(const css::uno::Reference< css::drawing::XShape > &xShape) override
Definition: unodraw.cxx:797
virtual void SAL_CALL ungroup(const css::uno::Reference< css::drawing::XShapeGroup > &aGroup) override
Definition: unodraw.cxx:854
virtual void SAL_CALL addPropertyChangeListener(const OUString &aPropertyName, const css::uno::Reference< css::beans::XPropertyChangeListener > &xListener) override
Definition: unodraw.cxx:478
SwFmDrawPage(SwDoc *pDoc, SdrPage *pPage)
Definition: unodraw.cxx:256
virtual css::uno::Reference< css::drawing::XShape > CreateShape(SdrObject *pObj) const override
Definition: unodraw.cxx:322
virtual void SAL_CALL add(const css::uno::Reference< css::drawing::XShape > &xShape) override
Definition: unodraw.cxx:627
void RemoveShape(const SwXShape *pShape)
Definition: unodraw.hxx:74
const SfxItemPropertySet * m_pPropertySet
Definition: unodraw.hxx:55
void PreUnGroup(const css::uno::Reference< css::drawing::XShapeGroup > &rShapeGroup)
Definition: unodraw.cxx:278
SdrView * GetDrawView()
Definition: unodraw.hxx:64
virtual css::uno::Any SAL_CALL getByIndex(sal_Int32 nIndex) override
Definition: unodraw.cxx:601
void RemovePageView()
Definition: unodraw.cxx:290
virtual void SAL_CALL setPropertyValue(const OUString &aPropertyName, const css::uno::Any &aValue) override
Definition: unodraw.cxx:395
const SdrMarkList & PreGroup(const css::uno::Reference< css::drawing::XShapes > &rShapes)
Definition: unodraw.cxx:271
virtual void SAL_CALL addVetoableChangeListener(const OUString &PropertyName, const css::uno::Reference< css::beans::XVetoableChangeListener > &aListener) override
Definition: unodraw.cxx:490
virtual sal_Int32 SAL_CALL getCount() override
Definition: unodraw.cxx:590
SdrPageView * GetPageView()
Definition: unodraw.cxx:283
virtual void SAL_CALL removeVetoableChangeListener(const OUString &PropertyName, const css::uno::Reference< css::beans::XVetoableChangeListener > &aListener) override
Definition: unodraw.cxx:496
Style of a layout element.
Definition: frmfmt.hxx:72
virtual void SAL_CALL acquire() noexcept override
Definition: unodraw.cxx:2768
virtual css::uno::Any SAL_CALL getByIndex(sal_Int32 nIndex) override
Definition: unodraw.cxx:2858
virtual css::uno::Any SAL_CALL queryInterface(const css::uno::Type &aType) override
Definition: unodraw.cxx:2758
virtual sal_Bool SAL_CALL hasElements() override
Definition: unodraw.cxx:2888
virtual void SAL_CALL add(const css::uno::Reference< css::drawing::XShape > &xShape) override
Definition: unodraw.cxx:2778
virtual void SAL_CALL remove(const css::uno::Reference< css::drawing::XShape > &xShape) override
Definition: unodraw.cxx:2828
virtual void SAL_CALL release() noexcept override
Definition: unodraw.cxx:2773
virtual sal_Int32 SAL_CALL getCount() override
Definition: unodraw.cxx:2843
virtual ~SwXGroupShape() override
Definition: unodraw.cxx:2754
virtual css::uno::Type SAL_CALL getElementType() override
Definition: unodraw.cxx:2873
css::uno::Reference< css::uno::XAggregation > m_xShapeAgg
Definition: unodraw.hxx:136
virtual css::uno::Any SAL_CALL getPropertyDefault(const OUString &aPropertyName) override
Definition: unodraw.cxx:2013
css::uno::Any _getPropAtAggrObj(const OUString &_rPropertyName)
method to get property from aggregation object
Definition: unodraw.cxx:1811
virtual css::uno::Any SAL_CALL queryInterface(const css::uno::Type &aType) override
Definition: unodraw.cxx:1002
css::awt::Point GetAttrPosition()
method to determine position according to the positioning attributes
Definition: unodraw.cxx:2431
virtual void SAL_CALL addVetoableChangeListener(const OUString &PropertyName, const css::uno::Reference< css::beans::XVetoableChangeListener > &aListener) override
Definition: unodraw.cxx:2072
virtual css::beans::PropertyState SAL_CALL getPropertyState(const OUString &PropertyName) override
Definition: unodraw.cxx:1828
virtual void SAL_CALL removeVetoableChangeListener(const OUString &PropertyName, const css::uno::Reference< css::beans::XVetoableChangeListener > &aListener) override
Definition: unodraw.cxx:2079
std::unique_ptr< SwShapeDescriptor_Impl > m_pImpl
Definition: unodraw.hxx:145
virtual css::awt::Point SAL_CALL getPosition() override
Definition: unodraw.cxx:2254
o3tl::span< const SfxItemPropertyMapEntry > m_pPropertyMapEntries
Definition: unodraw.hxx:142
SwShapeDescriptor_Impl * GetDescImpl()
Definition: unodraw.hxx:246
static void AddExistingShapeToFormat(SdrObject const &_rObj)
Definition: unodraw.cxx:963
virtual OUString SAL_CALL getShapeType() override
Definition: unodraw.cxx:2396
bool m_bDescriptor
Definition: unodraw.hxx:147
virtual void SAL_CALL attach(const css::uno::Reference< css::text::XTextRange > &xTextRange) override
Definition: unodraw.cxx:2086
virtual OUString SAL_CALL getImplementationName() override
Definition: unodraw.cxx:2226
virtual void SAL_CALL removePropertyChangeListener(const OUString &aPropertyName, const css::uno::Reference< css::beans::XPropertyChangeListener > &aListener) override
Definition: unodraw.cxx:2059
SdrObject * GetTopGroupObj(SvxShape *_pSvxShape=nullptr)
method to determine top group object
Definition: unodraw.cxx:2407
friend class SwXGroupShape
Definition: unodraw.hxx:132
virtual void SAL_CALL addEventListener(const css::uno::Reference< css::lang::XEventListener > &aListener) override
Definition: unodraw.cxx:2210
SwXShape(css::uno::Reference< css::uno::XInterface > &xShape, SwDoc const *const pDoc)
Definition: unodraw.cxx:915
SvxShape * GetSvxShape()
Definition: unodraw.cxx:2245
virtual sal_Int64 SAL_CALL getSomething(const css::uno::Sequence< sal_Int8 > &aIdentifier) override
Definition: unodraw.cxx:886
virtual css::uno::Reference< css::beans::XPropertySetInfo > SAL_CALL getPropertySetInfo() override
Definition: unodraw.cxx:1052
css::uno::Reference< css::drawing::XShape > mxShape
Definition: unodraw.hxx:139
static const css::uno::Sequence< sal_Int8 > & getUnoTunnelId()
Definition: unodraw.cxx:880
const SwFmDrawPage * m_pPage
Definition: unodraw.hxx:134
css::drawing::HomogenMatrix3 ConvertTransformationToLayoutDir(const css::drawing::HomogenMatrix3 &rMatrixInHoriL2R)
method to convert the transformation of the drawing object to the layout direction,...
Definition: unodraw.cxx:2516
virtual css::awt::Size SAL_CALL getSize() override
Definition: unodraw.cxx:2374
const SfxItemPropertySet * m_pPropSet
Definition: unodraw.hxx:141
virtual css::uno::Sequence< css::beans::PropertyState > SAL_CALL getPropertyStates(const css::uno::Sequence< OUString > &aPropertyName) override
Definition: unodraw.cxx:1836
virtual void SAL_CALL setPropertyToDefault(const OUString &PropertyName) override
Definition: unodraw.cxx:1952
css::uno::Reference< css::beans::XPropertySetInfo > mxPropertySetInfo
Definition: unodraw.hxx:143
virtual void SAL_CALL setPropertyValue(const OUString &aPropertyName, const css::uno::Any &aValue) override
Definition: unodraw.cxx:1076
virtual void SAL_CALL dispose() override
Definition: unodraw.cxx:2156
SwFrameFormat * GetFrameFormat() const
Definition: unodraw.cxx:955
virtual css::uno::Any SAL_CALL getPropertyValue(const OUString &PropertyName) override
Definition: unodraw.cxx:1509
virtual void SAL_CALL setSize(const css::awt::Size &aSize) override
Definition: unodraw.cxx:2384
virtual css::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() override
Definition: unodraw.cxx:1047
css::awt::Point ConvertStartOrEndPosToLayoutDir(const css::awt::Point &aStartOrEndPos)
method to convert start or end position of the drawing object to the Writer specific position,...
Definition: unodraw.cxx:2657
css::drawing::PolyPolygonBezierCoords ConvertPolyPolygonBezierToLayoutDir(const css::drawing::PolyPolygonBezierCoords &aPath)
method to convert PolyPolygonBezier of the drawing object to the Writer specific position,...
Definition: unodraw.cxx:2695
css::awt::Point ConvertPositionToHoriL2R(const css::awt::Point &rObjPos, const css::awt::Size &rObjSize)
method to convert the position (translation) of the drawing object to the layout direction horizontal...
Definition: unodraw.cxx:2475
virtual void SAL_CALL addPropertyChangeListener(const OUString &aPropertyName, const css::uno::Reference< css::beans::XPropertyChangeListener > &xListener) override
Definition: unodraw.cxx:2046
virtual void SAL_CALL removeEventListener(const css::uno::Reference< css::lang::XEventListener > &aListener) override
Definition: unodraw.cxx:2218
void AdjustPositionProperties(const css::awt::Point &rPosition)
method to adjust the positioning properties
Definition: unodraw.cxx:2581
virtual sal_Bool SAL_CALL supportsService(const OUString &ServiceName) override
Definition: unodraw.cxx:2231
virtual ~SwXShape() override
Definition: unodraw.cxx:988
virtual css::uno::Reference< css::text::XTextRange > SAL_CALL getAnchor() override
Definition: unodraw.cxx:2127
virtual css::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames() override
Definition: unodraw.cxx:2236
virtual void SAL_CALL setPosition(const css::awt::Point &aPosition) override
Definition: unodraw.cxx:2292
const css::uno::Reference< css::uno::XAggregation > & GetAggregationInterface() const
Definition: unodraw.hxx:248
virtual css::uno::Sequence< css::uno::Type > SAL_CALL getTypes() override
Definition: unodraw.cxx:1031
sal_Int32 nIndex
OSQLColumns::const_iterator find(const OSQLColumns::const_iterator &first, const OSQLColumns::const_iterator &last, std::u16string_view _rVal, const ::comphelper::UStringMixEqual &_rCase)
UnoViewSharedPtr mpView
unsigned char sal_Bool
cppu::WeakImplHelper< css::beans::XPropertySet, css::beans::XPropertyState, css::text::XTextContent, css::lang::XServiceInfo, css::lang::XUnoTunnel, css::drawing::XShape > SwXShapeBaseClass
Definition: unodraw.hxx:118
cppu::AggImplInheritanceHelper2< SvxFmDrawPage, css::container::XEnumerationAccess, css::beans::XPropertySet > SwFmDrawPage_Base
Definition: unodraw.hxx:41