summaryrefslogtreecommitdiff
path: root/xmloff/source/draw/shapeexport2.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'xmloff/source/draw/shapeexport2.cxx')
-rw-r--r--xmloff/source/draw/shapeexport2.cxx51
1 files changed, 0 insertions, 51 deletions
diff --git a/xmloff/source/draw/shapeexport2.cxx b/xmloff/source/draw/shapeexport2.cxx
index a55d70b57be2..f9071211b1e1 100644
--- a/xmloff/source/draw/shapeexport2.cxx
+++ b/xmloff/source/draw/shapeexport2.cxx
@@ -53,13 +53,9 @@
#include <basegfx/matrix/b2dhommatrix.hxx>
#include <basegfx/tuple/b2dtuple.hxx>
-
using namespace ::com::sun::star;
using namespace ::xmloff::token;
-
-//////////////////////////////////////////////////////////////////////////////
-
void XMLShapeExport::ImpExportNewTrans(const uno::Reference< beans::XPropertySet >& xPropSet,
sal_Int32 nFeatures, awt::Point* pRefPoint)
{
@@ -222,8 +218,6 @@ void XMLShapeExport::ImpExportNewTrans_FeaturesAndWrite(::basegfx::B2DTuple& rTR
}
}
-//////////////////////////////////////////////////////////////////////////////
-
sal_Bool XMLShapeExport::ImpExportPresentationAttributes( const uno::Reference< beans::XPropertySet >& xPropSet, const OUString& rClass )
{
sal_Bool bIsEmpty = sal_False;
@@ -257,8 +251,6 @@ sal_Bool XMLShapeExport::ImpExportPresentationAttributes( const uno::Reference<
return bIsEmpty;
}
-//////////////////////////////////////////////////////////////////////////////
-
void XMLShapeExport::ImpExportText( const uno::Reference< drawing::XShape >& xShape )
{
uno::Reference< text::XText > xText( xShape, uno::UNO_QUERY );
@@ -270,7 +262,6 @@ void XMLShapeExport::ImpExportText( const uno::Reference< drawing::XShape >& xSh
}
}
-//////////////////////////////////////////////////////////////////////////////
#include <com/sun/star/presentation/ClickAction.hpp>
#include <com/sun/star/presentation/AnimationSpeed.hpp>
@@ -303,8 +294,6 @@ void XMLShapeExport::ImpExportEvents( const uno::Reference< drawing::XShape >& x
sal_Int32 nFound = 0;
- // extract properties from "OnClick" event --------------------------------
-
OUString aClickEventType;
presentation::ClickAction eClickAction = presentation::ClickAction_NONE;
presentation::AnimationEffect eEffect = presentation::AnimationEffect_NONE;
@@ -547,8 +536,6 @@ void XMLShapeExport::ImpExportEvents( const uno::Reference< drawing::XShape >& x
}
}
-//////////////////////////////////////////////////////////////////////////////
-
/** #i68101# export shape Title and Description */
void XMLShapeExport::ImpExportDescription( const uno::Reference< drawing::XShape >& xShape )
{
@@ -579,8 +566,6 @@ void XMLShapeExport::ImpExportDescription( const uno::Reference< drawing::XShape
}
}
-//////////////////////////////////////////////////////////////////////////////
-
void XMLShapeExport::ImpExportGroupShape( const uno::Reference< drawing::XShape >& xShape, XmlShapeType, sal_Int32 nFeatures, awt::Point* pRefPoint)
{
uno::Reference< drawing::XShapes > xShapes(xShape, uno::UNO_QUERY);
@@ -611,8 +596,6 @@ void XMLShapeExport::ImpExportGroupShape( const uno::Reference< drawing::XShape
}
}
-//////////////////////////////////////////////////////////////////////////////
-
void XMLShapeExport::ImpExportTextBoxShape(
const uno::Reference< drawing::XShape >& xShape,
XmlShapeType eShapeType, sal_Int32 nFeatures, awt::Point* pRefPoint)
@@ -687,7 +670,6 @@ void XMLShapeExport::ImpExportTextBoxShape(
if(bIsPresShape)
bIsEmptyPresObj = ImpExportPresentationAttributes( xPropSet, aStr );
-
sal_Bool bCreateNewline( (nFeatures & SEF_EXPORT_NO_WS) == 0 ); // #86116#/#92210#
SvXMLElementExport aElem( mrExport, XML_NAMESPACE_DRAW,
XML_FRAME, bCreateNewline, sal_True );
@@ -716,8 +698,6 @@ void XMLShapeExport::ImpExportTextBoxShape(
}
}
-//////////////////////////////////////////////////////////////////////////////
-
void XMLShapeExport::ImpExportRectangleShape(
const uno::Reference< drawing::XShape >& xShape,
XmlShapeType, sal_Int32 nFeatures, com::sun::star::awt::Point* pRefPoint)
@@ -750,8 +730,6 @@ void XMLShapeExport::ImpExportRectangleShape(
}
}
-//////////////////////////////////////////////////////////////////////////////
-
void XMLShapeExport::ImpExportLineShape(
const uno::Reference< drawing::XShape >& xShape,
XmlShapeType, sal_Int32 nFeatures, awt::Point* pRefPoint)
@@ -864,8 +842,6 @@ void XMLShapeExport::ImpExportLineShape(
}
}
-//////////////////////////////////////////////////////////////////////////////
-
void XMLShapeExport::ImpExportEllipseShape(
const uno::Reference< drawing::XShape >& xShape,
XmlShapeType, sal_Int32 nFeatures, awt::Point* pRefPoint)
@@ -933,8 +909,6 @@ void XMLShapeExport::ImpExportEllipseShape(
}
}
-//////////////////////////////////////////////////////////////////////////////
-
void XMLShapeExport::ImpExportPolygonShape(
const uno::Reference< drawing::XShape >& xShape,
XmlShapeType eShapeType, sal_Int32 nFeatures, awt::Point* pRefPoint)
@@ -1081,8 +1055,6 @@ void XMLShapeExport::ImpExportPolygonShape(
}
}
-//////////////////////////////////////////////////////////////////////////////
-
void XMLShapeExport::ImpExportGraphicObjectShape(
const uno::Reference< drawing::XShape >& xShape,
XmlShapeType eShapeType, sal_Int32 nFeatures, awt::Point* pRefPoint)
@@ -1212,8 +1184,6 @@ void XMLShapeExport::ImpExportGraphicObjectShape(
}
}
-//////////////////////////////////////////////////////////////////////////////
-
void XMLShapeExport::ImpExportChartShape(
const uno::Reference< drawing::XShape >& xShape,
XmlShapeType eShapeType, sal_Int32 nFeatures, awt::Point* pRefPoint,
@@ -1222,8 +1192,6 @@ void XMLShapeExport::ImpExportChartShape(
ImpExportOLE2Shape( xShape, eShapeType, nFeatures, pRefPoint, pAttrList );
}
-//////////////////////////////////////////////////////////////////////////////
-
void XMLShapeExport::ImpExportControlShape(
const uno::Reference< drawing::XShape >& xShape,
XmlShapeType, sal_Int32 nFeatures, awt::Point* pRefPoint)
@@ -1253,8 +1221,6 @@ void XMLShapeExport::ImpExportControlShape(
ImpExportDescription( xShape ); // #i68101#
}
-//////////////////////////////////////////////////////////////////////////////
-
void XMLShapeExport::ImpExportConnectorShape(
const uno::Reference< drawing::XShape >& xShape,
XmlShapeType, sal_Int32 nFeatures /* = SEF_DEFAULT */, awt::Point* pRefPoint /* = NULL */)
@@ -1489,8 +1455,6 @@ void XMLShapeExport::ImpExportConnectorShape(
ImpExportText( xShape );
}
-//////////////////////////////////////////////////////////////////////////////
-
void XMLShapeExport::ImpExportMeasureShape(
const uno::Reference< drawing::XShape >& xShape,
XmlShapeType, sal_Int32 nFeatures /* = SEF_DEFAULT */, awt::Point* pRefPoint /* = NULL */)
@@ -1588,8 +1552,6 @@ void XMLShapeExport::ImpExportMeasureShape(
mrExport.GetTextParagraphExport()->exportText( xText );
}
-//////////////////////////////////////////////////////////////////////////////
-
void XMLShapeExport::ImpExportOLE2Shape(
const uno::Reference< drawing::XShape >& xShape,
XmlShapeType eShapeType, sal_Int32 nFeatures /* = SEF_DEFAULT */, awt::Point* pRefPoint /* = NULL */,
@@ -1748,8 +1710,6 @@ void XMLShapeExport::ImpExportOLE2Shape(
}
}
-//////////////////////////////////////////////////////////////////////////////
-
void XMLShapeExport::ImpExportPageShape(
const uno::Reference< drawing::XShape >& xShape,
XmlShapeType eShapeType, sal_Int32 nFeatures /* = SEF_DEFAULT */, awt::Point* pRefPoint /* = NULL */)
@@ -1786,8 +1746,6 @@ void XMLShapeExport::ImpExportPageShape(
}
}
-//////////////////////////////////////////////////////////////////////////////
-
void XMLShapeExport::ImpExportCaptionShape(
const uno::Reference< drawing::XShape >& xShape,
XmlShapeType, sal_Int32 nFeatures /* = SEF_DEFAULT */, awt::Point* pRefPoint /* = NULL */)
@@ -1838,8 +1796,6 @@ void XMLShapeExport::ImpExportCaptionShape(
}
}
-//////////////////////////////////////////////////////////////////////////////
-
void XMLShapeExport::ImpExportFrameShape(
const uno::Reference< drawing::XShape >& xShape,
XmlShapeType, sal_Int32 nFeatures, com::sun::star::awt::Point* pRefPoint)
@@ -1874,8 +1830,6 @@ void XMLShapeExport::ImpExportFrameShape(
}
}
-//////////////////////////////////////////////////////////////////////////////
-
void XMLShapeExport::ImpExportAppletShape(
const uno::Reference< drawing::XShape >& xShape,
XmlShapeType, sal_Int32 nFeatures, com::sun::star::awt::Point* pRefPoint)
@@ -1931,8 +1885,6 @@ void XMLShapeExport::ImpExportAppletShape(
}
}
-//////////////////////////////////////////////////////////////////////////////
-
void XMLShapeExport::ImpExportPluginShape(
const uno::Reference< drawing::XShape >& xShape,
XmlShapeType, sal_Int32 nFeatures, com::sun::star::awt::Point* pRefPoint)
@@ -1955,7 +1907,6 @@ void XMLShapeExport::ImpExportPluginShape(
mrExport.AddAttribute ( XML_NAMESPACE_XLINK, XML_SHOW, XML_EMBED );
mrExport.AddAttribute ( XML_NAMESPACE_XLINK, XML_ACTUATE, XML_ONLOAD );
-
// export mime-type
xPropSet->getPropertyValue("PluginMimeType") >>= aStr;
if(!aStr.isEmpty())
@@ -1980,8 +1931,6 @@ void XMLShapeExport::ImpExportPluginShape(
}
}
-//////////////////////////////////////////////////////////////////////////////
-
static void lcl_CopyStream(
uno::Reference<io::XInputStream> const& xInStream,
uno::Reference<embed::XStorage> const& xTarget,