Lines Matching refs:aBounds
49 …indow createWindow( XMultiServiceFactory xFactory, NativeView aParent, java.awt.Rectangle aBounds ) in createWindow() argument
94 aDescriptor.Bounds = new com.sun.star.awt.Rectangle( (int)aBounds.getX(), in createWindow()
95 (int)aBounds.getY(), in createWindow()
96 (int)aBounds.getWidth(), in createWindow()
97 (int)aBounds.getHeight() ); in createWindow()
99 System.out.println( "The rectangle for vcl window is:\nx = " + (int)aBounds.getX() in createWindow()
100 + "; y = " + (int)aBounds.getY() in createWindow()
101 + "; width = " + (int)aBounds.getWidth() in createWindow()
102 + "; height = " + (int)aBounds.getHeight() ); in createWindow()
116 xWindow.setPosSize( (int)aBounds.getX(), in createWindow()
117 (int)aBounds.getY(), in createWindow()
118 (int)aBounds.getWidth(), in createWindow()
119 (int)aBounds.getHeight(), in createWindow()