Lines Matching refs:mxController

262 …return xSlideShow.is() && xSlideShow->isRunning() && (xSlideShow->mxController->getViewShell() == …  in IsRunning()
269 …DBG_ASSERT( !mxController.is(), "sd::SlideShow::CreateController(), clean up old controller first!… in CreateController()
278 mxController = xController; in CreateController()
720 rtl::Reference< SlideshowImpl > xController( mxController ); in end()
723 mxController.clear(); in end()
850 if( mxController.is() ) in startWithArguments()
909 return mxController.is() && mxController->isRunning(); in isRunning()
918 Reference< XSlideShowController > xController( mxController.get() ); in getController()
936 if( mxController.is() ) in disposing()
938 mxController->dispose(); in disposing()
939 mxController.clear(); in disposing()
978 return mxController.is() ? mxController->mpShowWindow : 0; in getShowWindow()
985 return mxController.is() ? mxController->meAnimationMode : ANIMATIONMODE_SHOW; in getAnimationMode()
992 if( mxController.is() ) in jumpToPageIndex()
993 mxController->displaySlideIndex( nPageIndex ); in jumpToPageIndex()
1000 if( mxController.is() ) in jumpToPageNumber()
1001 mxController->displaySlideNumber( nPageNumber ); in jumpToPageNumber()
1008 return mxController.is() ? mxController->getCurrentSlideNumber() : 0; in getCurrentPageNumber()
1015 if( mxController.is() ) in jumpToBookmark()
1016 mxController->jumpToBookmark( sBookmark ); in jumpToBookmark()
1023 return mxController.is() ? mxController->maPresSettings.mbFullScreen : false; in isFullScreen()
1030 if( mxController.is() ) in resize()
1031 mxController->resize( rSize ); in resize()
1038 if( (mpFullScreenViewShellBase == &rBase) && !mxController.is() ) in activate()
1048 if( mxController->startShow(mxCurrentSettings.get()) ) in activate()
1062 if( mxController.is() ) in activate()
1063 mxController->activate(); in activate()
1070 mxController->deactivate(); in deactivate()
1077 return mxController.is() ? mxController->keyInput(rKEvt) : false; in keyInput()
1084 if( mxController.is() ) in paint()
1085 mxController->paint( rRect ); in paint()
1092 return mxController.is() ? mxController->maPresSettings.mbAlwaysOnTop : false; in isAlwaysOnTop()
1099 if( mxController.is() ) in pause()
1102 mxController->pause(); in pause()
1104 mxController->resume(); in pause()
1113 if( mxController.is() ) in receiveRequest()
1114 mxController->receiveRequest( rReq ); in receiveRequest()
1121 return mxController.is() ? mxController->getFirstSlideNumber() : 0; in getFirstPageNumber()
1128 return mxController.is() ? mxController->getLastSlideNumber() : 0; in getLastPageNumber()
1135 return mxController.is() ? mxController->isEndless() : false; in isEndless()
1142 return mxController.is() ? mxController->getUsePen() : false; in isDrawingPossible()
1213 if( mxController.is() ) in StartInPlacePresentation()
1218 …bSuccess = mxController->startPreview(mxCurrentSettings->mxStartPage, mxCurrentSettings->mxAnimati… in StartInPlacePresentation()
1222 bSuccess = mxController->startShow(mxCurrentSettings.get()); in StartInPlacePresentation()
1298 …return mxController.is() && (pViewShellBase == mpCurrentViewShellBase) && mpFullScreenViewShellBas… in dependsOn()