Lines Matching refs:kind
65 int width, int x, int y, String kind ) { in createControlShape() argument
78 Object aCon = oDocMSF.createInstance("com.sun.star.form.component."+kind); in createControlShape()
81 model_props.setPropertyValue("DefaultControl","com.sun.star.form.control."+kind); in createControlShape()
101 int width, int x, int y, String kind, String defControl ) { in createUnoControlShape() argument
113 Object aCon = oDocMSF.createInstance("com.sun.star.form.component."+kind); in createUnoControlShape()
138 int width, int x, int y, String kind ) { in createControlShapeWithDefaultControl() argument
150 Object aCon = oDocMSF.createInstance("com.sun.star.form.component."+kind); in createControlShapeWithDefaultControl()
172 public static XInterface createControl( XComponent oDoc, String kind ) { in createControl() argument
181 "com.sun.star.form.component."+kind); in createControl()
184 System.out.println( "Couldn't create instance "+ kind + ": "+ e ); in createControl()
216 int width, int x, int y, String kind ) { in insertControlShape() argument
218 XControlShape aShape = createControlShape(oDoc,height,width,x,y,kind); in insertControlShape()