Kaydet (Commit) 7fec8dfc authored tarafından David Tardon's avatar David Tardon

fdo#56267, fdo#56980 propagate shape change to subclasses

It turns out (as witnessed by fdo#56267) that my fix for fdo#56980 only
cured the symptom, not the cause. The real problem is caused by the
following sequence of events during ODF import:

1) an SvxCustomShape object is created (XShape iface)
2) an SdrObjCustomShape object is created for the SvxCustomShape, but it
   is not associated with it (yet)
3) another SvxCustomShape object is created internally by the
   SdrObjCustomShape and they are associated
4) an EnhancedCustomShapeEngine is created for this SvxCustomShape by
   SdrObjCustomShape
5) the SvxCustomShape from point 1 is set to the SdrObjCustomShape

At some point (I did not follow this explicitly) the SvxCustomShape
cached by the EnhancedCustomShapeEngine loses its (weak) reference to
the SdrObjCustomShape. This leaves it gutted and all subsequent calls to
render() return an empty XShape.

The solution is simple: let SdrObjCustomShape know that the associated
UNO shape has changed, so it can drop the custom shape engine.

Change-Id: I267838ea4857dfcd646f40c811f3ae572237a1e6
üst c3fed9f4
......@@ -83,6 +83,7 @@ private:
protected:
virtual sdr::contact::ViewContact* CreateObjectSpecificViewContact();
virtual void impl_setUnoShape(const com::sun::star::uno::Reference<com::sun::star::uno::XInterface>& rxUnoShape);
public:
virtual sdr::properties::BaseProperties* CreateObjectSpecificProperties();
......
......@@ -989,7 +989,14 @@ public:
static SdrObject* getSdrObjectFromXShape( const ::com::sun::star::uno::Reference< ::com::sun::star::uno::XInterface >& xInt );
// setting the UNO representation is allowed for the UNO representation itself only!
/** Sets a new UNO representation of the shape
*
* This is only a public interface function. The actual work is
* done by impl_setUnoShape().
*
* Calling this function is only allowed for the UNO representation
* itself!
*/
void setUnoShape(
const com::sun::star::uno::Reference<
com::sun::star::uno::XInterface>& _rxUnoShape);
......@@ -1045,7 +1052,17 @@ public:
void SetBLIPSizeRectangle( const Rectangle& aRect );
protected:
void impl_setUnoShape( const ::com::sun::star::uno::Reference< ::com::sun::star::uno::XInterface >& _rxUnoShape );
/** Sets a new UNO shape
*
* The default implementation of this function sets the new UNO
* shape. Derived classes should override the function to handle
* any other actions that are needed when the shape is being
* changed.
*
* The implementation _must_ call the same method of its parent
* class (preferably as the first step)!
*/
virtual void impl_setUnoShape( const ::com::sun::star::uno::Reference< ::com::sun::star::uno::XInterface >& _rxUnoShape );
/**
Helper function for reimplementing Clone().
......
......@@ -3211,9 +3211,17 @@ bool SdrObjCustomShape::doConstructOrthogonal(const ::rtl::OUString& rName)
void SdrObjCustomShape::InvalidateRenderGeometry()
{
mXRenderedCustomShape = 0L;
mxCustomShapeEngine = 0L;
SdrObject::Free( mpLastShadowGeometry );
mpLastShadowGeometry = 0L;
}
void SdrObjCustomShape::impl_setUnoShape(const uno::Reference<uno::XInterface>& rxUnoShape)
{
SdrTextObj::impl_setUnoShape(rxUnoShape);
// The shape engine is created with _current_ shape. This means we
// _must_ reset it when the shape changes.
mxCustomShapeEngine.set(0);
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment