diff options
author | Zolnai Tamás <tamas.zolnai@collabora.com> | 2014-01-27 12:07:59 +0100 |
---|---|---|
committer | Zolnai Tamás <tamas.zolnai@collabora.com> | 2014-01-30 09:17:28 +0100 |
commit | 4fa88a5a636e133a6d3fa4269db2c7f52d89bc75 (patch) | |
tree | ce301e22936fb961c418eea7c6b3d0489607f50f /include/oox/export/drawingml.hxx | |
parent | 7abec64c676e6b1a8f7c005a9f4b2c710b69473d (diff) |
drawingML export: transparency of solid filled shape
Change-Id: I97968dd5f5233e17870bdfdf2864ae8ce9179080
Diffstat (limited to 'include/oox/export/drawingml.hxx')
-rw-r--r-- | include/oox/export/drawingml.hxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/oox/export/drawingml.hxx b/include/oox/export/drawingml.hxx index 445e895875fb..000cd4e81302 100644 --- a/include/oox/export/drawingml.hxx +++ b/include/oox/export/drawingml.hxx @@ -115,13 +115,13 @@ public: OUString WriteImage( const Graphic &rGraphic ); - void WriteColor( sal_uInt32 nColor ); + void WriteColor( sal_uInt32 nColor, sal_Int32 nAlpha = 0 ); void WriteGradientStop( sal_uInt16 nStop, sal_uInt32 nColor ); void WriteLineArrow( ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySet > rXPropSet, sal_Bool bLineStart ); void WriteConnectorConnections( EscherConnectorListEntry& rConnectorEntry, sal_Int32 nStartID, sal_Int32 nEndID ); - void WriteSolidFill( sal_uInt32 nColor ); - void WriteSolidFill( OUString sSchemeName ); + void WriteSolidFill( sal_uInt32 nColor, sal_Int32 nAlpha = 0 ); + void WriteSolidFill( OUString sSchemeName, sal_Int32 nAlpha = 0 ); void WriteSolidFill( ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySet > rXPropSet ); void WriteGradientFill( ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySet > rXPropSet ); void WriteBlipFill( ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySet > rXPropSet, OUString sURLPropName, sal_Int32 nXmlNamespace ); |