/aoo41x/main/sc/source/filter/xml/ |
H A D | XMLTableShapeResizer.cxx | 243 if(xShapeProps.is()) in ResizeShapes() 268 … xShapeProps->getPropertyValue(sEndPosition) >>= aEndPoint; in ResizeShapes() 276 … xShapeProps->getPropertyValue(sStartPosition) >>= aStartPoint; in ResizeShapes() 281 … xShapeProps->setPropertyValue(sProperty, uno::makeAny(aPoint)); in ResizeShapes() 304 uno::Reference< beans::XPropertySet > xShapeProps(aItr->xShape, uno::UNO_QUERY); in ResizeShapes() local 305 if (xShapeProps.is()) in ResizeShapes() 309 xShapeProps->getPropertyValue( sCaptionPoint ) >>= aCaptionPoint; in ResizeShapes() 364 uno::Reference < beans::XPropertySet > xShapeProps ( aItr->xShape, uno::UNO_QUERY ); in ResizeShapes() local 365 uno::Reference < beans::XPropertySetInfo > xShapeInfo(xShapeProps->getPropertySetInfo()); in ResizeShapes() 367 if (xShapeProps.is() && xShapeInfo.is() && xShapeInfo->hasPropertyByName(sPersistName) && in ResizeShapes() [all …]
|
H A D | xmlexprt.cxx | 3057 uno::Reference < beans::XPropertySet > xShapeProps ( xShape, uno::UNO_QUERY ); in ExportShape() local 3063 if (xShapeProps.is()) in ExportShape() 3066 …if (xShapeProps->getPropertyValue(rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("ZOrder"))) >>= nZOrde… in ExportShape() 3072 uno::Reference< beans::XPropertySetInfo > xPropSetInfo = xShapeProps->getPropertySetInfo(); in ExportShape() 3076 if (xShapeProps->getPropertyValue( sPropCLSID ) >>= sCLSID) in ExportShape() 3085 xShapeProps->getPropertyValue( sPersistName ) >>= aChartName; in ExportShape() 3118 if( ( xShapeProps->getPropertyValue( sPropModel ) >>= xChartModel ) && in ExportShape()
|
/aoo41x/main/odk/examples/DevelopersGuide/FirstSteps/ |
H A D | HelloTextTableShape.java | 145 XPropertySet xShapeProps = (XPropertySet)UnoRuntime.queryInterface( in useWriter() local 148 xShapeProps.setPropertyValue("TextContourFrame", new Boolean(true)); in useWriter() 255 XPropertySet xShapeProps = (XPropertySet)UnoRuntime.queryInterface( in useCalc() local 258 xShapeProps.setPropertyValue("TextContourFrame", new Boolean(true)); in useCalc() 301 XPropertySet xShapeProps = (XPropertySet)UnoRuntime.queryInterface( in useDraw() local 413 xShapeProps.setPropertyValue("FillColor", new Integer(0x99CCFF)); in manipulateShape() 414 xShapeProps.setPropertyValue("LineColor", new Integer(0x000099)); in manipulateShape() 415 xShapeProps.setPropertyValue("RotateAngle", new Integer(3000)); in manipulateShape() 417 xShapeProps.setPropertyValue("TextLeftDistance", new Integer(0)); in manipulateShape() 418 xShapeProps.setPropertyValue("TextRightDistance", new Integer(0)); in manipulateShape() [all …]
|
/aoo41x/main/oox/source/export/ |
H A D | shapes.cxx | 603 Reference< XPropertySet > xShapeProps( xShape, UNO_QUERY ); in WriteGraphicObjectShape() local 604 … if( !xShapeProps.is() || !( xShapeProps->getPropertyValue( S( "GraphicURL" ) ) >>= sGraphicURL ) ) in WriteGraphicObjectShape() 736 Reference< XPropertySet > xShapeProps( xShape, UNO_QUERY ); in WriteConnectorShape() local 737 if( xShapeProps.is() ) in WriteConnectorShape() 738 WriteOutline( xShapeProps ); in WriteConnectorShape() 783 Reference< XPropertySet > xShapeProps( xShape, UNO_QUERY ); in WriteLineShape() local 784 if( xShapeProps.is() ) in WriteLineShape() 785 WriteOutline( xShapeProps ); in WriteLineShape() 822 Reference< XPropertySet > xShapeProps( xShape, UNO_QUERY ); in WriteRectangleShape() local 823 if( xShapeProps.is() ) in WriteRectangleShape() [all …]
|
/aoo41x/main/vbahelper/source/vbahelper/ |
H A D | vbashapes.cxx | 390 uno::Reference< beans::XPropertySet > xShapeProps( xShape, uno::UNO_QUERY_THROW ); in AddTextboxInWriter() local 391 …xShapeProps->setPropertyValue( rtl::OUString::createFromAscii( "AnchorType" ), uno::makeAny( text:… in AddTextboxInWriter() 392 …xShapeProps->setPropertyValue( rtl::OUString::createFromAscii( "HoriOrientRelation" ), uno::makeAn… in AddTextboxInWriter() 393 …xShapeProps->setPropertyValue( rtl::OUString::createFromAscii( "HoriOrient" ), uno::makeAny( text:… in AddTextboxInWriter() 394 …xShapeProps->setPropertyValue( rtl::OUString::createFromAscii( "HoriOrientPosition" ), uno::makeAn… in AddTextboxInWriter() 396 …xShapeProps->setPropertyValue( rtl::OUString::createFromAscii( "VertOrientRelation" ), uno::makeAn… in AddTextboxInWriter() 397 …xShapeProps->setPropertyValue( rtl::OUString::createFromAscii( "VertOrient" ), uno::makeAny( text:… in AddTextboxInWriter() 398 …xShapeProps->setPropertyValue( rtl::OUString::createFromAscii( "VertOrientPosition" ), uno::makeAn… in AddTextboxInWriter() 402 …xShapeProps->setPropertyValue( rtl::OUString::createFromAscii( "LineStyle" ), uno::makeAny( aLineS… in AddTextboxInWriter() 406 …xShapeProps->setPropertyValue( rtl::OUString::createFromAscii( "LayerID" ), uno::makeAny( nLayerId… in AddTextboxInWriter() [all …]
|
/aoo41x/main/embeddedobj/qa/embedding/ |
H A D | Test01.java | 114 …XPropertySet xShapeProps = ( XPropertySet ) UnoRuntime.queryInterface( XPropertySet.class, oShape … in test() local 115 if ( xShapeProps == null ) in test() 122 xShapeProps.setPropertyValue( "CLSID", "078B7ABA-54FC-457F-8551-6147e776a997" ); in test() 124 Object oEmbObj = xShapeProps.getPropertyValue( "EmbeddedObject" ); in test() 139 Object oReplacement = xShapeProps.getPropertyValue( "Graphic" ); in test()
|
/aoo41x/main/writerfilter/source/dmapper/ |
H A D | OLEHandler.cxx | 117 … uno::Reference< beans::XPropertySet > xShapeProps( xTempShape, uno::UNO_QUERY_THROW ); in lcl_attribute() local 120 … xShapeProps->getPropertyValue( rNameSupplier.GetName( PROP_BITMAP ) ) >>= m_xReplacement; in lcl_attribute() 122 xShapeProps->setPropertyValue( in lcl_attribute() 169 … uno::Reference< beans::XPropertySet > xShapeProps( m_xShape, uno::UNO_QUERY_THROW ); in lcl_sprm() local 172 xShapeProps->setPropertyValue( in lcl_sprm()
|
H A D | FormControlHelper.cxx | 278 uno::Reference<beans::XPropertySet> xShapeProps(xShape, uno::UNO_QUERY); in insertControl() local 284 xShapeProps->setPropertyValue(sAnchorType, aAny); in insertControl() 289 xShapeProps->setPropertyValue(sVertOrient, aAny); in insertControl() 294 xShapeProps->setPropertyValue(sTextRange, aAny); in insertControl()
|
H A D | GraphicImport.cxx | 1067 uno::Reference< beans::XPropertySet > xShapeProps in lcl_attribute() local 1071 … xShapeProps->getPropertyValue( rtl::OUString::createFromAscii( "GraphicURL" ) ) >>= sUrl; in lcl_attribute() 1116 uno::Reference< beans::XPropertySet > xShapeProps in lcl_attribute() local 1122 xShapeProps->setPropertyValue in lcl_attribute() 1126 xShapeProps->setPropertyValue in lcl_attribute()
|
/aoo41x/main/qadevOOo/tests/java/mod/_sd/ |
H A D | SdXImpressDocument.java | 150 … XPropertySet xShapeProps = (XPropertySet) UnoRuntime.queryInterface(XPropertySet.class, aShape); in createTestEnvironment() local 153 xShapeProps.setPropertyValue("FillStyle", com.sun.star.drawing.FillStyle.SOLID); in createTestEnvironment() 154 xShapeProps.setPropertyValue("FillTransparence", new Integer(50)); in createTestEnvironment()
|
/aoo41x/main/odk/examples/DevelopersGuide/Forms/ |
H A D | FormLayer.java | 109 XPropertySet xShapeProps = UNO.queryPropertySet( xShape ); in createControlAndShape() local 111 xShapeProps.setPropertyValue( "AnchorType", eAnchorType ); in createControlAndShape()
|
/aoo41x/main/forms/qa/integration/forms/ |
H A D | FormLayer.java | 105 XPropertySet xShapeProps = dbfTools.queryPropertySet( xShape ); in createControlAndShape() local 107 xShapeProps.setPropertyValue( "AnchorType", eAnchorType ); in createControlAndShape()
|
/aoo41x/main/sw/source/core/unocore/ |
H A D | unodraw.cxx | 1967 uno::Reference< beans::XPropertySet > xShapeProps; in addPropertyChangeListener() local 1968 if ( xShapeAgg->queryAggregation( beans::XPropertySet::static_type() ) >>= xShapeProps ) in addPropertyChangeListener() 1969 xShapeProps->addPropertyChangeListener( _propertyName, _listener ); in addPropertyChangeListener() 1982 uno::Reference< beans::XPropertySet > xShapeProps; in removePropertyChangeListener() local 1983 if ( xShapeAgg->queryAggregation( beans::XPropertySet::static_type() ) >>= xShapeProps ) in removePropertyChangeListener() 1984 xShapeProps->removePropertyChangeListener( _propertyName, _listener ); in removePropertyChangeListener()
|
/aoo41x/main/sd/source/filter/eppt/ |
H A D | epptso.cxx | 4575 xShapeProps( mXShape, ::com::sun::star::uno::UNO_QUERY_THROW ); in ImplWritePage() 4576 …xShapeProps->getPropertyValue( ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "Aspect" ) ) ) >>= nA… in ImplWritePage() 5152 xShapeProps( mXShape, ::com::sun::star::uno::UNO_QUERY_THROW ); in ImplWritePage() 5153 …xShapeProps->getPropertyValue( ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "Aspect" ) ) ) >>= nA… in ImplWritePage()
|