2004-11-16 09:42:15 +00:00
|
|
|
/*************************************************************************
|
|
|
|
*
|
2008-04-11 07:25:14 +00:00
|
|
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
2004-11-16 09:42:15 +00:00
|
|
|
*
|
2008-04-11 07:25:14 +00:00
|
|
|
* Copyright 2008 by Sun Microsystems, Inc.
|
2004-11-16 09:42:15 +00:00
|
|
|
*
|
2008-04-11 07:25:14 +00:00
|
|
|
* OpenOffice.org - a multi-platform office productivity suite
|
2004-11-16 09:42:15 +00:00
|
|
|
*
|
2008-04-11 07:25:14 +00:00
|
|
|
* $RCSfile: refvaluecomponent.cxx,v $
|
2008-05-05 14:22:23 +00:00
|
|
|
* $Revision: 1.11 $
|
2004-11-16 09:42:15 +00:00
|
|
|
*
|
2008-04-11 07:25:14 +00:00
|
|
|
* This file is part of OpenOffice.org.
|
2004-11-16 09:42:15 +00:00
|
|
|
*
|
2008-04-11 07:25:14 +00:00
|
|
|
* OpenOffice.org is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Lesser General Public License version 3
|
|
|
|
* only, as published by the Free Software Foundation.
|
2004-11-16 09:42:15 +00:00
|
|
|
*
|
2008-04-11 07:25:14 +00:00
|
|
|
* OpenOffice.org is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Lesser General Public License version 3 for more details
|
|
|
|
* (a copy is included in the LICENSE file that accompanied this code).
|
2004-11-16 09:42:15 +00:00
|
|
|
*
|
2008-04-11 07:25:14 +00:00
|
|
|
* You should have received a copy of the GNU Lesser General Public License
|
|
|
|
* version 3 along with OpenOffice.org. If not, see
|
|
|
|
* <http://www.openoffice.org/license.html>
|
|
|
|
* for a copy of the LGPLv3 License.
|
2004-11-16 09:42:15 +00:00
|
|
|
*
|
|
|
|
************************************************************************/
|
|
|
|
|
2006-09-16 22:55:25 +00:00
|
|
|
// MARKER(update_precomp.py): autogen include statement, do not remove
|
|
|
|
#include "precompiled_forms.hxx"
|
2004-11-16 09:42:15 +00:00
|
|
|
#include "refvaluecomponent.hxx"
|
|
|
|
|
|
|
|
/** === begin UNO includes === **/
|
|
|
|
/** === end UNO includes === **/
|
|
|
|
|
|
|
|
//........................................................................
|
|
|
|
namespace frm
|
|
|
|
{
|
|
|
|
//........................................................................
|
|
|
|
|
|
|
|
using namespace ::com::sun::star::uno;
|
|
|
|
using namespace ::com::sun::star::lang;
|
|
|
|
using namespace ::com::sun::star::beans;
|
|
|
|
using namespace ::com::sun::star::form::binding;
|
|
|
|
|
|
|
|
//====================================================================
|
|
|
|
//=
|
|
|
|
//====================================================================
|
|
|
|
//--------------------------------------------------------------------
|
|
|
|
OReferenceValueComponent::OReferenceValueComponent( const Reference< XMultiServiceFactory>& _rxFactory, const ::rtl::OUString& _rUnoControlModelTypeName, const ::rtl::OUString& _rDefault, sal_Bool _bSupportNoCheckRefValue )
|
|
|
|
:OBoundControlModel( _rxFactory, _rUnoControlModelTypeName, _rDefault, sal_False, sal_True, sal_True )
|
2006-06-19 11:56:00 +00:00
|
|
|
,m_eDefaultChecked( STATE_NOCHECK )
|
2004-11-16 09:42:15 +00:00
|
|
|
,m_bSupportSecondRefValue( _bSupportNoCheckRefValue )
|
2006-06-19 11:56:00 +00:00
|
|
|
,m_eValueExchangeType( eBoolean )
|
2004-11-16 09:42:15 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
//--------------------------------------------------------------------
|
|
|
|
OReferenceValueComponent::OReferenceValueComponent( const OReferenceValueComponent* _pOriginal, const Reference< XMultiServiceFactory>& _rxFactory )
|
|
|
|
:OBoundControlModel( _pOriginal, _rxFactory )
|
|
|
|
{
|
|
|
|
m_sReferenceValue = _pOriginal->m_sReferenceValue;
|
|
|
|
m_sNoCheckReferenceValue = _pOriginal->m_sNoCheckReferenceValue;
|
2006-06-19 11:56:00 +00:00
|
|
|
m_eDefaultChecked = _pOriginal->m_eDefaultChecked;
|
2004-11-16 09:42:15 +00:00
|
|
|
m_bSupportSecondRefValue = _pOriginal->m_bSupportSecondRefValue;
|
|
|
|
|
|
|
|
calcValueExchangeType();
|
|
|
|
}
|
|
|
|
|
|
|
|
//--------------------------------------------------------------------
|
|
|
|
OReferenceValueComponent::~OReferenceValueComponent()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
//--------------------------------------------------------------------
|
|
|
|
void OReferenceValueComponent::setReferenceValue( const ::rtl::OUString& _rRefValue )
|
|
|
|
{
|
|
|
|
m_sReferenceValue = _rRefValue;
|
|
|
|
calcValueExchangeType();
|
|
|
|
}
|
|
|
|
|
|
|
|
//--------------------------------------------------------------------
|
|
|
|
void SAL_CALL OReferenceValueComponent::getFastPropertyValue( Any& _rValue, sal_Int32 _nHandle ) const
|
|
|
|
{
|
|
|
|
switch ( _nHandle )
|
|
|
|
{
|
|
|
|
case PROPERTY_ID_REFVALUE: _rValue <<= m_sReferenceValue; break;
|
2006-06-19 11:56:00 +00:00
|
|
|
case PROPERTY_ID_DEFAULTCHECKED: _rValue <<= (sal_Int16)m_eDefaultChecked; break;
|
2004-11-16 09:42:15 +00:00
|
|
|
|
|
|
|
case PROPERTY_ID_UNCHECKED_REFVALUE:
|
|
|
|
OSL_ENSURE( m_bSupportSecondRefValue, "OReferenceValueComponent::getFastPropertyValue: not supported!" );
|
|
|
|
_rValue <<= m_sNoCheckReferenceValue;
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
OBoundControlModel::getFastPropertyValue( _rValue, _nHandle );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//--------------------------------------------------------------------
|
|
|
|
void SAL_CALL OReferenceValueComponent::setFastPropertyValue_NoBroadcast( sal_Int32 _nHandle, const Any& _rValue ) throw (Exception)
|
|
|
|
{
|
|
|
|
switch ( _nHandle )
|
|
|
|
{
|
|
|
|
case PROPERTY_ID_REFVALUE :
|
|
|
|
OSL_VERIFY( _rValue >>= m_sReferenceValue );
|
|
|
|
calcValueExchangeType();
|
|
|
|
break;
|
|
|
|
|
|
|
|
case PROPERTY_ID_UNCHECKED_REFVALUE:
|
|
|
|
OSL_ENSURE( m_bSupportSecondRefValue, "OReferenceValueComponent::setFastPropertyValue_NoBroadcast: not supported!" );
|
|
|
|
OSL_VERIFY( _rValue >>= m_sNoCheckReferenceValue );
|
|
|
|
break;
|
|
|
|
|
2006-06-19 11:56:00 +00:00
|
|
|
case PROPERTY_ID_DEFAULTCHECKED:
|
|
|
|
{
|
|
|
|
sal_Int16 nDefaultChecked( (sal_Int16)STATE_NOCHECK );
|
|
|
|
OSL_VERIFY( _rValue >>= nDefaultChecked );
|
|
|
|
m_eDefaultChecked = (CheckState)nDefaultChecked;
|
2004-11-16 09:42:15 +00:00
|
|
|
resetNoBroadcast();
|
2006-06-19 11:56:00 +00:00
|
|
|
}
|
|
|
|
break;
|
2004-11-16 09:42:15 +00:00
|
|
|
|
|
|
|
default:
|
|
|
|
OBoundControlModel::setFastPropertyValue_NoBroadcast( _nHandle, _rValue );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//--------------------------------------------------------------------
|
|
|
|
sal_Bool SAL_CALL OReferenceValueComponent::convertFastPropertyValue( Any& _rConvertedValue, Any& _rOldValue, sal_Int32 _nHandle, const Any& _rValue ) throw (IllegalArgumentException)
|
|
|
|
{
|
|
|
|
sal_Bool bModified = sal_False;
|
|
|
|
switch ( _nHandle )
|
|
|
|
{
|
|
|
|
case PROPERTY_ID_REFVALUE:
|
|
|
|
bModified = tryPropertyValue( _rConvertedValue, _rOldValue, _rValue, m_sReferenceValue );
|
|
|
|
break;
|
|
|
|
|
|
|
|
case PROPERTY_ID_UNCHECKED_REFVALUE:
|
|
|
|
OSL_ENSURE( m_bSupportSecondRefValue, "OReferenceValueComponent::convertFastPropertyValue: not supported!" );
|
|
|
|
bModified = tryPropertyValue( _rConvertedValue, _rOldValue, _rValue, m_sNoCheckReferenceValue );
|
|
|
|
break;
|
|
|
|
|
|
|
|
case PROPERTY_ID_DEFAULTCHECKED:
|
2006-06-19 11:56:00 +00:00
|
|
|
bModified = tryPropertyValue( _rConvertedValue, _rOldValue, _rValue, (sal_Int16)m_eDefaultChecked );
|
2004-11-16 09:42:15 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
bModified = OBoundControlModel::convertFastPropertyValue( _rConvertedValue, _rOldValue, _nHandle, _rValue );
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return bModified;
|
|
|
|
}
|
|
|
|
|
|
|
|
//------------------------------------------------------------------------------
|
|
|
|
Any OReferenceValueComponent::getDefaultForReset() const
|
|
|
|
{
|
2006-06-19 11:56:00 +00:00
|
|
|
return makeAny( (sal_Int16)m_eDefaultChecked );
|
2004-11-16 09:42:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//--------------------------------------------------------------------
|
2007-03-09 12:33:56 +00:00
|
|
|
void OReferenceValueComponent::describeFixedProperties( Sequence< Property >& _rProps ) const
|
2004-11-16 09:42:15 +00:00
|
|
|
{
|
|
|
|
BEGIN_DESCRIBE_PROPERTIES( m_bSupportSecondRefValue ? 3 : 2, OBoundControlModel )
|
|
|
|
DECL_PROP1( REFVALUE, ::rtl::OUString, BOUND );
|
|
|
|
DECL_PROP1( DEFAULTCHECKED, sal_Int16, BOUND );
|
|
|
|
if ( m_bSupportSecondRefValue )
|
|
|
|
{
|
|
|
|
DECL_PROP1( UNCHECKED_REFVALUE, ::rtl::OUString, BOUND );
|
|
|
|
}
|
|
|
|
END_DESCRIBE_PROPERTIES();
|
|
|
|
}
|
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
void OReferenceValueComponent::calcValueExchangeType()
|
|
|
|
{
|
|
|
|
m_eValueExchangeType = eBoolean;
|
|
|
|
if ( m_sReferenceValue.getLength()
|
|
|
|
&& hasExternalValueBinding()
|
|
|
|
&& getExternalValueBinding()->supportsType( ::getCppuType( static_cast< ::rtl::OUString* >( NULL ) ) )
|
|
|
|
)
|
|
|
|
m_eValueExchangeType = eString;
|
|
|
|
}
|
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
sal_Bool OReferenceValueComponent::approveValueBinding( const Reference< XValueBinding >& _rxBinding )
|
|
|
|
{
|
|
|
|
OSL_PRECOND( _rxBinding.is(), "OReferenceValueComponent::approveValueBinding: invalid binding!" );
|
|
|
|
|
|
|
|
// only strings are accepted for simplicity
|
|
|
|
return _rxBinding.is()
|
|
|
|
&& ( _rxBinding->supportsType( ::getCppuType( static_cast< ::rtl::OUString* >( NULL ) ) )
|
|
|
|
|| _rxBinding->supportsType( ::getCppuType( static_cast< sal_Bool* >( NULL ) ) )
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
void OReferenceValueComponent::onConnectedExternalValue( )
|
|
|
|
{
|
|
|
|
calcValueExchangeType();
|
|
|
|
OBoundControlModel::onConnectedExternalValue( );
|
|
|
|
}
|
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
2005-03-23 10:31:59 +00:00
|
|
|
Any OReferenceValueComponent::translateExternalValueToControlValue( ) const
|
2004-11-16 09:42:15 +00:00
|
|
|
{
|
|
|
|
OSL_PRECOND( getExternalValueBinding().is(), "OReferenceValueComponent::commitControlValueToExternalBinding: no active binding!" );
|
|
|
|
|
|
|
|
sal_Int16 nState = STATE_DONTKNOW;
|
|
|
|
if ( getExternalValueBinding().is() )
|
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
|
|
|
switch ( m_eValueExchangeType )
|
|
|
|
{
|
|
|
|
case eBoolean:
|
|
|
|
{
|
|
|
|
Any aExternalValue = getExternalValueBinding()->getValue( ::getCppuType( static_cast< sal_Bool* >( NULL ) ) );
|
|
|
|
sal_Bool bState = sal_False;
|
|
|
|
if ( aExternalValue >>= bState )
|
2006-10-12 10:13:41 +00:00
|
|
|
nState = sal::static_int_cast< sal_Int16 >(
|
|
|
|
bState ? STATE_CHECK : STATE_NOCHECK );
|
2004-11-16 09:42:15 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case eString:
|
|
|
|
{
|
|
|
|
Any aExternalValue = getExternalValueBinding()->getValue( ::getCppuType( static_cast< ::rtl::OUString* >( NULL ) ) );
|
|
|
|
::rtl::OUString sExternalValue;
|
|
|
|
if ( aExternalValue >>= sExternalValue )
|
|
|
|
{
|
|
|
|
if ( sExternalValue == m_sReferenceValue )
|
|
|
|
nState = STATE_CHECK;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if ( !m_bSupportSecondRefValue || ( sExternalValue == m_sNoCheckReferenceValue ) )
|
|
|
|
nState = STATE_NOCHECK;
|
|
|
|
else
|
|
|
|
nState = STATE_DONTKNOW;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
catch( const Exception& )
|
|
|
|
{
|
|
|
|
OSL_ENSURE( sal_False, "OReferenceValueComponent::translateExternalValueToControlValue: caught an exception!" );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return makeAny( nState );
|
|
|
|
}
|
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
2005-03-23 10:31:59 +00:00
|
|
|
Any OReferenceValueComponent::translateControlValueToExternalValue( ) const
|
2004-11-16 09:42:15 +00:00
|
|
|
{
|
|
|
|
Any aExternalValue;
|
|
|
|
|
|
|
|
try
|
|
|
|
{
|
|
|
|
Any aControlValue( m_xAggregateSet->getPropertyValue( PROPERTY_STATE ) );
|
|
|
|
sal_Int16 nControlValue = STATE_DONTKNOW;
|
|
|
|
aControlValue >>= nControlValue;
|
|
|
|
|
|
|
|
switch( nControlValue )
|
|
|
|
{
|
|
|
|
case STATE_CHECK:
|
|
|
|
if ( m_eValueExchangeType == eBoolean )
|
|
|
|
{
|
|
|
|
aExternalValue <<= (sal_Bool)sal_True;
|
|
|
|
}
|
|
|
|
else if ( m_eValueExchangeType == eString )
|
|
|
|
{
|
|
|
|
aExternalValue <<= m_sReferenceValue;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case STATE_NOCHECK:
|
|
|
|
if ( m_eValueExchangeType == eBoolean )
|
|
|
|
{
|
|
|
|
aExternalValue <<= (sal_Bool)sal_False;
|
|
|
|
}
|
|
|
|
else if ( m_eValueExchangeType == eString )
|
|
|
|
{
|
|
|
|
aExternalValue <<= m_bSupportSecondRefValue ? m_sNoCheckReferenceValue : ::rtl::OUString();
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
catch( const Exception& )
|
|
|
|
{
|
|
|
|
OSL_ENSURE( sal_False, "OReferenceValueComponent::translateControlValueToExternalValue: caught an exception!" );
|
|
|
|
}
|
|
|
|
|
|
|
|
return aExternalValue;
|
|
|
|
}
|
|
|
|
|
2006-03-15 08:23:51 +00:00
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
Any OReferenceValueComponent::translateControlValueToValidatableValue( ) const
|
|
|
|
{
|
|
|
|
if ( !m_xAggregateSet.is() )
|
|
|
|
return Any();
|
|
|
|
|
|
|
|
Any aControlValue( m_xAggregateSet->getPropertyValue( PROPERTY_STATE ) );
|
|
|
|
sal_Int16 nControlValue = STATE_DONTKNOW;
|
|
|
|
aControlValue >>= nControlValue;
|
|
|
|
|
|
|
|
Any aValidatableValue;
|
|
|
|
switch ( nControlValue )
|
|
|
|
{
|
|
|
|
case STATE_CHECK:
|
|
|
|
aValidatableValue <<= (sal_Bool)sal_True;
|
|
|
|
break;
|
|
|
|
case STATE_NOCHECK:
|
|
|
|
aValidatableValue <<= (sal_Bool)sal_False;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return aValidatableValue;
|
|
|
|
}
|
|
|
|
|
2004-11-16 09:42:15 +00:00
|
|
|
//........................................................................
|
|
|
|
} // namespace frm
|
|
|
|
//........................................................................
|
|
|
|
|