Lines Matching refs:rValue

497 void OGridControlModel::getFastPropertyValue(Any& rValue, sal_Int32 nHandle ) const  in getFastPropertyValue()  argument
502 rValue <<= m_nContextWritingMode; in getFastPropertyValue()
505 rValue <<= m_nWritingMode; in getFastPropertyValue()
508 rValue <<= m_sHelpText; in getFastPropertyValue()
511 rValue <<= m_sHelpURL; in getFastPropertyValue()
514 setBOOL(rValue, m_bDisplaySynchron); in getFastPropertyValue()
517 setBOOL(rValue, m_bAlwaysShowCursor); in getFastPropertyValue()
520 rValue = m_aCursorColor; in getFastPropertyValue()
523 setBOOL(rValue, m_bPrintable); in getFastPropertyValue()
526 rValue = m_aTabStop; in getFastPropertyValue()
529 setBOOL(rValue, m_bNavigation); in getFastPropertyValue()
532 setBOOL(rValue, m_bRecordMarker); in getFastPropertyValue()
535 setBOOL(rValue, m_bEnable); in getFastPropertyValue()
538 setBOOL(rValue, m_bEnableVisible); in getFastPropertyValue()
541 rValue <<= (sal_Int16)m_nBorder; in getFastPropertyValue()
544 rValue <<= m_aBorderColor; in getFastPropertyValue()
547 rValue <<= m_aDefaultControl; in getFastPropertyValue()
550 rValue = m_aBackgroundColor; in getFastPropertyValue()
553 rValue = m_aRowHeight; in getFastPropertyValue()
558 FontControlModel::getFastPropertyValue( rValue, nHandle ); in getFastPropertyValue()
560 OControlModel::getFastPropertyValue( rValue, nHandle ); in getFastPropertyValue()
566 sal_Int32 nHandle, const Any& rValue )throw( IllegalArgumentException ) in convertFastPropertyValue() argument
572 bModified = tryPropertyValue( rConvertedValue, rOldValue, rValue, m_nContextWritingMode ); in convertFastPropertyValue()
575 bModified = tryPropertyValue( rConvertedValue, rOldValue, rValue, m_nWritingMode ); in convertFastPropertyValue()
578 bModified = tryPropertyValue(rConvertedValue, rOldValue, rValue, m_sHelpText); in convertFastPropertyValue()
581 bModified = tryPropertyValue(rConvertedValue, rOldValue, rValue, m_sHelpURL); in convertFastPropertyValue()
584 bModified = tryPropertyValue(rConvertedValue, rOldValue, rValue, m_bDisplaySynchron); in convertFastPropertyValue()
587 bModified = tryPropertyValue(rConvertedValue, rOldValue, rValue, m_bAlwaysShowCursor); in convertFastPropertyValue()
590 if (!rValue.hasValue() || !m_aCursorColor.hasValue()) in convertFastPropertyValue()
592 if (rValue.hasValue() && (TypeClass_LONG != rValue.getValueType().getTypeClass())) in convertFastPropertyValue()
597 rConvertedValue = rValue; in convertFastPropertyValue()
601 bModified = tryPropertyValue(rConvertedValue, rOldValue, rValue, getINT32(m_aCursorColor)); in convertFastPropertyValue()
604 bModified = tryPropertyValue(rConvertedValue, rOldValue, rValue, m_bPrintable); in convertFastPropertyValue()
607 …bModified = tryPropertyValue(rConvertedValue, rOldValue, rValue, m_aTabStop, ::getBooleanCppuType(… in convertFastPropertyValue()
610 bModified = tryPropertyValue(rConvertedValue, rOldValue, rValue, m_bNavigation); in convertFastPropertyValue()
613 bModified = tryPropertyValue(rConvertedValue, rOldValue, rValue, m_bRecordMarker); in convertFastPropertyValue()
616 bModified = tryPropertyValue(rConvertedValue, rOldValue, rValue, m_bEnable); in convertFastPropertyValue()
619 bModified = tryPropertyValue(rConvertedValue, rOldValue, rValue, m_bEnableVisible); in convertFastPropertyValue()
622 bModified = tryPropertyValue(rConvertedValue, rOldValue, rValue, m_nBorder); in convertFastPropertyValue()
625 …bModified = tryPropertyValue(rConvertedValue, rOldValue, rValue, m_aBorderColor, ::getCppuType((co… in convertFastPropertyValue()
628 bModified = tryPropertyValue(rConvertedValue, rOldValue, rValue, m_aDefaultControl); in convertFastPropertyValue()
631 …bModified = tryPropertyValue(rConvertedValue, rOldValue, rValue, m_aBackgroundColor, ::getCppuType… in convertFastPropertyValue()
635 …bModified = tryPropertyValue(rConvertedValue, rOldValue, rValue, m_aRowHeight, ::getCppuType((cons… in convertFastPropertyValue()
647 …dified = FontControlModel::convertFastPropertyValue( rConvertedValue, rOldValue, nHandle, rValue ); in convertFastPropertyValue()
649 … bModified = OControlModel::convertFastPropertyValue( rConvertedValue, rOldValue, nHandle, rValue); in convertFastPropertyValue()
655 void OGridControlModel::setFastPropertyValue_NoBroadcast( sal_Int32 nHandle, const Any& rValue ) th… in setFastPropertyValue_NoBroadcast() argument
660 rValue >>= m_nContextWritingMode; in setFastPropertyValue_NoBroadcast()
663 rValue >>= m_nWritingMode; in setFastPropertyValue_NoBroadcast()
666 rValue >>= m_sHelpText; in setFastPropertyValue_NoBroadcast()
669 rValue >>= m_sHelpURL; in setFastPropertyValue_NoBroadcast()
672 m_bDisplaySynchron = getBOOL(rValue); in setFastPropertyValue_NoBroadcast()
675 m_bAlwaysShowCursor = getBOOL(rValue); in setFastPropertyValue_NoBroadcast()
678 m_aCursorColor = rValue; in setFastPropertyValue_NoBroadcast()
681 m_bPrintable = getBOOL(rValue); in setFastPropertyValue_NoBroadcast()
684 m_aTabStop = rValue; in setFastPropertyValue_NoBroadcast()
687 m_bNavigation = getBOOL(rValue); in setFastPropertyValue_NoBroadcast()
690 m_bEnable = getBOOL(rValue); in setFastPropertyValue_NoBroadcast()
693 m_bEnableVisible = getBOOL(rValue); in setFastPropertyValue_NoBroadcast()
696 m_bRecordMarker = getBOOL(rValue); in setFastPropertyValue_NoBroadcast()
699 rValue >>= m_nBorder; in setFastPropertyValue_NoBroadcast()
702 m_aBorderColor = rValue; in setFastPropertyValue_NoBroadcast()
705 rValue >>= m_aDefaultControl; in setFastPropertyValue_NoBroadcast()
708 m_aBackgroundColor = rValue; in setFastPropertyValue_NoBroadcast()
711 m_aRowHeight = rValue; in setFastPropertyValue_NoBroadcast()
719 FontControlModel::setFastPropertyValue_NoBroadcast( nHandle, rValue ); in setFastPropertyValue_NoBroadcast()
725 OControlModel::setFastPropertyValue_NoBroadcast( nHandle, rValue ); in setFastPropertyValue_NoBroadcast()