Lines Matching refs:xBinding

133             Reference< XValueBinding > xBinding;  in actuatingPropertyChanged()  local
134 _rNewValue >>= xBinding; in actuatingPropertyChanged()
137 _rxInspectorUI->enablePropertyUI( PROPERTY_CELL_EXCHANGE_TYPE, xBinding.is() ); in actuatingPropertyChanged()
139 _rxInspectorUI->enablePropertyUI( PROPERTY_CONTROLSOURCE, !xBinding.is() ); in actuatingPropertyChanged()
142 _rxInspectorUI->enablePropertyUI( PROPERTY_FILTERPROPOSAL, !xBinding.is() ); in actuatingPropertyChanged()
144 _rxInspectorUI->enablePropertyUI( PROPERTY_EMPTY_IS_NULL, !xBinding.is() ); in actuatingPropertyChanged()
148 if ( !xBinding.is() && m_pHelper->getCurrentBinding().is() ) in actuatingPropertyChanged()
223 …Reference< XValueBinding > xBinding( pNonConstThis->getPropertyValue( PROPERTY_BOUND_CELL ), UNO_Q… in impl_updateDependentProperty_nothrow() local
227 … _rxInspectorUI->enablePropertyUI( PROPERTY_BOUNDCOLUMN, !xBinding.is() && !xListSource.is() ); in impl_updateDependentProperty_nothrow()
254 Reference< XValueBinding > xBinding( m_pHelper->getCurrentBinding() ); in getPropertyValue() local
255 if ( !m_pHelper->isCellBinding( xBinding ) ) in getPropertyValue()
256 xBinding.clear(); in getPropertyValue()
258 aReturn <<= xBinding; in getPropertyValue()
274 Reference< XValueBinding > xBinding( m_pHelper->getCurrentBinding() ); in getPropertyValue() local
275 aReturn <<= (sal_Int16)( m_pHelper->isCellIntegerBinding( xBinding ) ? 1 : 0 ); in getPropertyValue()
303 Reference< XValueBinding > xBinding; in setPropertyValue() local
304 _rValue >>= xBinding; in setPropertyValue()
305 m_pHelper->setBinding( xBinding ); in setPropertyValue()
322 Reference< XValueBinding > xBinding = m_pHelper->getCurrentBinding( ); in setPropertyValue() local
323 if ( xBinding.is() ) in setPropertyValue()
326 if ( (bool)bNeedIntegerBinding != m_pHelper->isCellIntegerBinding( xBinding ) ) in setPropertyValue()
329 if ( m_pHelper->getAddressFromCellBinding( xBinding, aAddress ) ) in setPropertyValue()
331xBinding = m_pHelper->createCellBindingFromAddress( aAddress, bNeedIntegerBinding ); in setPropertyValue()
332 m_pHelper->setBinding( xBinding ); in setPropertyValue()
423 Reference< XValueBinding > xBinding; in convertToControlValue() local
427 _rPropertyValue >>= xBinding; in convertToControlValue()
431 aControlValue <<= m_pHelper->getStringAddressFromCellBinding( xBinding ); in convertToControlValue()