Lines Matching refs:pValues

398     const Any* pValues = NULL;  in ScAppCfg()  local
403 pValues = aValues.getConstArray(); in ScAppCfg()
409 DBG_ASSERT(pValues[nProp].hasValue(), "property value missing"); in ScAppCfg()
410 if(pValues[nProp].hasValue()) in ScAppCfg()
415 if (pValues[nProp] >>= nIntVal) SetAppMetric( (FieldUnit) nIntVal ); in ScAppCfg()
418 if (pValues[nProp] >>= nIntVal) SetStatusFunc( (sal_uInt16) nIntVal ); in ScAppCfg()
421 if (pValues[nProp] >>= nIntVal) SetZoom( (sal_uInt16) nIntVal ); in ScAppCfg()
424 if (pValues[nProp] >>= nIntVal) SetZoomType( (SvxZoomType) nIntVal ); in ScAppCfg()
427 SetSynchronizeZoom( ScUnoHelpFunctions::GetBoolFromAny( pValues[nProp] ) ); in ScAppCfg()
438 pValues = aValues.getConstArray(); in ScAppCfg()
444 DBG_ASSERT(pValues[nProp].hasValue(), "property value missing"); in ScAppCfg()
445 if(pValues[nProp].hasValue()) in ScAppCfg()
450 lcl_SetLastFunctions( *this, pValues[nProp] ); in ScAppCfg()
453 SetAutoComplete( ScUnoHelpFunctions::GetBoolFromAny( pValues[nProp] ) ); in ScAppCfg()
456 SetDetectiveAuto( ScUnoHelpFunctions::GetBoolFromAny( pValues[nProp] ) ); in ScAppCfg()
467 pValues = aValues.getConstArray(); in ScAppCfg()
473 DBG_ASSERT(pValues[nProp].hasValue(), "property value missing"); in ScAppCfg()
474 if(pValues[nProp].hasValue()) in ScAppCfg()
479 … if (pValues[nProp] >>= nIntVal) SetTrackContentColor( (sal_uInt32) nIntVal ); in ScAppCfg()
482 if (pValues[nProp] >>= nIntVal) SetTrackInsertColor( (sal_uInt32) nIntVal ); in ScAppCfg()
485 if (pValues[nProp] >>= nIntVal) SetTrackDeleteColor( (sal_uInt32) nIntVal ); in ScAppCfg()
488 if (pValues[nProp] >>= nIntVal) SetTrackMoveColor( (sal_uInt32) nIntVal ); in ScAppCfg()
499 pValues = aValues.getConstArray(); in ScAppCfg()
505 DBG_ASSERT(pValues[nProp].hasValue(), "property value missing"); in ScAppCfg()
506 if(pValues[nProp].hasValue()) in ScAppCfg()
511 if (pValues[nProp] >>= nIntVal) SetLinkMode( (ScLkUpdMode) nIntVal ); in ScAppCfg()
522 pValues = aValues.getConstArray(); in ScAppCfg()
528 DBG_ASSERT(pValues[nProp].hasValue(), "property value missing"); in ScAppCfg()
529 if(pValues[nProp].hasValue()) in ScAppCfg()
534 lcl_SetSortList( pValues[nProp] ); in ScAppCfg()
545 pValues = aValues.getConstArray(); in ScAppCfg()
551 DBG_ASSERT(pValues[nProp].hasValue(), "property value missing"); in ScAppCfg()
552 if(pValues[nProp].hasValue()) in ScAppCfg()
557 if (pValues[nProp] >>= nIntVal) SetDefaultObjectSizeWidth( nIntVal ); in ScAppCfg()
560 if (pValues[nProp] >>= nIntVal) SetDefaultObjectSizeHeight( nIntVal ); in ScAppCfg()
563 … SetShowSharedDocumentWarning( ScUnoHelpFunctions::GetBoolFromAny( pValues[nProp] ) ); in ScAppCfg()
576 Any* pValues = aValues.getArray(); in IMPL_LINK() local
583 pValues[nProp] <<= (sal_Int32) GetAppMetric(); in IMPL_LINK()
586 pValues[nProp] <<= (sal_Int32) GetStatusFunc(); in IMPL_LINK()
589 pValues[nProp] <<= (sal_Int32) GetZoom(); in IMPL_LINK()
592 pValues[nProp] <<= (sal_Int32) GetZoomType(); in IMPL_LINK()
595 ScUnoHelpFunctions::SetBoolInAny( pValues[nProp], GetSynchronizeZoom() ); in IMPL_LINK()
608 Any* pValues = aValues.getArray(); in IMPL_LINK() local
615 lcl_GetLastFunctions( pValues[nProp], *this ); in IMPL_LINK()
618 ScUnoHelpFunctions::SetBoolInAny( pValues[nProp], GetAutoComplete() ); in IMPL_LINK()
621 ScUnoHelpFunctions::SetBoolInAny( pValues[nProp], GetDetectiveAuto() ); in IMPL_LINK()
634 Any* pValues = aValues.getArray(); in IMPL_LINK() local
641 pValues[nProp] <<= (sal_Int32) GetTrackContentColor(); in IMPL_LINK()
644 pValues[nProp] <<= (sal_Int32) GetTrackInsertColor(); in IMPL_LINK()
647 pValues[nProp] <<= (sal_Int32) GetTrackDeleteColor(); in IMPL_LINK()
650 pValues[nProp] <<= (sal_Int32) GetTrackMoveColor(); in IMPL_LINK()
663 Any* pValues = aValues.getArray(); in IMPL_LINK() local
670 pValues[nProp] <<= (sal_Int32) GetLinkMode(); in IMPL_LINK()
683 Any* pValues = aValues.getArray(); in IMPL_LINK() local
690 lcl_GetSortList( pValues[nProp] ); in IMPL_LINK()
703 Any* pValues = aValues.getArray(); in IMPL_LINK() local
710 pValues[nProp] <<= (sal_Int32) GetDefaultObjectSizeWidth(); in IMPL_LINK()
713 pValues[nProp] <<= (sal_Int32) GetDefaultObjectSizeHeight(); in IMPL_LINK()
716 ScUnoHelpFunctions::SetBoolInAny( pValues[nProp], GetShowSharedDocumentWarning() ); in IMPL_LINK()