Lines Matching refs:checkBox
231 … XPropertySet checkBox = m_formLayer.createControlAndShape( "DatabaseCheckBox", 30, 59, 40, 4 ); in checkBooleanCheckBoxBinding() local
232 checkBox.setPropertyValue( "Label", "check box" ); in checkBooleanCheckBoxBinding()
233 checkBox.setPropertyValue( "TriState", new Boolean( true ) ); in checkBooleanCheckBoxBinding()
237 bindToCell( checkBox, col, row ); in checkBooleanCheckBoxBinding()
240 checkBox.setPropertyValue( "State", new Short( (short)0 ) ); in checkBooleanCheckBoxBinding()
244 simulateUserCheckBoxCheck( checkBox, (short)1 ); in checkBooleanCheckBoxBinding()
248 simulateUserCheckBoxCheck( checkBox, (short)2 ); in checkBooleanCheckBoxBinding()
252 simulateUserCheckBoxCheck( checkBox, (short)0 ); in checkBooleanCheckBoxBinding()
262 … XPropertySet checkBox = m_formLayer.createControlAndShape( "DatabaseCheckBox", 30, 68, 40, 4 ); in checkStringCheckBoxBinding() local
263 checkBox.setPropertyValue( "Label", "check box with ref value" ); in checkStringCheckBoxBinding()
264 checkBox.setPropertyValue( "TriState", new Boolean( true ) ); in checkStringCheckBoxBinding()
265 checkBox.setPropertyValue( "RefValue", refValue ); in checkStringCheckBoxBinding()
269 bindToCell( checkBox, col, row ); in checkStringCheckBoxBinding()
272 checkBox.setPropertyValue( "State", new Short( (short)0 ) ); in checkStringCheckBoxBinding()
276 simulateUserCheckBoxCheck( checkBox, (short)1 ); in checkStringCheckBoxBinding()
280 simulateUserCheckBoxCheck( checkBox, (short)2 ); in checkStringCheckBoxBinding()
284 simulateUserCheckBoxCheck( checkBox, (short)0 ); in checkStringCheckBoxBinding()
555 …private void simulateUserCheckBoxCheck( XPropertySet checkBox, short state ) throws com.sun.star.u… in simulateUserCheckBoxCheck() argument
558 XAccessible.class, m_document.getCurrentView().getControl( checkBox ) ); in simulateUserCheckBoxCheck()