Home
last modified time | relevance | path

Searched refs:xLayoutManager (Results 1 – 25 of 39) sorted by relevance

12

/trunk/main/framework/source/helper/
H A Dstatusindicatorfactory.cxx390 if (xLayoutManager.is()) in implts_makeParentVisibleIfAllowed()
392 if ( !xLayoutManager->isVisible() ) in implts_makeParentVisibleIfAllowed()
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()
492 xLayoutManager->unlock(); in impl_createProgress()
527 if (xLayoutManager.is()) in impl_showProgress()
533 xLayoutManager->showElement( PROGRESS_RESOURCE ); in impl_showProgress()
570 if (xLayoutManager.is()) in impl_hideProgress()
[all …]
/trunk/main/chart2/source/controller/main/
H A DChartController.cxx431 uno::Reference< ::com::sun::star::frame::XLayoutManager > xLayoutManager; in attachFrame() local
432 xPropSet->getPropertyValue( C2U( "LayoutManager" ) ) >>= xLayoutManager; in attachFrame()
433 if ( xLayoutManager.is() ) in attachFrame()
435 xLayoutManager->lock(); in attachFrame()
436 xLayoutManager->requestElement( C2U( "private:resource/menubar/menubar" ) ); in attachFrame()
441 xLayoutManager->createElement( C2U( "private:resource/toolbar/toolbar" ) ); in attachFrame()
449 xLayoutManager->unlock(); in attachFrame()
452 m_xLayoutManagerEventBroadcaster.set( xLayoutManager, uno::UNO_QUERY ); in attachFrame()
1250 uno::Reference< ::com::sun::star::frame::XLayoutManager > xLayoutManager; in dispatch() local
1251 xPropSet->getPropertyValue( C2U( "LayoutManager" ) ) >>= xLayoutManager; in dispatch()
[all …]
H A DControllerCommandDispatch.cxx72 uno::Reference< ::com::sun::star::frame::XLayoutManager > xLayoutManager; in lcl_isStatusBarVisible() local
73 xPropSet->getPropertyValue( C2U( "LayoutManager" ) ) >>= xLayoutManager; in lcl_isStatusBarVisible()
74 if ( xLayoutManager.is() ) in lcl_isStatusBarVisible()
75 …bIsStatusBarVisible = xLayoutManager->isElementVisible( C2U("private:resource/statusbar/statusbar"… in lcl_isStatusBarVisible()
/trunk/main/sfx2/source/appl/
H A Dworkwin.cxx771 aValue >>= xLayoutManager; in DeleteControllers_Impl()
778 if ( xLayoutManager.is() ) in DeleteControllers_Impl()
780 xLayoutManager->reset(); in DeleteControllers_Impl()
1388 aValue >>= xLayoutManager; in GetStatusIndicator()
1389 if ( xLayoutManager.is() ) in GetStatusIndicator()
1461 aValue >>= xLayoutManager; in UpdateObjectBars_Impl()
1464 if ( !xLayoutManager.is() ) in UpdateObjectBars_Impl()
1478 xLayoutManager->lock(); in UpdateObjectBars_Impl()
1525 xLayoutManager->unlock(); in UpdateObjectBars_Impl()
1814 aValue >>= xLayoutManager; in UpdateStatusBar_Impl()
[all …]
H A Dappserv.cxx505 Reference< ::com::sun::star::frame::XLayoutManager > xLayoutManager; in MiscExec_Impl() local
511 aValue >>= xLayoutManager; in MiscExec_Impl()
522 if ( xLayoutManager.is() ) in MiscExec_Impl()
530 sal_Bool bShow( !xLayoutManager->isElementVisible( aToolbarName )); in MiscExec_Impl()
534 xLayoutManager->createElement( aToolbarName ); in MiscExec_Impl()
535 xLayoutManager->showElement( aToolbarName ); in MiscExec_Impl()
538 xLayoutManager->hideElement( aToolbarName ); in MiscExec_Impl()
/trunk/main/framework/source/uielement/
H A Dtoolbarsmenucontroller.cxx137 Reference< XLayoutManager > xLayoutManager; in getLayoutManagerFromFrame() local
147 return xLayoutManager; in getLayoutManagerFromFrame()
380 Reference< XLayoutManager > xLayoutManager( getLayoutManagerFromFrame( m_xFrame )); in fillPopupMenu() local
383 if ( xLayoutManager.is() ) in fillPopupMenu()
452 aTbEntry.bVisible = xLayoutManager->isElementVisible( pIter->first ); in fillPopupMenu()
697 if ( xLayoutManager.is() ) in itemSelected()
751 if ( xLayoutManager.is() ) in itemSelected()
764 xLayoutManager->createElement( aToolBarResName ); in itemSelected()
765 xLayoutManager->showElement( aToolBarResName ); in itemSelected()
771 xLayoutManager->hideElement( aToolBarResName ); in itemSelected()
[all …]
H A Dtoolbarmanager.cxx217 return xLayoutManager; in getLayoutManagerFromFrame()
1968 pExecuteInfo->xLayoutManager = getLayoutManagerFromFrame( m_xFrame ); in IMPL_LINK()
1980 pExecuteInfo->xLayoutManager = getLayoutManagerFromFrame( m_xFrame ); in IMPL_LINK()
1989 if ( xLayoutManager.is() ) in IMPL_LINK()
1994 xLayoutManager->unlockWindow( m_aResourceName ); in IMPL_LINK()
1996 xLayoutManager->lockWindow( m_aResourceName ); in IMPL_LINK()
2007 pExecuteInfo->xLayoutManager = getLayoutManagerFromFrame( m_xFrame ); in IMPL_LINK()
2022 if ( xLayoutManager.is() ) in IMPL_LINK()
2205 ( pExecuteInfo->xLayoutManager.is() ) && in IMPL_STATIC_LINK_NOINSTANCE()
2217 ( pExecuteInfo->xLayoutManager.is() )) in IMPL_STATIC_LINK_NOINSTANCE()
[all …]
H A Dstatusbarmanager.cxx628 css::uno::Reference< css::frame::XLayoutManager > xLayoutManager; in DataChanged() local
631 …tPropertyValue( rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "LayoutManager" ))) >>= xLayoutManager; in DataChanged()
632 if ( xLayoutManager.is() ) in DataChanged()
635 xLayoutManager->doLayout(); in DataChanged()
/trunk/main/vbahelper/source/vbahelper/
H A Dvbaapplicationbase.cxx212 …uno::Reference< frame::XLayoutManager > xLayoutManager( xProps->getPropertyValue( rtl::OUString(RT… in getDisplayStatusBar() local
214 if( xLayoutManager.is() && xLayoutManager->isElementVisible( url ) ){ in getDisplayStatusBar()
229 …uno::Reference< frame::XLayoutManager > xLayoutManager( xProps->getPropertyValue( rtl::OUString(RT… in setDisplayStatusBar() local
231 if( xLayoutManager.is() ){ in setDisplayStatusBar()
232 if( bDisplayStatusBar && !xLayoutManager->isElementVisible( url ) ){ in setDisplayStatusBar()
233 if( !xLayoutManager->showElement( url ) ) in setDisplayStatusBar()
234 xLayoutManager->createElement( url ); in setDisplayStatusBar()
237 else if( !bDisplayStatusBar && xLayoutManager->isElementVisible( url ) ){ in setDisplayStatusBar()
238 xLayoutManager->hideElement( url ); in setDisplayStatusBar()
H A Dvbacommandbar.cxx108 uno::Reference< frame::XLayoutManager > xLayoutManager = pCBarHelper->getLayoutManager(); in setVisible() local
111 xLayoutManager->createElement( m_sResourceUrl ); in setVisible()
112 xLayoutManager->showElement( m_sResourceUrl ); in setVisible()
116 xLayoutManager->hideElement( m_sResourceUrl ); in setVisible()
117 xLayoutManager->destroyElement( m_sResourceUrl ); in setVisible()
/trunk/main/sfx2/source/view/
H A Dframe2.cxx346 Reference< ::com::sun::star::frame::XLayoutManager > xLayoutManager; in SetPresentationMode() local
351 aValue >>= xLayoutManager; in SetPresentationMode()
354 if ( xLayoutManager.is() ) in SetPresentationMode()
355 xLayoutManager->setVisible( !bSet ); // we don't want to have ui in presentation mode in SetPresentationMode()
408 Reference< ::com::sun::star::frame::XLayoutManager > xLayoutManager; in SetMenuBarOn_Impl() local
413 aValue >>= xLayoutManager; in SetMenuBarOn_Impl()
416 if ( xLayoutManager.is() ) in SetMenuBarOn_Impl()
421 xLayoutManager->showElement( aMenuBarURL ); in SetMenuBarOn_Impl()
423 xLayoutManager->hideElement( aMenuBarURL ); in SetMenuBarOn_Impl()
H A Dviewfrm.cxx3131 Reference< ::com::sun::star::frame::XLayoutManager > xLayoutManager; in MiscExec_Impl() local
3137 aValue >>= xLayoutManager; in MiscExec_Impl()
3144 if ( xLayoutManager.is() ) in MiscExec_Impl()
3151 bShow = xLayoutManager->isElementVisible( aStatusbarResString ); in MiscExec_Impl()
3157 xLayoutManager->createElement( aStatusbarResString ); in MiscExec_Impl()
3158 xLayoutManager->showElement( aStatusbarResString ); in MiscExec_Impl()
3161 xLayoutManager->hideElement( aStatusbarResString ); in MiscExec_Impl()
3185 Reference< ::com::sun::star::frame::XLayoutManager > xLayoutManager; in MiscExec_Impl() local
3191 aValue >>= xLayoutManager; in MiscExec_Impl()
3309 if ( !( aProp >>= xLayoutManager )) in MiscState_Impl()
[all …]
/trunk/main/sd/source/ui/view/
H A DUpdateLockManager.cxx391 Reference<frame::XLayoutManager> xLayoutManager; in GetLayoutManager() local
406 aValue >>= xLayoutManager; in GetLayoutManager()
413 mxLayoutManager = xLayoutManager; in GetLayoutManager()
417 xLayoutManager = mxLayoutManager; in GetLayoutManager()
419 return xLayoutManager; in GetLayoutManager()
/trunk/main/basctl/source/basicide/
H A Dbasides1.cxx1174 Reference< ::com::sun::star::frame::XLayoutManager > xLayoutManager; in ManageToolbars() local
1176 a >>= xLayoutManager; in ManageToolbars()
1177 if ( xLayoutManager.is() ) in ManageToolbars()
1179 xLayoutManager->lock(); in ManageToolbars()
1182 xLayoutManager->destroyElement( aMacroBarResName ); in ManageToolbars()
1184 xLayoutManager->requestElement( aDialogBarResName ); in ManageToolbars()
1185 xLayoutManager->requestElement( aInsertControlsBarResName ); in ManageToolbars()
1189 xLayoutManager->destroyElement( aDialogBarResName ); in ManageToolbars()
1190 xLayoutManager->destroyElement( aInsertControlsBarResName ); in ManageToolbars()
1192 xLayoutManager->requestElement( aMacroBarResName ); in ManageToolbars()
[all …]
H A Dlocalizationmgr.cxx79 Reference< ::com::sun::star::frame::XLayoutManager > xLayoutManager; in handleTranslationbar() local
81 a >>= xLayoutManager; in handleTranslationbar()
82 if ( xLayoutManager.is() ) in handleTranslationbar()
86 xLayoutManager->destroyElement( aToolBarResName ); in handleTranslationbar()
90 xLayoutManager->createElement( aToolBarResName ); in handleTranslationbar()
91 xLayoutManager->requestElement( aToolBarResName ); in handleTranslationbar()
/trunk/main/dbaccess/source/ui/browser/
H A Dgenericcontroller.cxx1155 Reference< XLayoutManager > xLayoutManager; in getLayoutManager() local
1160xLayoutManager.set(xPropSet->getPropertyValue( rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "Layout… in getLayoutManager()
1166 return xLayoutManager; in getLayoutManager()
1171 Reference< XLayoutManager > xLayoutManager = getLayoutManager(_xFrame); in loadMenu() local
1172 if ( xLayoutManager.is() ) in loadMenu()
1174 xLayoutManager->lock(); in loadMenu()
1175xLayoutManager->createElement( rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "private:resource/menub… in loadMenu()
1176xLayoutManager->createElement( rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "private:resource/toolb… in loadMenu()
1177 xLayoutManager->unlock(); in loadMenu()
1178 xLayoutManager->doLayout(); in loadMenu()
[all …]
/trunk/main/framework/source/services/
H A Dbackingcomp.cxx511 css::uno::Reference< css::frame::XLayoutManager > xLayoutManager; in attachFrame() local
512 xPropSet->getPropertyValue(FRAME_PROPNAME_LAYOUTMANAGER) >>= xLayoutManager; in attachFrame()
513 if (xLayoutManager.is()) in attachFrame()
515 xLayoutManager->lock(); in attachFrame()
516 xLayoutManager->createElement( DECLARE_ASCII( "private:resource/menubar/menubar" )); in attachFrame()
523 xLayoutManager->unlock(); in attachFrame()
H A Dframe.cxx521 …id lcl_enableLayoutManager(const css::uno::Reference< css::frame::XLayoutManager >& xLayoutManager, in lcl_enableLayoutManager() argument
525 xLayoutManager->attachFrame(xFrame); in lcl_enableLayoutManager()
532 xLayoutManager->setDockingAreaAcceptor(xDockingAreaAcceptor); in lcl_enableLayoutManager()
538 …d lcl_disableLayoutManager(const css::uno::Reference< css::frame::XLayoutManager >& xLayoutManager, in lcl_disableLayoutManager() argument
543 xLayoutManager->setDockingAreaAcceptor(css::uno::Reference< css::ui::XDockingAreaAcceptor >()); in lcl_disableLayoutManager()
544 xLayoutManager->attachFrame(css::uno::Reference< css::frame::XFrame >()); in lcl_disableLayoutManager()
596 css::uno::Reference< css::frame::XLayoutManager > xLayoutManager = m_xLayoutManager; in initialize() local
603 if (xLayoutManager.is()) in initialize()
604 lcl_enableLayoutManager(xLayoutManager, this); in initialize()
3099 css::uno::Reference< css::frame::XLayoutManager > xLayoutManager; in impl_setCloser() local
[all …]
/trunk/main/sfx2/source/control/
H A Ddispatch.cxx1622 aValue >>= xLayoutManager; in SetMenu_Impl()
1623 if ( xLayoutManager.is() ) in SetMenu_Impl()
1626 if ( !xLayoutManager->isElementVisible( aMenuBarURL ) ) in SetMenu_Impl()
1686 aValue >>= xLayoutManager; in Update_Impl()
1693 if ( xLayoutManager.is() ) in Update_Impl()
1694 xLayoutManager->lock(); in Update_Impl()
1736 if ( xLayoutManager.is() ) in Update_Impl()
1737 xLayoutManager->unlock(); in Update_Impl()
2827 aValue >>= xLayoutManager; in HideUI()
2828 if ( xLayoutManager.is() ) in HideUI()
[all …]
/trunk/main/framework/source/dispatch/
H A Dpopupmenudispatcher.cxx369 css::uno::Reference< css::frame::XLayoutManager > xLayoutManager; in impl_RetrievePopupControllerQuery() local
379 xPropSet->getPropertyValue( FRAME_PROPNAME_LAYOUTMANAGER ) >>= xLayoutManager; in impl_RetrievePopupControllerQuery()
381 if ( xLayoutManager.is() ) in impl_RetrievePopupControllerQuery()
385 xMenuBar = xLayoutManager->getElement( aMenuBar ); in impl_RetrievePopupControllerQuery()
/trunk/main/dbaccess/source/ui/querydesign/
H A Dquerycontroller.cxx270 …Reference< ::com::sun::star::frame::XLayoutManager > xLayoutManager = _rController.getLayoutManage… in ensureToolbars() local
271 if ( xLayoutManager.is() ) in ensureToolbars()
273 xLayoutManager->lock(); in ensureToolbars()
278 xLayoutManager->destroyElement( s_sSqlToolbar ); in ensureToolbars()
279 xLayoutManager->createElement( s_sDesignToolbar ); in ensureToolbars()
283 xLayoutManager->destroyElement( s_sDesignToolbar ); in ensureToolbars()
284 xLayoutManager->createElement( s_sSqlToolbar ); in ensureToolbars()
286 xLayoutManager->unlock(); in ensureToolbars()
287 xLayoutManager->doLayout(); in ensureToolbars()
/trunk/main/sfx2/source/toolbox/
H A Dtbxitem.cxx761 Reference< XLayoutManager > xLayoutManager = getLayoutManager(); in endPopupMode() local
763 if ( !xLayoutManager.is() ) in endPopupMode()
766 xLayoutManager->createElement( aSubToolBarResName ); in endPopupMode()
767 xUIElement = xLayoutManager->getElement( aSubToolBarResName ); in endPopupMode()
789 xLayoutManager->hideElement( aSubToolBarResName ); in endPopupMode()
790 xLayoutManager->floatWindow( aSubToolBarResName ); in endPopupMode()
792xLayoutManager->setElementPos( aSubToolBarResName, aEvent.FloatingPosition ); in endPopupMode()
793 xLayoutManager->showElement( aSubToolBarResName ); in endPopupMode()
/trunk/main/sw/source/ui/utlui/
H A Dunotools.cxx220 uno::Reference< frame::XLayoutManager > xLayoutManager; in IMPL_LINK() local
222 aValue >>= xLayoutManager; in IMPL_LINK()
223 if ( xLayoutManager.is() ) in IMPL_LINK()
224 xLayoutManager->setVisible( sal_False ); in IMPL_LINK()
/trunk/main/extensions/source/bibliography/
H A Dbibload.cxx367 Reference< ::com::sun::star::frame::XLayoutManager > xLayoutManager; in loadView() local
373 a >>= xLayoutManager; in loadView()
380 if ( xLayoutManager.is() ) in loadView()
381xLayoutManager->createElement( OUString( RTL_CONSTASCII_USTRINGPARAM( "private:resource/menubar/me… in loadView()
/trunk/main/embeddedobj/source/general/
H A Ddocholder.cxx391 uno::Reference< ::com::sun::star::frame::XLayoutManager > xLayoutManager; in SetFrameLMVisibility() local
393 …tPropertyValue( rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "LayoutManager" ))) >>= xLayoutManager; in SetFrameLMVisibility()
394 if ( xLayoutManager.is() ) in SetFrameLMVisibility()
396 xLayoutManager->setVisible( bVisible ); in SetFrameLMVisibility()
401 xLayoutManager->unlock(); in SetFrameLMVisibility()
403 xLayoutManager->lock(); in SetFrameLMVisibility()

Completed in 193 milliseconds

12