Lines Matching refs:XPropertySet

130XPropertySet controlModel = m_formLayer.createControlAndShape( "DatabaseTextField", 30, 9, 30, 6 );  in checkTextFieldBinding()
157XPropertySet primaryRadio = createRadio( 28, "radio button no. 1", "radio group", "primary" ); in checkBooleanRadioBinding()
158XPropertySet secondaryRadio = createRadio( 33, "radio button no. 2", "radio group", "secodary" ); in checkBooleanRadioBinding()
195XPropertySet primaryRadio = createRadio( 46, "radio button A", "radio ref group", "primary" ); in checkStringRadioBinding()
196XPropertySet secondaryRadio = createRadio( 51, "radio button B", "radio ref group", "secodary" ); in checkStringRadioBinding()
231XPropertySet checkBox = m_formLayer.createControlAndShape( "DatabaseCheckBox", 30, 59, 40, 4 ); in checkBooleanCheckBoxBinding()
262XPropertySet checkBox = m_formLayer.createControlAndShape( "DatabaseCheckBox", 30, 68, 40, 4 ); in checkStringCheckBoxBinding()
295XPropertySet listBox = m_formLayer.createControlAndShape( "DatabaseListBox", 30, 80, 40, 6 ); in checkListBoxBinding()
338XPropertySet listBox = m_formLayer.createControlAndShape( "DatabaseListBox", 30, 94, 40, 6 ); in checkListBoxIndexBinding()
377 …private XPropertySet createRadio( int yPos, String label, String name, String tag ) throws com.sun… in createRadio()
379XPropertySet radio = m_formLayer.createControlAndShape( "DatabaseRadioButton", 30, yPos, 40, 4 ); in createRadio()
389 …private boolean verifyRadioStates( XPropertySet radio1, XPropertySet radio2, short value1, short v… in verifyRadioStates()
491 …private void bindToCell( XPropertySet controlModel, short column, short row, String _bindingServic… in bindToCell()
516 …private void bindToCell( XPropertySet _controlModel, short _column, short _row ) throws com.sun.st… in bindToCell()
524 …private void setListSource( XPropertySet _listSink, short _sourceCol, short _rowStart, short _rowE… in setListSource()
540 private void simulateUserRadioCheck( XPropertySet radioModel ) throws com.sun.star.uno.Exception in simulateUserRadioCheck()
555 …private void simulateUserCheckBoxCheck( XPropertySet checkBox, short state ) throws com.sun.star.u… in simulateUserCheckBoxCheck()
569 …private void simulateUserListBoxSelection( XPropertySet _listBox, String _selectEntry ) throws com… in simulateUserListBoxSelection()
579 …private void simulateUserTextInput( XPropertySet controlModel, String text ) throws com.sun.star.u… in simulateUserTextInput()