Lines Matching refs:oDoc
64 public static XControlShape createControlShape( XComponent oDoc, int height, in createControlShape() argument
74 UnoRuntime.queryInterface( XMultiServiceFactory.class, oDoc ); in createControlShape()
100 public static XControlShape createUnoControlShape( XComponent oDoc, int height, in createUnoControlShape() argument
109 …ory oDocMSF = (XMultiServiceFactory) UnoRuntime.queryInterface( XMultiServiceFactory.class, oDoc ); in createUnoControlShape()
137 public static XControlShape createControlShapeWithDefaultControl( XComponent oDoc, int height, in createControlShapeWithDefaultControl() argument
146 …ory oDocMSF = (XMultiServiceFactory) UnoRuntime.queryInterface( XMultiServiceFactory.class, oDoc ); in createControlShapeWithDefaultControl()
172 public static XInterface createControl( XComponent oDoc, String kind ) { in createControl() argument
177 UnoRuntime.queryInterface( XMultiServiceFactory.class, oDoc ); in createControl()
215 public static XControlShape insertControlShape( XComponent oDoc, int height, in insertControlShape() argument
218 XControlShape aShape = createControlShape(oDoc,height,width,x,y,kind); in insertControlShape()
219 XDrawPage oDP = DrawTools.getDrawPage(oDoc,0); in insertControlShape()