Line data Source code
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_UNOFRAME_HXX
20 : #define INCLUDED_SW_INC_UNOFRAME_HXX
21 :
22 : #include <com/sun/star/beans/XPropertyState.hpp>
23 : #include <com/sun/star/container/XNamed.hpp>
24 : #include <com/sun/star/container/XEnumerationAccess.hpp>
25 : #include <com/sun/star/document/XEmbeddedObjectSupplier2.hpp>
26 : #include <com/sun/star/text/XTextFrame.hpp>
27 : #include <com/sun/star/drawing/XShape.hpp>
28 : #include <com/sun/star/util/XModifyListener.hpp>
29 : #include <com/sun/star/frame/XModel.hpp>
30 : #include <com/sun/star/document/XEventsSupplier.hpp>
31 :
32 : #include <cppuhelper/implbase1.hxx>
33 : #include <cppuhelper/implbase3.hxx>
34 : #include <cppuhelper/implbase6.hxx>
35 :
36 : #include <sfx2/objsh.hxx>
37 :
38 : #include <flyenum.hxx>
39 : #include <frmfmt.hxx>
40 : #include <unotext.hxx>
41 :
42 : class SdrObject;
43 : class SwDoc;
44 : class SwFmt;
45 : class SwFlyFrmFmt;
46 :
47 : class BaseFrameProperties_Impl;
48 : class SwXFrame : public cppu::WeakImplHelper6
49 : <
50 : ::com::sun::star::lang::XServiceInfo,
51 : ::com::sun::star::beans::XPropertySet,
52 : ::com::sun::star::beans::XPropertyState,
53 : ::com::sun::star::drawing::XShape,
54 : ::com::sun::star::container::XNamed,
55 : ::com::sun::star::lang::XUnoTunnel
56 : >,
57 : public SwClient
58 : {
59 : private:
60 : class Impl;
61 : ::sw::UnoImplPtr<Impl> m_pImpl;
62 :
63 : const SfxItemPropertySet* m_pPropSet;
64 : SwDoc* m_pDoc;
65 :
66 : const FlyCntType eType;
67 :
68 : // Descriptor-interface
69 : BaseFrameProperties_Impl* pProps;
70 : bool bIsDescriptor;
71 : OUString m_sName;
72 :
73 : SwPaM* m_pCopySource;
74 :
75 : ///UUUU helper to check if fill style is set to color or bitmap
76 : /// and thus formally used SvxBrushItem parts need to be mapped
77 : /// for backwards compatibility
78 : bool needToMapFillItemsToSvxBrushItemTypes() const;
79 :
80 : protected:
81 : com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySet > mxStyleData;
82 : com::sun::star::uno::Reference< ::com::sun::star::container::XNameAccess > mxStyleFamily;
83 : virtual void Modify( const SfxPoolItem* pOld, const SfxPoolItem *pNew) SAL_OVERRIDE;
84 :
85 : virtual ~SwXFrame();
86 : public:
87 : SwXFrame(FlyCntType eSet,
88 : const SfxItemPropertySet* pPropSet,
89 : SwDoc *pDoc ); //Descriptor-If
90 : SwXFrame(SwFrmFmt& rFrmFmt, FlyCntType eSet,
91 : const SfxItemPropertySet* pPropSet);
92 :
93 : static const ::com::sun::star::uno::Sequence< sal_Int8 > & getUnoTunnelId();
94 :
95 : //XUnoTunnel
96 : virtual sal_Int64 SAL_CALL getSomething( const ::com::sun::star::uno::Sequence< sal_Int8 >& aIdentifier ) throw(::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
97 :
98 : TYPEINFO_OVERRIDE();
99 :
100 : //XNamed
101 : virtual OUString SAL_CALL getName(void) throw( ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
102 : virtual void SAL_CALL setName(const OUString& Name_) throw( ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
103 :
104 : //XPropertySet
105 : virtual ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySetInfo > SAL_CALL getPropertySetInfo( ) throw(::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
106 : virtual void SAL_CALL setPropertyValue( const OUString& aPropertyName, const ::com::sun::star::uno::Any& aValue ) throw(::com::sun::star::beans::UnknownPropertyException, ::com::sun::star::beans::PropertyVetoException, ::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::lang::WrappedTargetException, ::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
107 : virtual ::com::sun::star::uno::Any SAL_CALL getPropertyValue( const OUString& PropertyName ) throw(::com::sun::star::beans::UnknownPropertyException, ::com::sun::star::lang::WrappedTargetException, ::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
108 : virtual void SAL_CALL addPropertyChangeListener( const OUString& aPropertyName, const ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertyChangeListener >& xListener ) throw(::com::sun::star::beans::UnknownPropertyException, ::com::sun::star::lang::WrappedTargetException, ::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
109 : virtual void SAL_CALL removePropertyChangeListener( const OUString& aPropertyName, const ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertyChangeListener >& aListener ) throw(::com::sun::star::beans::UnknownPropertyException, ::com::sun::star::lang::WrappedTargetException, ::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
110 : virtual void SAL_CALL addVetoableChangeListener( const OUString& PropertyName, const ::com::sun::star::uno::Reference< ::com::sun::star::beans::XVetoableChangeListener >& aListener ) throw(::com::sun::star::beans::UnknownPropertyException, ::com::sun::star::lang::WrappedTargetException, ::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
111 : virtual void SAL_CALL removeVetoableChangeListener( const OUString& PropertyName, const ::com::sun::star::uno::Reference< ::com::sun::star::beans::XVetoableChangeListener >& aListener ) throw(::com::sun::star::beans::UnknownPropertyException, ::com::sun::star::lang::WrappedTargetException, ::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
112 :
113 : //XPropertyState
114 : virtual ::com::sun::star::beans::PropertyState SAL_CALL getPropertyState( const OUString& PropertyName ) throw(::com::sun::star::beans::UnknownPropertyException, ::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
115 : virtual ::com::sun::star::uno::Sequence< ::com::sun::star::beans::PropertyState > SAL_CALL getPropertyStates( const ::com::sun::star::uno::Sequence< OUString >& aPropertyName ) throw(::com::sun::star::beans::UnknownPropertyException, ::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
116 : virtual void SAL_CALL setPropertyToDefault( const OUString& PropertyName ) throw(::com::sun::star::beans::UnknownPropertyException, ::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
117 : virtual ::com::sun::star::uno::Any SAL_CALL getPropertyDefault( const OUString& aPropertyName ) throw(::com::sun::star::beans::UnknownPropertyException, ::com::sun::star::lang::WrappedTargetException, ::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
118 :
119 : //XShape
120 : virtual ::com::sun::star::awt::Point SAL_CALL getPosition( ) throw(::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
121 : virtual void SAL_CALL setPosition( const ::com::sun::star::awt::Point& aPosition ) throw(::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
122 : virtual ::com::sun::star::awt::Size SAL_CALL getSize( ) throw(::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
123 : virtual void SAL_CALL setSize( const ::com::sun::star::awt::Size& aSize ) throw(::com::sun::star::beans::PropertyVetoException, ::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
124 :
125 : //XShapeDescriptor
126 : virtual OUString SAL_CALL getShapeType(void) throw( ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
127 :
128 : //Base implementation
129 : //XComponent
130 : virtual void SAL_CALL dispose( ) throw(::com::sun::star::uno::RuntimeException, std::exception);
131 : virtual void SAL_CALL addEventListener( const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XEventListener >& xListener ) throw(::com::sun::star::uno::RuntimeException, std::exception);
132 : virtual void SAL_CALL removeEventListener( const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XEventListener >& aListener ) throw(::com::sun::star::uno::RuntimeException, std::exception);
133 :
134 : virtual ::com::sun::star::uno::Reference< ::com::sun::star::text::XTextRange > SAL_CALL getAnchor(void) throw( ::com::sun::star::uno::RuntimeException, std::exception );
135 :
136 : //XServiceInfo
137 : virtual OUString SAL_CALL getImplementationName(void) throw( ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
138 : virtual sal_Bool SAL_CALL supportsService(const OUString& ServiceName) throw( ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
139 : virtual ::com::sun::star::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames(void) throw( ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
140 :
141 : void attachToRange(const ::com::sun::star::uno::Reference< ::com::sun::star::text::XTextRange > & xTextRange)throw( ::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::uno::RuntimeException );
142 : void attach( const ::com::sun::star::uno::Reference< ::com::sun::star::text::XTextRange >& xTextRange ) throw(::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::uno::RuntimeException);
143 :
144 0 : SwFrmFmt* GetFrmFmt() const
145 : {
146 0 : return PTR_CAST ( SwFrmFmt, GetRegisteredIn() );
147 : }
148 0 : FlyCntType GetFlyCntType()const {return eType;}
149 :
150 0 : bool IsDescriptor() const {return bIsDescriptor;}
151 : void ResetDescriptor();
152 : //copy text from a given source PaM
153 : void SetSelection(SwPaM& rCopySource);
154 : static SW_DLLPUBLIC SdrObject *GetOrCreateSdrObject( SwFlyFrmFmt *pFmt );
155 : };
156 :
157 : typedef cppu::WeakImplHelper3
158 : <
159 : ::com::sun::star::text::XTextFrame,
160 : ::com::sun::star::container::XEnumerationAccess,
161 : ::com::sun::star::document::XEventsSupplier
162 : >
163 : SwXTextFrameBaseClass;
164 :
165 : class SwXTextFrame : public SwXTextFrameBaseClass,
166 : public SwXText,
167 : public SwXFrame
168 : {
169 : protected:
170 : virtual const SwStartNode *GetStartNode() const SAL_OVERRIDE;
171 :
172 : virtual ::com::sun::star::uno::Reference<
173 : ::com::sun::star::text::XTextCursor >
174 : CreateCursor()
175 : throw (::com::sun::star::uno::RuntimeException) SAL_OVERRIDE;
176 :
177 : virtual ~SwXTextFrame();
178 : public:
179 : SwXTextFrame(SwDoc *pDoc);
180 : SwXTextFrame(SwFrmFmt& rFmt);
181 :
182 : // FIXME: EVIL HACK: make available for SwXFrame::attachToRange
183 0 : void SetDoc(SwDoc *const pDoc) { SwXText::SetDoc(pDoc); };
184 :
185 : virtual ::com::sun::star::uno::Any SAL_CALL queryInterface( const ::com::sun::star::uno::Type& aType ) throw(::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
186 : virtual void SAL_CALL acquire( ) throw() SAL_OVERRIDE;
187 : virtual void SAL_CALL release( ) throw() SAL_OVERRIDE;
188 :
189 : //XTypeProvider
190 : virtual ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Type > SAL_CALL getTypes( ) throw(::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
191 : virtual ::com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId( ) throw(::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
192 :
193 : //XTextFrame
194 : virtual ::com::sun::star::uno::Reference< ::com::sun::star::text::XText > SAL_CALL getText(void) throw( ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
195 :
196 : //XText
197 : virtual ::com::sun::star::uno::Reference< ::com::sun::star::text::XTextCursor > SAL_CALL createTextCursor(void) throw( ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
198 : virtual ::com::sun::star::uno::Reference< ::com::sun::star::text::XTextCursor > SAL_CALL createTextCursorByRange(const ::com::sun::star::uno::Reference< ::com::sun::star::text::XTextRange > & aTextPosition) throw( ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
199 :
200 : //XEnumerationAccess - frueher XParagraphEnumerationAccess
201 : virtual ::com::sun::star::uno::Reference< ::com::sun::star::container::XEnumeration > SAL_CALL createEnumeration(void) throw( ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
202 :
203 : //XElementAccess
204 : virtual ::com::sun::star::uno::Type SAL_CALL getElementType( ) throw(::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
205 : virtual sal_Bool SAL_CALL hasElements( ) throw(::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
206 :
207 : //XTextContent
208 : virtual void SAL_CALL attach( const ::com::sun::star::uno::Reference< ::com::sun::star::text::XTextRange >& xTextRange ) throw(::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
209 : virtual ::com::sun::star::uno::Reference< ::com::sun::star::text::XTextRange > SAL_CALL getAnchor( ) throw(::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
210 :
211 : //XComponent
212 : virtual void SAL_CALL dispose( ) throw(::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
213 : virtual void SAL_CALL addEventListener( const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XEventListener >& xListener ) throw(::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
214 : virtual void SAL_CALL removeEventListener( const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XEventListener >& aListener ) throw(::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
215 :
216 : //XServiceInfo
217 : virtual OUString SAL_CALL getImplementationName(void) throw( ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
218 : virtual sal_Bool SAL_CALL supportsService(const OUString& ServiceName) throw( ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
219 : virtual ::com::sun::star::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames(void) throw( ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
220 :
221 : // XEventsSupplier
222 : virtual ::com::sun::star::uno::Reference< ::com::sun::star::container::XNameReplace > SAL_CALL getEvents( ) throw(::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
223 :
224 : //XUnoTunnel
225 : virtual sal_Int64 SAL_CALL getSomething( const ::com::sun::star::uno::Sequence< sal_Int8 >& aIdentifier ) throw(::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
226 :
227 : //XPropertySet
228 : virtual ::com::sun::star::uno::Any SAL_CALL getPropertyValue( const OUString& PropertyName ) throw(::com::sun::star::beans::UnknownPropertyException, ::com::sun::star::lang::WrappedTargetException, ::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
229 :
230 : void * SAL_CALL operator new( size_t ) throw();
231 : void SAL_CALL operator delete( void * ) throw();
232 : };
233 :
234 : typedef cppu::WeakImplHelper2
235 : <
236 : ::com::sun::star::text::XTextContent,
237 : ::com::sun::star::document::XEventsSupplier
238 : >
239 : SwXTextGraphicObjectBaseClass;
240 : class SwXTextGraphicObject : public SwXTextGraphicObjectBaseClass,
241 : public SwXFrame
242 : {
243 : protected:
244 : virtual ~SwXTextGraphicObject();
245 : public:
246 : SwXTextGraphicObject( SwDoc *pDoc );
247 : SwXTextGraphicObject(SwFrmFmt& rFmt);
248 :
249 : virtual ::com::sun::star::uno::Any SAL_CALL queryInterface( const ::com::sun::star::uno::Type& aType ) throw(::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
250 : virtual void SAL_CALL acquire( ) throw() SAL_OVERRIDE;
251 : virtual void SAL_CALL release( ) throw() SAL_OVERRIDE;
252 :
253 : //XTypeProvider
254 : virtual ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Type > SAL_CALL getTypes( ) throw(::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
255 : virtual ::com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId( ) throw(::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
256 :
257 : //XTextContent
258 : virtual void SAL_CALL attach(const ::com::sun::star::uno::Reference< ::com::sun::star::text::XTextRange > & xTextRange) throw( ::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
259 : virtual ::com::sun::star::uno::Reference< ::com::sun::star::text::XTextRange > SAL_CALL getAnchor(void) throw( ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
260 :
261 : //XComponent
262 : virtual void SAL_CALL dispose(void) throw( ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
263 : virtual void SAL_CALL addEventListener(const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XEventListener > & aListener) throw( ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
264 : virtual void SAL_CALL removeEventListener(const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XEventListener > & aListener) throw( ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
265 :
266 : //XServiceInfo
267 : virtual OUString SAL_CALL getImplementationName(void) throw( ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
268 : virtual sal_Bool SAL_CALL supportsService(const OUString& ServiceName) throw( ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
269 : virtual ::com::sun::star::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames(void) throw( ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
270 :
271 : // XEventsSupplier
272 : virtual ::com::sun::star::uno::Reference< ::com::sun::star::container::XNameReplace > SAL_CALL getEvents( ) throw(::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
273 : void * SAL_CALL operator new( size_t ) throw();
274 : void SAL_CALL operator delete( void * ) throw();
275 : };
276 :
277 : class SwOLENode;
278 : typedef cppu::WeakImplHelper3
279 : <
280 : ::com::sun::star::text::XTextContent,
281 : ::com::sun::star::document::XEmbeddedObjectSupplier2,
282 : ::com::sun::star::document::XEventsSupplier
283 : >SwXTextEmbeddedObjectBaseClass;
284 :
285 : class SwXTextEmbeddedObject : public SwXTextEmbeddedObjectBaseClass,
286 : public SwXFrame
287 : {
288 : protected:
289 : virtual ~SwXTextEmbeddedObject();
290 :
291 : public:
292 : SwXTextEmbeddedObject( SwDoc *pDoc );
293 : SwXTextEmbeddedObject(SwFrmFmt& rFmt);
294 :
295 : virtual ::com::sun::star::uno::Any SAL_CALL queryInterface( const ::com::sun::star::uno::Type& aType ) throw(::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
296 : virtual void SAL_CALL acquire( ) throw() SAL_OVERRIDE;
297 : virtual void SAL_CALL release( ) throw() SAL_OVERRIDE;
298 :
299 : //XTypeProvider
300 : virtual ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Type > SAL_CALL getTypes( ) throw(::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
301 : virtual ::com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId( ) throw(::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
302 :
303 : //XTextContent
304 : virtual void SAL_CALL attach(const ::com::sun::star::uno::Reference< ::com::sun::star::text::XTextRange > & xTextRange) throw( ::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
305 : virtual ::com::sun::star::uno::Reference< ::com::sun::star::text::XTextRange > SAL_CALL getAnchor(void) throw( ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
306 :
307 : //XComponent
308 : virtual void SAL_CALL dispose(void) throw( ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
309 : virtual void SAL_CALL addEventListener(const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XEventListener > & aListener) throw( ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
310 : virtual void SAL_CALL removeEventListener(const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XEventListener > & aListener) throw( ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
311 :
312 : //XEmbeddedObjectSupplier2
313 : virtual ::com::sun::star::uno::Reference< ::com::sun::star::lang::XComponent > SAL_CALL getEmbeddedObject(void) throw( ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
314 : virtual ::com::sun::star::uno::Reference< ::com::sun::star::embed::XEmbeddedObject > SAL_CALL getExtendedControlOverEmbeddedObject(void) throw( ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
315 : virtual ::sal_Int64 SAL_CALL getAspect() throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
316 : virtual void SAL_CALL setAspect( ::sal_Int64 _aspect ) throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
317 : virtual ::com::sun::star::uno::Reference< ::com::sun::star::graphic::XGraphic > SAL_CALL getReplacementGraphic() throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
318 :
319 : //XServiceInfo
320 : virtual OUString SAL_CALL getImplementationName(void) throw( ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
321 : virtual sal_Bool SAL_CALL supportsService(const OUString& ServiceName) throw( ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
322 : virtual ::com::sun::star::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames(void) throw( ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
323 :
324 : // XEventsSupplier
325 : virtual ::com::sun::star::uno::Reference< ::com::sun::star::container::XNameReplace > SAL_CALL getEvents( ) throw(::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
326 : void * SAL_CALL operator new( size_t ) throw();
327 : void SAL_CALL operator delete( void * ) throw();
328 : };
329 :
330 : class SwXOLEListener : public cppu::WeakImplHelper1
331 : <
332 : ::com::sun::star::util::XModifyListener
333 : >,
334 : public SwClient
335 : {
336 : ::com::sun::star::uno::Reference< ::com::sun::star::frame::XModel > xOLEModel;
337 :
338 0 : SwFmt* GetFmt() const { return (SwFmt*)GetRegisteredIn(); }
339 : public:
340 : SwXOLEListener(SwFmt& rOLEFmt, ::com::sun::star::uno::Reference< ::com::sun::star::frame::XModel > xOLE);
341 : virtual ~SwXOLEListener();
342 : TYPEINFO_OVERRIDE();
343 :
344 : // ::com::sun::star::lang::XEventListener
345 : virtual void SAL_CALL disposing( const ::com::sun::star::lang::EventObject& Source ) throw(::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
346 :
347 : // ::com::sun::star::util::XModifyListener
348 : virtual void SAL_CALL modified( const ::com::sun::star::lang::EventObject& aEvent ) throw(::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
349 :
350 : protected:
351 : virtual void Modify( const SfxPoolItem* pOld, const SfxPoolItem *pNew) SAL_OVERRIDE;
352 : };
353 :
354 : #endif
355 :
356 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|