/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /* * This file is part of the LibreOffice project. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. * * This file incorporates work covered by the following license notice: * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed * with this work for additional information regarding copyright * ownership. The ASF licenses this file to you under the Apache * License, Version 2.0 (the "License"); you may not use this file * except in compliance with the License. You may obtain a copy of * the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
void SAL_CALL CellBindingPropertyHandler::actuatingPropertyChanged( const OUString& _rActuatingPropertyName, const Any& _rNewValue, const Any& /*_rOldValue*/, const Reference< XObjectInspectorUI >& _rxInspectorUI, sal_Bool _bFirstTimeInit )
{
::osl::MutexGuard aGuard( m_aMutex );
PropertyId nActuatingPropId( impl_getPropertyId_throwRuntime( _rActuatingPropertyName ) );
OSL_PRECOND(m_pHelper, "CellBindingPropertyHandler::actuatingPropertyChanged: inconsistency!"); // if we survived impl_getPropertyId_throwRuntime, we should have a helper, since no helper implies no properties
OSL_PRECOND( _rxInspectorUI.is(), "FormComponentPropertyHandler::actuatingPropertyChanged: no access to the UI!" ); if ( !_rxInspectorUI.is() ) throw NullPointerException();
std::vector< PropertyId > aDependentProperties;
switch ( nActuatingPropId )
{ // ----- BoundCell ----- case PROPERTY_ID_BOUND_CELL:
{ // the SQL-data-binding related properties need to be enabled if and only if // there is *no* valid cell binding
Reference< XValueBinding > xBinding;
_rNewValue >>= xBinding;
if ( impl_isSupportedProperty_nothrow( PROPERTY_ID_CELL_EXCHANGE_TYPE ) )
_rxInspectorUI->enablePropertyUI( PROPERTY_CELL_EXCHANGE_TYPE, xBinding.is() ); if ( impl_componentHasProperty_throw( PROPERTY_CONTROLSOURCE ) )
_rxInspectorUI->enablePropertyUI( PROPERTY_CONTROLSOURCE, !xBinding.is() );
if ( impl_isSupportedProperty_nothrow( PROPERTY_ID_FILTERPROPOSAL ) )
_rxInspectorUI->enablePropertyUI( PROPERTY_FILTERPROPOSAL, !xBinding.is() ); if ( impl_isSupportedProperty_nothrow( PROPERTY_ID_EMPTY_IS_NULL ) )
_rxInspectorUI->enablePropertyUI( PROPERTY_EMPTY_IS_NULL, !xBinding.is() );
if ( !xBinding.is() && m_pHelper->getCurrentBinding().is() )
{ // ensure that the "transfer selection as" property is reset. Since we can't remember // it at the object itself, but derive it from the binding only, we have to normalize // it now that there *is* no binding anymore.
setPropertyValue( PROPERTY_CELL_EXCHANGE_TYPE, Any( sal_Int16(0) ) );
}
} break;
// ----- CellRange ----- case PROPERTY_ID_LIST_CELL_RANGE:
{ // the list source related properties need to be enabled if and only if // there is *no* valid external list source for the control
Reference< XListEntrySource > xSource;
_rNewValue >>= xSource;
// also reset the list entries if the cell range is reset // #i28319# if ( !_bFirstTimeInit )
{ try
{ if ( !xSource.is() )
{
setPropertyValue( PROPERTY_STRINGITEMLIST, Any( Sequence< OUString >() ) );
setPropertyValue( PROPERTY_TYPEDITEMLIST, Any( Sequence< Any >() ) );
}
} catch( const Exception& )
{
TOOLS_WARN_EXCEPTION( "extensions.propctrlr", "ListCellRange: caught an exception while resetting the string items!");
}
}
} break; // case PROPERTY_ID_LIST_CELL_RANGE
// ----- DataField ----- case PROPERTY_ID_CONTROLSOURCE:
{
OUString sControlSource;
_rNewValue >>= sControlSource; if ( impl_isSupportedProperty_nothrow( PROPERTY_ID_BOUND_CELL ) )
_rxInspectorUI->enablePropertyUI( PROPERTY_BOUND_CELL, sControlSource.isEmpty() );
} break; // case PROPERTY_ID_CONTROLSOURCE
default:
OSL_FAIL( "CellBindingPropertyHandler::actuatingPropertyChanged: did not register for this property!" );
}
OSL_ENSURE(m_pHelper, "CellBindingPropertyHandler::getPropertyValue: inconsistency!"); // if we survived impl_getPropertyId_throwUnknownProperty, we should have a helper, since no helper implies no properties
Any aReturn; switch ( nPropId )
{ case PROPERTY_ID_BOUND_CELL:
{
Reference< XValueBinding > xBinding( m_pHelper->getCurrentBinding() ); if ( !CellBindingHelper::isCellBinding( xBinding ) )
xBinding.clear();
aReturn <<= xBinding;
} break;
case PROPERTY_ID_LIST_CELL_RANGE:
{
Reference< XListEntrySource > xSource( m_pHelper->getCurrentListSource() ); if ( !CellBindingHelper::isCellRangeListSource( xSource ) )
xSource.clear();
OSL_ENSURE(m_pHelper, "CellBindingPropertyHandler::setPropertyValue: inconsistency!"); // if we survived impl_getPropertyId_throwUnknownProperty, we should have a helper, since no helper implies no properties
try
{
Any aOldValue = getPropertyValue( _rPropertyName );
Any aNewValue( getPropertyValue( _rPropertyName ) );
firePropertyChange( _rPropertyName, nPropId, aOldValue, aNewValue ); // TODO/UNOize: can't we make this a part of the base class, for all those "virtual" // properties? Base class'es |setPropertyValue| could call some |doSetPropertyValue|, // and handle the listener notification itself
} catch( const Exception& )
{
TOOLS_WARN_EXCEPTION( "extensions.propctrlr", "CellBindingPropertyHandler::setPropertyValue" );
}
}
Any SAL_CALL CellBindingPropertyHandler::convertToPropertyValue( const OUString& _rPropertyName, const Any& _rControlValue )
{
::osl::MutexGuard aGuard( m_aMutex );
Any aPropertyValue;
OSL_ENSURE(
m_pHelper, "CellBindingPropertyHandler::convertToPropertyValue: we have no SupportedProperties!"); if (!m_pHelper) return aPropertyValue;
case PROPERTY_ID_BOUND_CELL:
{ // if we have the possibility of an integer binding, then we must preserve // this property's value (e.g. if the current binding is an integer binding, then // the newly created one must be, too) bool bIntegerBinding = false; if ( m_pHelper->isCellIntegerBindingAllowed() )
{
sal_Int16 nCurrentBindingType = 0;
getPropertyValue( PROPERTY_CELL_EXCHANGE_TYPE ) >>= nCurrentBindingType;
bIntegerBinding = ( nCurrentBindingType != 0 );
}
aPropertyValue <<= m_pHelper->createCellBindingFromStringAddress( sControlValue, bIntegerBinding );
} break;
case PROPERTY_ID_CELL_EXCHANGE_TYPE:
m_pCellExchangeConverter->getValueFromDescription( sControlValue, aPropertyValue ); break;
// the only value binding we support so far is linking to spreadsheet cells
aControlValue <<= m_pHelper->getStringAddressFromCellBinding( xBinding );
} break;
case PROPERTY_ID_LIST_CELL_RANGE:
{
Reference< XListEntrySource > xSource; bool bSuccess = _rPropertyValue >>= xSource;
OSL_ENSURE( bSuccess, "CellBindingPropertyHandler::convertToControlValue: invalid value (2)!" );
// the only value binding we support so far is linking to spreadsheet cells
aControlValue <<= m_pHelper->getStringAddressFromCellListSource( xSource );
} break;
case PROPERTY_ID_CELL_EXCHANGE_TYPE:
aControlValue <<= m_pCellExchangeConverter->getDescriptionForValue( _rPropertyValue ); break;
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung ist noch experimentell.