Home
last modified time | relevance | path

Searched refs:xShape (Results 26 – 50 of 310) sorted by relevance

12345678910>>...13

/aoo41x/main/slideshow/source/engine/slide/
H A Dshapemanagerimpl.cxx171 uno::Reference<drawing::XShape> const xShape( in handleMouseReleased() local
178 boost::cref(xShape), in handleMouseReleased()
299 return mpLayerManager->lookupShape(xShape); in lookupShape()
332 const uno::Reference<drawing::XShape>& xShape ) in listenerAdded() argument
335 if( (aIter = mrGlobalListenersMap.find( xShape )) == in listenerAdded()
344 ShapeSharedPtr pShape( lookupShape(xShape) ); in listenerAdded()
358 const uno::Reference<drawing::XShape>& xShape ) in listenerRemoved() argument
362 if( mrGlobalListenersMap.find(xShape) == mrGlobalListenersMap.end() ) in listenerRemoved()
365 ShapeSharedPtr pShape( lookupShape(xShape) ); in listenerRemoved()
376 ShapeSharedPtr pShape( lookupShape(xShape) ); in cursorChanged()
[all …]
/aoo41x/main/sc/source/filter/xml/
H A DXMLTableShapeResizer.cxx120 aShape.xShape.set(rShape); in AddShape()
233 awt::Point aPoint(aItr->xShape->getPosition()); in ResizeShapes()
234 awt::Size aSize(aItr->xShape->getSize()); in ResizeShapes()
251 aItr->xShape->setPosition(aPoint); in ResizeShapes()
254 aItr->xShape->setSize(aSize); in ResizeShapes()
291 aItr->xShape->setPosition(aPoint); in ResizeShapes()
294 aItr->xShape->setSize(aSize); in ResizeShapes()
299 if (aItr->xShape->getShapeType().equals(sCaptionShape)) in ResizeShapes()
333 aItr->xShape->setPosition(aPoint); in ResizeShapes()
349 aItr->xShape->setPosition(aPoint); in ResizeShapes()
[all …]
/aoo41x/main/oox/source/xls/
H A Ddrawingmanager.cxx511 Reference< XShape > xShape; in convertAndInsert() local
531 return xShape; in convertAndInsert()
1069 return xShape; in implConvertAndInsert()
1120 return xShape; in implConvertAndInsert()
1138 return xShape; in implConvertAndInsert()
1202 return xShape; in implConvertAndInsert()
1253 Reference< XShape > xShape; in implConvertAndInsert() local
1277 return xShape; in implConvertAndInsert()
1370 Reference< XShape > xShape; in createAndInsertXShape() local
1375 rxShapes->add( xShape ); in createAndInsertXShape()
[all …]
H A Ddrawingfragment.cxx134 if( pxShape ) *pxShape = xShape; in createShapeContext()
135 return new ShapeContext( rParent, rxParentShape, xShape ); in createShapeContext()
140 if( pxShape ) *pxShape = xShape; in createShapeContext()
141 return new ConnectorShapeContext( rParent, rxParentShape, xShape ); in createShapeContext()
146 if( pxShape ) *pxShape = xShape; in createShapeContext()
147 return new GraphicShapeContext( rParent, rxParentShape, xShape ); in createShapeContext()
152 if( pxShape ) *pxShape = xShape; in createShapeContext()
157 ShapePtr xShape( new Shape( rHelper, rAttribs, "com.sun.star.drawing.GroupShape" ) ); in createShapeContext() local
158 if( pxShape ) *pxShape = xShape; in createShapeContext()
159 return new GroupShapeContext( rParent, rHelper, rxParentShape, xShape ); in createShapeContext()
[all …]
/aoo41x/main/oox/source/vml/
H A Dvmldrawing.cxx210 Reference< XShape > xShape; in createAndInsertXShape() local
214 xShape.set( xModelFactory->createInstance( rService ), UNO_QUERY_THROW ); in createAndInsertXShape()
216 rxShapes->add( xShape ); in createAndInsertXShape()
217 xShape->setPosition( Point( rShapeRect.X, rShapeRect.Y ) ); in createAndInsertXShape()
218 xShape->setSize( Size( rShapeRect.Width, rShapeRect.Height ) ); in createAndInsertXShape()
223 OSL_ENSURE( xShape.is(), "Drawing::createAndInsertXShape - cannot instanciate shape object" ); in createAndInsertXShape()
224 return xShape; in createAndInsertXShape()
230 Reference< XShape > xShape; in createAndInsertXControlShape() local
237xShape = createAndInsertXShape( CREATE_OUSTRING( "com.sun.star.drawing.ControlShape" ), rxShapes, … in createAndInsertXControlShape()
240 Reference< XControlShape >( xShape, UNO_QUERY_THROW )->setControl( xCtrlModel ); in createAndInsertXControlShape()
[all …]
/aoo41x/test/testuno/source/fvt/uno/sd/chart/
H A DChartData.java129 xShapes.add(xShape); in insertDefaultChart()
130 xChartDoc = ChartUtil.retrieveChartDocument(xShape); in insertDefaultChart()
140 XShape xShape = null; in testDataSeries() local
149 xShape = saveAndLoadShape(1, 0); in testDataSeries()
150 xChartDoc = ChartUtil.getChartDocument(xShape); in testDataSeries()
163 XShape xShape = null; in testDataPoint() local
172 xShape = saveAndLoadShape(1, 0); in testDataPoint()
173 xChartDoc = ChartUtil.getChartDocument(xShape); in testDataPoint()
188 XShape xShape = null; in testDataTable() local
200 xShape = saveAndLoadShape(1, 0); in testDataTable()
[all …]
/aoo41x/main/odk/examples/DevelopersGuide/Drawing/
H A DShapeHelper.java56 XShape xShape = createShape( xDrawDoc, aPos, aSize, sShapeType ); in createAndInsertShape() local
57 xShapes.add( xShape ); in createAndInsertShape()
59 UnoRuntime.queryInterface( XPropertySet.class, xShape ); in createAndInsertShape()
69 XShape xShape = null; in createShape() local
74 xShape = (XShape)UnoRuntime.queryInterface( in createShape()
76 xShape.setPosition( aPos ); in createShape()
77 xShape.setSize( aSize ); in createShape()
78 return xShape; in createShape()
85 public static XPropertySet addPortion( XShape xShape, String sText, boolean bNewParagraph ) in addPortion() argument
89 UnoRuntime.queryInterface( XText.class, xShape ); in addPortion()
H A DPresentationDemo.java145 XShape xShape = ShapeHelper.createShape( xDrawDoc, in main() local
148 xShapes.add( xShape ); in main()
149 ShapeHelper.addPortion( xShape, "click to go", false ); in main()
150 ShapeHelper.addPortion( xShape, "to first page", true ); in main()
152 UnoRuntime.queryInterface( XPropertySet.class, xShape ); in main()
159 xShape = ShapeHelper.createShape( xDrawDoc, in main()
162 xShapes.add( xShape ); in main()
163 ShapeHelper.addPortion( xShape, "click to go", false ); in main()
164 ShapeHelper.addPortion( xShape, "to the second page", true ); in main()
166 UnoRuntime.queryInterface( XPropertySet.class, xShape ); in main()
/aoo41x/main/chart2/source/view/charttypes/
H A DCandleStickChart.cxx276 …uno::Reference< drawing::XShape > xShape( m_xShapeFactory->createInstance( rtl::OUString( RTL_CONS… in createShapes() local
278 xPointGroupShape_Shapes->add(xShape); in createShapes()
279 uno::Reference< beans::XPropertySet > xProp( xShape, uno::UNO_QUERY ); in createShapes()
288 …this->setMappedProperties( xShape, xPointProp, PropertyMapper::getPropertyNameMapForLineSeriesProp… in createShapes()
296 xLossGainTarget->add(xShape); in createShapes()
298 xShape->setPosition( Position3DToAWTPoint( aPosLeftFirst ) ); in createShapes()
304 xShape->setSize( aAWTSize ); in createShapes()
306 uno::Reference< beans::XPropertySet > xProp( xShape, uno::UNO_QUERY ); in createShapes()
337 xPointGroupShape_Shapes->add(xShape); in createShapes()
338 uno::Reference< beans::XPropertySet > xProp( xShape, uno::UNO_QUERY ); in createShapes()
[all …]
H A DBarChart.cxx304 uno::Reference< drawing::XShape > xShape(NULL); in createDataPoint3D_Bar() local
308xShape = m_pShapeFactory->createCylinder( xTarget, rPosition, rSize, nRotateZAngleHundredthDegree … in createDataPoint3D_Bar()
319 xShape = m_pShapeFactory->createCube( xTarget, rPosition, rSize in createDataPoint3D_Bar()
322 return xShape; in createDataPoint3D_Bar()
326 return xShape; in createDataPoint3D_Bar()
763 uno::Reference< drawing::XShape > xShape; in createShapes() local
798 xShape = createDataPoint3D_Bar( in createShapes()
835xShape = m_pShapeFactory->createArea2D( xPointGroupShape_Shapes, aPoly ); in createShapes()
839 ShapeFactory::setShapeName(xShape in createShapes()
947 uno::Reference< drawing::XShape > xShape( m_pShapeFactory->createLine2D( in createShapes() local
[all …]
/aoo41x/main/filter/source/flash/
H A Dswfexporter.cxx510 Reference< XShape > xShape; in exportShapes() local
514 xShapes->getByIndex( nShape ) >>= xShape; in exportShapes()
516 if( xShape.is() ) in exportShapes()
518 Reference< XShapes > xShapes2( xShape, UNO_QUERY ); in exportShapes()
524 exportShape( xShape, bMaster); in exportShapes()
537 Reference< XPropertySet > xPropSet( xShape, UNO_QUERY ); in exportShape()
555 OUString aShapeType( xShape->getShapeType() ); in exportShape()
574 com::sun::star::awt::Size aSize( xShape->getSize() ); in exportShape()
605 Reference< XComponent > xComponent( xShape, UNO_QUERY ); in exportShape()
743 Reference< XShapes > xShapes( xShape, UNO_QUERY ); in ActionSummer()
[all …]
/aoo41x/main/slideshow/source/engine/animationnodes/
H A Dgenerateevent.cxx87 uno::Reference<drawing::XShape> xShape; in generateEvent() local
134 if ((aEvent.Source >>= xShape) && in generateEvent()
135 (pShape = rContext.mpSubsettableShapeManager->lookupShape(xShape)).get()) in generateEvent()
150 if ((aEvent.Source >>= xShape) && in generateEvent()
151 (pShape = rContext.mpSubsettableShapeManager->lookupShape(xShape)).get()) in generateEvent()
166 if ((aEvent.Source >>= xShape) && in generateEvent()
167 (pShape = rContext.mpSubsettableShapeManager->lookupShape(xShape)).get()) in generateEvent()
182 if ((aEvent.Source >>= xShape) && in generateEvent()
183 (pShape = rContext.mpSubsettableShapeManager->lookupShape(xShape)).get()) in generateEvent()
/aoo41x/main/svx/source/accessibility/
H A DChildrenManagerImpl.cxx215 if ( I->mxShape.get() == xShape.get() ) in GetChild()
338 uno::Reference<drawing::XShape> xShape; in CreateListOfVisibleShapes() local
341 xShapeAccess->getByIndex(i) >>= xShape; in CreateListOfVisibleShapes()
342 aPos = xShape->getPosition(); in CreateListOfVisibleShapes()
343 aSize = xShape->getSize(); in CreateListOfVisibleShapes()
694 ChildDescriptor (xShape))); in disposing()
918 if ( I->mxShape.get() == xShape.get() ) in GetAccessibleCaption()
1073 anyShape <<= xShape; in UpdateSelection()
1130 const Reference<drawing::XShape>& xShape) in RegisterAsDisposeListener() argument
1142 const Reference<drawing::XShape>& xShape) in UnregisterAsDisposeListener() argument
[all …]
/aoo41x/main/xmloff/source/draw/
H A Danimexp.cxx284 Reference< XServiceInfo > xServiceInfo( xShape, UNO_QUERY ); in prepare()
289 Reference< XPropertySet > xProps( xShape, UNO_QUERY ); in prepare()
316 Reference< XServiceInfo > xServiceInfo( xShape, UNO_QUERY ); in collect()
321 Reference< XPropertySet > xProps( xShape, UNO_QUERY ); in collect()
348 rExport.getInterfaceToIdentifierMapper().registerReference( xShape ); in collect()
349 aEffect.mxShape = xShape; in collect()
367 rExport.getInterfaceToIdentifierMapper().registerReference( xShape ); in collect()
368 aEffect.mxShape = xShape; in collect()
397 rExport.getInterfaceToIdentifierMapper().registerReference( xShape ); in collect()
398 aEffect.mxShape = xShape; in collect()
[all …]
/aoo41x/main/sc/source/ui/vba/
H A Dvbachartobject.cxx43 xShape = setShape(); in ScVbaChartObject()
47 oShapeHelper.reset(new ShapeHelper(xShape)); in ScVbaChartObject()
65 xShape.set( xDrawPage->getByIndex(i), uno::UNO_QUERY_THROW ); in setShape()
66 if (xShape->getShapeType().compareToAscii("com.sun.star.drawing.OLE2Shape") == 0 ) in setShape()
68 uno::Reference< beans::XPropertySet > xShapePropertySet(xShape, uno::UNO_QUERY_THROW ); in setShape()
73 xNamedShape.set( xShape, uno::UNO_QUERY_THROW ); in setShape()
74 return xShape; in setShape()
121 xSelectionSupplier->select(uno::makeAny(xShape)); in Activate()
205 return uno::Reference< uno::XInterface >( xShape, uno::UNO_QUERY ); in getUnoObject()
H A Dvbasheetobjects.cxx168 … uno::Reference< drawing::XShape > xShape( mxShapes->getByIndex( nIndex ), uno::UNO_QUERY_THROW ); in collectShapes() local
169 if( implPickShape( xShape ) ) in collectShapes()
170 maShapes.push_back( xShape ); in collectShapes()
177 xShape->setPosition( rPos ); in createShape()
178 xShape->setSize( rSize ); in createShape()
179 implOnShapeCreated( xShape ); in createShape()
180 return xShape; in createShape()
199 uno::Reference< drawing::XShape > xShape( rSource, uno::UNO_QUERY_THROW ); in createCollectionObject() local
200 uno::Reference< excel::XSheetObject > xSheetObject( implCreateVbaObject( xShape ) ); in createCollectionObject()
348 sal_Int32 nIndex = mxContainer->insertShape( xShape ); in Add()
[all …]
/aoo41x/main/oox/source/ppt/
H A Danimationspersist.cxx56 Reference< XShape > xShape; in convert() local
57 rTarget >>= xShape; in convert()
58 aParaTarget.Shape = xShape; in convert()
61 Reference< XText > xText( xShape, UNO_QUERY ); in convert()
110 Reference< XShape > xShape( pShape->getXShape() ); in convert() local
111 OSL_ENSURE( xShape.is(), "fail to get XShape from shape" ); in convert()
112 if( xShape.is() ) in convert()
114 rTarget <<= xShape; in convert()
/aoo41x/test/testuno/source/testlib/uno/
H A DChartUtil.java39 public static XChartDocument retrieveChartDocument(XShape xShape) in retrieveChartDocument() argument
45 XPropertySet.class, xShape); in retrieveChartDocument()
62 XShape xShape) throws Exception { in retrieveChart2Document() argument
67 XPropertySet.class, xShape); in retrieveChart2Document()
126 public static XChartDocument getChartDocument(XShape xShape) in getChartDocument() argument
130 XPropertySet.class, xShape); in getChartDocument()
144 public static com.sun.star.chart2.XChartDocument getChart2Document(XShape xShape) in getChart2Document() argument
148 XPropertySet.class, xShape); in getChart2Document()
/aoo41x/main/filter/source/placeware/
H A Dexporter.cxx432 Reference< XShape > xShape; in exportPage() local
433 xDrawPage->getByIndex( nShape ) >>= xShape; in exportPage()
435 if( xShape.is() && xShape->getShapeType() == szTitleTextShape ) in exportPage()
437 Reference< XPropertySet > xPropSet( xShape, UNO_QUERY ); in exportPage()
445 Reference< XText > xText( xShape, UNO_QUERY ); in exportPage()
467 Reference< XShape > xShape; in exportPage() local
468 xNotesPage->getByIndex( nShape ) >>= xShape; in exportPage()
470 if( xShape.is() && (xShape->getShapeType() == szNotesShape) ) in exportPage()
472 Reference< XPropertySet > xPropSet( xShape, UNO_QUERY ); in exportPage()
480 Reference< XText > xText( xShape, UNO_QUERY ); in exportPage()
/aoo41x/main/sw/source/filter/html/
H A Dhtmlform.cxx251 void ReleaseShape() { xShape = 0; } in ReleaseShape()
428 xShape( rShape ), in SwHTMLImageWatcher()
498 awt::Size aSz( xShape->getSize() ); in init()
517 xShape->setSize( aNewSz ); in init()
613 if( evt.Source == xShape ) in disposing()
668 xShape( rShape ), in SwHTMLFormPendingStackData_Impl()
963 return xShape; in InsertControl()
969 return xShape; in InsertControl()
977 xShape->setSize( aTmpSz ); in InsertControl()
1314 return xShape; in InsertControl()
[all …]
/aoo41x/main/sd/source/ui/accessibility/
H A DAccessibleDrawDocumentView.cxx561 if ( xShape.is() ) in getGroupPosition()
564 SdrObject* pObj = GetSdrObjectFromXShape(xShape); in getGroupPosition()
567 vXShapes.push_back( xShape ); in getGroupPosition()
758 if( xShape.is() ) in implIsSelected()
761 if( xShapes->getByIndex( i ) == xShape ) in implIsSelected()
833 if( xShape.is() ) in implSelect()
855 xShapes->add( xShape ); in implSelect()
857 xShapes->remove( xShape ); in implSelect()
942 uno::Reference< ::com::sun::star::drawing::XShape > xShape; in get_AccFlowTo() local
943 rAny >>= xShape; in get_AccFlowTo()
[all …]
/aoo41x/main/sd/source/ui/unoidl/
H A DSdUnoDrawView.cxx200 Reference< drawing::XShape > xShape; in select() local
201 aSelection >>= xShape; in select()
203 if(xShape.is()) in select()
205 SvxShape* pShape = SvxShape::getImplementation( xShape ); in select()
226 xShapes->getByIndex(i) >>= xShape; in select()
227 if( xShape.is() ) in select()
229 SvxShape* pShape = SvxShape::getImplementation(xShape); in select()
325 Reference< drawing::XShape > xShape( pObj->getUnoShape(), UNO_QUERY ); in getSelection() local
327 if(xShape.is()) in getSelection()
328 xShapes->add(xShape); in getSelection()
/aoo41x/main/reportdesign/source/core/sdr/
H A DReportDrawPage.cxx72 uno::Reference< drawing::XShape > xShape; in _CreateShape() local
91 xShape.set(*pShape,uno::UNO_QUERY); in _CreateShape()
98 xShape.set(xShape2,uno::UNO_QUERY); in _CreateShape()
130 xShape.set(*pShape,uno::UNO_QUERY); in _CreateShape()
135 if ( !xShape.is() ) in _CreateShape()
136 xShape.set( SvxDrawPage::_CreateShape( pObj ) ); in _CreateShape()
141 …xRet.set( pRptModel->createShape(sServiceName,xShape,bChangeOrientation ? 0 : 1), uno::UNO_QUERY_T… in _CreateShape()
/aoo41x/main/chart2/workbench/addin/
H A Dsampleaddin.cxx473 uno::Reference< drawing::XShape > xShape( mxChartDoc->getDiagram(), uno::UNO_QUERY ); in getSize() local
474 if( xShape.is()) in getSize()
475 return xShape->getSize(); in getSize()
486 uno::Reference< drawing::XShape > xShape( mxChartDoc->getDiagram(), uno::UNO_QUERY ); in setSize() local
487 if( xShape.is()) in setSize()
488 xShape->setSize( aSize ); in setSize()
497 uno::Reference< drawing::XShape > xShape( mxChartDoc->getDiagram(), uno::UNO_QUERY ); in getPosition() local
498 if( xShape.is()) in getPosition()
499 return xShape->getPosition(); in getPosition()
511 if( xShape.is()) in setPosition()
[all …]
/aoo41x/main/sc/source/filter/excel/
H A Dxeescher.cxx305 void XclExpControlHelper::ConvertSheetLinks( Reference< XShape > xShape ) in ConvertSheetLinks() argument
387 ScfPropertySet aCtrlProp( XclControlHelper::GetControlModel( xShape ) ); in XclExpOcxControlObj()
411 Reference< XPropertySet > xShapePS( xShape, UNO_QUERY ); in XclExpOcxControlObj()
430 ConvertSheetLinks( xShape ); in XclExpOcxControlObj()
505 ScfPropertySet aCtrlProp( XclControlHelper::GetControlModel( xShape ) ); in XclExpTbxControlObj()
506 if( !xShape.is() || !aCtrlProp.Is() ) in XclExpTbxControlObj()
509 mnHeight = xShape->getSize().Height; in XclExpTbxControlObj()
559 if( SdrObject* pSdrObj = SdrObject::getSdrObjectFromXShape( xShape ) ) in XclExpTbxControlObj()
737 ConvertSheetLinks( xShape ); in XclExpTbxControlObj()
945 SdrObject* pSdrObj = SdrObject::getSdrObjectFromXShape( xShape ); in XclExpChartObj()
[all …]

Completed in 141 milliseconds

12345678910>>...13