Lines Matching refs:col
123 final short col = 0; in checkTextFieldBinding() local
133 bindToCell( controlModel, col, row ); in checkTextFieldBinding()
140 …verifyStringCellContent( col, row, text, "A text field does not forward its user input to the cell… in checkTextFieldBinding()
144 …verifyStringCellContent( col, row, otherText, "A text field does not forward programmatic changes … in checkTextFieldBinding()
147 setCellText( col, row, yetAnotherText ); in checkTextFieldBinding()
161 short col = (short)0; in checkBooleanRadioBinding() local
164 bindToCell( primaryRadio, col, row1 ); in checkBooleanRadioBinding()
165 bindToCell( secondaryRadio, col, row2 ); in checkBooleanRadioBinding()
170 …verifyNumericCellContent( col, row1, 1, "Radio buttons do not forward their (boolean) values to ce… in checkBooleanRadioBinding()
171 …verifyNumericCellContent( col, row2, 0, "Radio buttons do not forward their (boolean) values to ce… in checkBooleanRadioBinding()
175 …verifyNumericCellContent( col, row1, 0, "Radio buttons do not forward their (boolean) values to ce… in checkBooleanRadioBinding()
176 …verifyNumericCellContent( col, row2, 1, "Radio buttons do not forward their (boolean) values to ce… in checkBooleanRadioBinding()
179 setCellValue( col, row1, 1.0 ); in checkBooleanRadioBinding()
182 …verifyNumericCellContent( col, row2, 0, "Changing primary cell is not propagated to the secondary … in checkBooleanRadioBinding()
185 setCellEmpty( col, row1 ); in checkBooleanRadioBinding()
205 short col = (short)0; in checkStringRadioBinding() local
207 bindToCell( primaryRadio, col, row ); in checkStringRadioBinding()
208 bindToCell( secondaryRadio, col, row ); in checkStringRadioBinding()
212 …verifyStringCellContent( col, row, refValueA, "A bound radio button with a reference value does no… in checkStringRadioBinding()
214 …verifyStringCellContent( col, row, refValueB, "A bound radio button with a reference value does no… in checkStringRadioBinding()
217 setCellText( col, row, "no ref value" ); in checkStringRadioBinding()
220 setCellText( col, row, refValueA ); in checkStringRadioBinding()
223 setCellText( col, row, refValueB ); in checkStringRadioBinding()
235 short col = (short)0; in checkBooleanCheckBoxBinding() local
237 bindToCell( checkBox, col, row ); in checkBooleanCheckBoxBinding()
241 …verifyNumericCellContent( col, row, 0, "programmatically unchecking the check box is not propagate… in checkBooleanCheckBoxBinding()
245 …verifyNumericCellContent( col, row, 1, "moving the check box state to 'checked' is not propagated … in checkBooleanCheckBoxBinding()
249 … verifyVoidCell( col, row, "propagating the 'indetermined' state to the cell does not work." ); in checkBooleanCheckBoxBinding()
253 …verifyNumericCellContent( col, row, 0, "unchecking a check box via UI is not propagated to the cel… in checkBooleanCheckBoxBinding()
267 short col = (short)0; in checkStringCheckBoxBinding() local
269 bindToCell( checkBox, col, row ); in checkStringCheckBoxBinding()
273 …verifyNumericCellContent( col, row, 0, "programmatically unchecking the check box is not propagate… in checkStringCheckBoxBinding()
277 …verifyStringCellContent( col, row, refValue, "moving the check box state to 'checked' does not pro… in checkStringCheckBoxBinding()
281 …verifyVoidCell( col, row, "propagating the 'indetermined' state to the cell does not work, when ex… in checkStringCheckBoxBinding()
285 …verifyStringCellContent( col, row, "", "unchecking a check box via UI does not propagated the ref … in checkStringCheckBoxBinding()
299 short col = (short)0; in checkListBoxBinding() local
315 bindToCell( listBox, col, row ); in checkListBoxBinding()
320 …verifyStringCellContent( col, row, "Apples", "programmatically selecting a list entry is not propa… in checkListBoxBinding()
323 …verifyStringCellContent( col, row, "Oranges", "UI-selecting a list entry is not propagated to the … in checkListBoxBinding()
325 setCellText( col, row, "Peaches" ); in checkListBoxBinding()
342 short col = (short)0; in checkListBoxIndexBinding() local
358 bindToCell( listBox, col, row, "com.sun.star.table.ListPositionCellBinding" ); in checkListBoxIndexBinding()
363 …verifyNumericCellContent( col, row, 1, "programmatically selecting a list entry is not propagated … in checkListBoxIndexBinding()
366 …verifyNumericCellContent( col, row, 2, "UI-selecting a list entry is not propagated (as index) to … in checkListBoxIndexBinding()
368 setCellValue( col, row, 3 ); in checkListBoxIndexBinding()
405 …private boolean verifyVoidCell( short col, short row, String failErrorMessage ) throws com.sun.sta… in verifyVoidCell() argument
408 m_document.getSheet( 0 ).getCellByPosition( col, row ) in verifyVoidCell()
422 …private boolean verifyNumericCellContent( short col, short row, double value, String failErrorMess… in verifyNumericCellContent() argument
425 m_document.getSheet( 0 ).getCellByPosition( col, row ) in verifyNumericCellContent()
438 …private boolean verifyStringCellContent( short col, short row, String text, String failErrorMessag… in verifyStringCellContent() argument
441 m_document.getSheet( 0 ).getCellByPosition( col, row ) in verifyStringCellContent()
454 private void setCellText( short col, short row, String text ) throws com.sun.star.uno.Exception in setCellText() argument
457 m_document.getSheet( 0 ).getCellByPosition( col, row ) in setCellText()
465 … private void setCellValue( short col, short row, double value ) throws com.sun.star.uno.Exception in setCellValue() argument
468 m_document.getSheet( 0 ).getCellByPosition( col, row ) in setCellValue()
476 private void setCellEmpty( short col, short row ) throws com.sun.star.uno.Exception in setCellEmpty() argument
481 m_document.getSheet( 0 ).getCellByPosition( col, row ) in setCellEmpty()