Lines Matching refs:xLayoutManager

388         css::uno::Reference< css::frame::XLayoutManager > xLayoutManager;  in implts_makeParentVisibleIfAllowed()  local
389 xPropSet->getPropertyValue(FRAME_PROPNAME_LAYOUTMANAGER) >>= xLayoutManager; in implts_makeParentVisibleIfAllowed()
390 if (xLayoutManager.is()) in implts_makeParentVisibleIfAllowed()
392 if ( !xLayoutManager->isVisible() ) in implts_makeParentVisibleIfAllowed()
481 css::uno::Reference< css::frame::XLayoutManager > xLayoutManager; in impl_createProgress() local
482 xPropSet->getPropertyValue(FRAME_PROPNAME_LAYOUTMANAGER) >>= xLayoutManager; in impl_createProgress()
483 if (xLayoutManager.is()) in impl_createProgress()
485 xLayoutManager->lock(); in impl_createProgress()
486 xLayoutManager->createElement( PROGRESS_RESOURCE ); in impl_createProgress()
487 xLayoutManager->hideElement( PROGRESS_RESOURCE ); in impl_createProgress()
489 …css::uno::Reference< css::ui::XUIElement > xProgressBar = xLayoutManager->getElement(PROGRESS_RESO… in impl_createProgress()
492 xLayoutManager->unlock(); in impl_createProgress()
525 css::uno::Reference< css::frame::XLayoutManager > xLayoutManager; in impl_showProgress() local
526 xPropSet->getPropertyValue(FRAME_PROPNAME_LAYOUTMANAGER) >>= xLayoutManager; in impl_showProgress()
527 if (xLayoutManager.is()) in impl_showProgress()
532 xLayoutManager->createElement( PROGRESS_RESOURCE ); in impl_showProgress()
533 xLayoutManager->showElement( PROGRESS_RESOURCE ); in impl_showProgress()
535 …css::uno::Reference< css::ui::XUIElement > xProgressBar = xLayoutManager->getElement(PROGRESS_RESO… in impl_showProgress()
568 css::uno::Reference< css::frame::XLayoutManager > xLayoutManager; in impl_hideProgress() local
569 xPropSet->getPropertyValue(FRAME_PROPNAME_LAYOUTMANAGER) >>= xLayoutManager; in impl_hideProgress()
570 if (xLayoutManager.is()) in impl_hideProgress()
571 xLayoutManager->hideElement( PROGRESS_RESOURCE ); in impl_hideProgress()