Lines Matching refs:rPresSettings
325 sd::PresentationSettings& rPresSettings = mpDoc->getPresentationSettings(); in setPropertyValue() local
345 if( rPresSettings.mbAll != bVal ) in setPropertyValue()
347 rPresSettings.mbAll = bVal; in setPropertyValue()
350 rPresSettings.mbCustomShow = sal_False; in setPropertyValue()
363 if( bVal == rPresSettings.mbLockedPages ) in setPropertyValue()
366 rPresSettings.mbLockedPages = !bVal; in setPropertyValue()
380 if(rPresSettings.mbAnimationAllowed != bVal) in setPropertyValue()
383 rPresSettings.mbAnimationAllowed = bVal; in setPropertyValue()
407 rPresSettings.mbCustomShow = sal_True; in setPropertyValue()
421 if( rPresSettings.mbEndless != bVal) in setPropertyValue()
424 rPresSettings.mbEndless = bVal; in setPropertyValue()
436 if( rPresSettings.mbFullScreen != bVal) in setPropertyValue()
439 rPresSettings.mbFullScreen = bVal; in setPropertyValue()
449 …if( (rPresSettings.maPresPage != aPresPage) || !rPresSettings.mbCustomShow || !rPresSettings.mbAll… in setPropertyValue()
452 rPresSettings.maPresPage = getUiNameFromPageApiNameImpl(aPresPage); in setPropertyValue()
453 rPresSettings.mbCustomShow = sal_False; in setPropertyValue()
454 rPresSettings.mbAll = sal_False; in setPropertyValue()
466 if( rPresSettings.mbManual != bVal) in setPropertyValue()
469 rPresSettings.mbManual = bVal; in setPropertyValue()
481 if( rPresSettings.mbMouseVisible != bVal) in setPropertyValue()
484 rPresSettings.mbMouseVisible = bVal; in setPropertyValue()
497 if( rPresSettings.mbAlwaysOnTop != bVal) in setPropertyValue()
500 rPresSettings.mbAlwaysOnTop = bVal; in setPropertyValue()
513 if( rPresSettings.mbStartWithNavigator != bVal) in setPropertyValue()
516 rPresSettings.mbStartWithNavigator = bVal; in setPropertyValue()
529 if(rPresSettings.mbMouseAsPen != bVal) in setPropertyValue()
532 rPresSettings.mbMouseAsPen = bVal; in setPropertyValue()
543 if( rPresSettings.mnPauseTimeout != nValue ) in setPropertyValue()
546 rPresSettings.mnPauseTimeout = nValue; in setPropertyValue()
559 if( rPresSettings.mbShowPauseLogo != bVal ) in setPropertyValue()
562 rPresSettings.mbShowPauseLogo = bVal; in setPropertyValue()
606 const sd::PresentationSettings& rPresSettings = mpDoc->getPresentationSettings(); in getPropertyValue() local
613 return Any( (sal_Bool) ( !rPresSettings.mbCustomShow && rPresSettings.mbAll ) ); in getPropertyValue()
615 return Any( (sal_Bool) !rPresSettings.mbLockedPages ); in getPropertyValue()
617 return Any( rPresSettings.mbAnimationAllowed ); in getPropertyValue()
621 …SdCustomShow* pShow = (pList && rPresSettings.mbCustomShow)?(SdCustomShow*)pList->GetCurObject():N… in getPropertyValue()
630 return Any( rPresSettings.mbEndless ); in getPropertyValue()
632 return Any( rPresSettings.mbFullScreen ); in getPropertyValue()
637 if( !rPresSettings.mbCustomShow && !rPresSettings.mbAll ) in getPropertyValue()
638 aSlideName = getPageApiNameFromUiName( rPresSettings.maPresPage ); in getPropertyValue()
643 return Any( rPresSettings.mbManual ); in getPropertyValue()
645 return Any( rPresSettings.mbMouseVisible ); in getPropertyValue()
647 return Any( rPresSettings.mbAlwaysOnTop ); in getPropertyValue()
649 return Any( rPresSettings.mbStartWithNavigator ); in getPropertyValue()
651 return Any( rPresSettings.mbMouseAsPen ); in getPropertyValue()
653 return Any( rPresSettings.mnPauseTimeout ); in getPropertyValue()
655 return Any( rPresSettings.mbShowPauseLogo ); in getPropertyValue()