Lines Matching refs:XShape
121 XShape aShape; in refresh()
125 aShape = (XShape) UnoRuntime.queryInterface( in refresh()
126 XShape.class, aShapesIA.getByIndex( i )); in refresh()
157 maTopLine = (XShape) UnoRuntime.queryInterface( in refresh()
158 … XShape.class, maShapeFactory.createInstance( "com.sun.star.drawing.LineShape" )); in refresh()
180 maBottomLine = (XShape) UnoRuntime.queryInterface( in refresh()
181 … XShape.class, maShapeFactory.createInstance( "com.sun.star.drawing.LineShape" )); in refresh()
215 XShape aXAxis = (XShape) UnoRuntime.queryInterface( in refresh()
216 XShape.class, ((XAxisXSupplier) UnoRuntime.queryInterface( in refresh()
218 XShape aYAxis = (XShape) UnoRuntime.queryInterface( in refresh()
219 XShape.class, ((XAxisYSupplier) UnoRuntime.queryInterface( in refresh()
328 …return ((XShape) UnoRuntime.queryInterface( XShape.class, maChartDocument.getDiagram())).getSize(); in getSize()
332 …((XShape) UnoRuntime.queryInterface( XShape.class, maChartDocument.getDiagram())).setSize( aSize ); in setSize()
337 …return ((XShape) UnoRuntime.queryInterface( XShape.class, maChartDocument.getDiagram())).getPositi… in getPosition()
341 …((XShape) UnoRuntime.queryInterface( XShape.class, maChartDocument.getDiagram())).setPosition( aPo… in setPosition()
357 private com.sun.star.drawing.XShape maTopLine;
358 private com.sun.star.drawing.XShape maBottomLine;
362 private int getAxisPosition( XShape aAxis, double fValue, boolean bVertical ) in getAxisPosition()