Kaydet (Commit) be894514 authored tarafından Artur Dorda's avatar Artur Dorda Kaydeden (comit) Markus Mohrhard

Started dumping of EnhancedCustomShapePath service

Change-Id: I11ded0e19f4a9f619546af2ff838ad7aeadd7429
üst 3ab020c1
...@@ -117,6 +117,9 @@ public: ...@@ -117,6 +117,9 @@ public:
void dumpRadiusRangeMinimumAsElement(com::sun::star::drawing::EnhancedCustomShapeParameter aRadiusRangeMinimum); void dumpRadiusRangeMinimumAsElement(com::sun::star::drawing::EnhancedCustomShapeParameter aRadiusRangeMinimum);
void dumpRadiusRangeMaximumAsElement(com::sun::star::drawing::EnhancedCustomShapeParameter aRadiusRangeMaximum); void dumpRadiusRangeMaximumAsElement(com::sun::star::drawing::EnhancedCustomShapeParameter aRadiusRangeMaximum);
// EnhancedCustomShapePath.idl
void dumpEnhancedCustomShapePathService(com::sun::star::uno::Reference< com::sun::star::beans::XPropertySet > xPropSet);
private: private:
xmlTextWriterPtr xmlWriter; xmlTextWriterPtr xmlWriter;
}; };
......
...@@ -811,3 +811,11 @@ void EnhancedShapeDumper::dumpRadiusRangeMaximumAsElement(drawing::EnhancedCusto ...@@ -811,3 +811,11 @@ void EnhancedShapeDumper::dumpRadiusRangeMaximumAsElement(drawing::EnhancedCusto
xmlTextWriterEndElement( xmlWriter ); xmlTextWriterEndElement( xmlWriter );
} }
// ------------------------------------------------------
// ---------- EnhancedCustomShapePath.idl ---------------
// ------------------------------------------------------
void EnhancedShapeDumper::dumpEnhancedCustomShapePathService(uno::Reference< beans::XPropertySet > xPropSet)
{
}
...@@ -1828,6 +1828,11 @@ namespace { ...@@ -1828,6 +1828,11 @@ namespace {
EnhancedShapeDumper enhancedDumper(xmlWriter); EnhancedShapeDumper enhancedDumper(xmlWriter);
enhancedDumper.dumpEnhancedCustomShapeHandleService(xPropSet); enhancedDumper.dumpEnhancedCustomShapeHandleService(xPropSet);
} }
if(xServiceInfo->supportsService("com.sun.star.drawing.EnhancedCustomShapePath"))
{
EnhancedShapeDumper enhancedDumper(xmlWriter);
enhancedDumper.dumpEnhancedCustomShapePathService(xPropSet);
}
} // end of the 'try' block } // end of the 'try' block
catch (com::sun::star::beans::UnknownPropertyException &e) catch (com::sun::star::beans::UnknownPropertyException &e)
{ {
......
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