Home
last modified time | relevance | path

Searched refs:xFrame (Results 1 – 25 of 337) sorted by relevance

12345678910>>...14

/trunk/main/bean/java/officebean/src/main/java/com/sun/star/comp/beans/
H A DFrame.java39 private com.sun.star.frame.XFrame xFrame; field in Frame
43 public Frame( com.sun.star.frame.XFrame xFrame ) in Frame() argument
45 super( xFrame ); in Frame()
46 this.xFrame = xFrame; in Frame()
49 xFrame ); in Frame()
52 xFrame ); in Frame()
61 xFrame.initialize( xWindow ); in initialize()
66 return xFrame.getContainerWindow(); in getContainerWindow()
71 xFrame.setCreator( xCreator ); in setCreator()
76 return xFrame.getCreator(); in getCreator()
[all …]
/trunk/main/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/
H A DFunctionHelper.java139 com.sun.star.frame.XFrame xFrame = null; in impl_createEmptyFrame() local
142 xFrame = (com.sun.star.frame.XFrame)UnoRuntime.queryInterface( in impl_createEmptyFrame()
148 if (xFrame==null) in impl_createEmptyFrame()
151 xFrame = (com.sun.star.frame.XFrame)UnoRuntime.queryInterface( in impl_createEmptyFrame()
158 return xFrame; in impl_createEmptyFrame()
340 com.sun.star.frame.XFrame xFrame = null; in createViewFrame() local
348 xFrame = impl_createEmptyFrame(xCtx); in createViewFrame()
362 xFrame.initialize( xWindow ); in createViewFrame()
371 xChildContainer.append(xFrame); in createViewFrame()
375 xFrame.setName(sName); in createViewFrame()
[all …]
H A DStatusListener.java93 /*IN*/ com.sun.star.frame.XFrame xFrame , in StatusListener() argument
99 m_xFrame = xFrame ; in StatusListener()
121 com.sun.star.frame.XFrame xFrame = null; in startListening() local
130 xFrame = m_xFrame; in startListening()
132 xFrame.addFrameActionListener(this); in startListening()
339 com.sun.star.frame.XFrame xFrame = null ; in impl_frameAction() local
351 xFrame = m_xFrame; in impl_frameAction()
363 xFrame); in impl_frameAction()
432 com.sun.star.frame.XFrame xFrame = null ; in shutdown() local
448 xFrame = m_xFrame; in shutdown()
[all …]
H A DCustomizeView.java136 public void setFrame(com.sun.star.frame.XFrame xFrame) in setFrame() argument
138 if (xFrame==null) in setFrame()
143 …kListener aMenuBarHandler = new ClickListener(FEATUREURL_MENUBAR ,FEATUREPROP_MENUBAR ,xFrame); in setFrame()
144 …kListener aToolBarHandler = new ClickListener(FEATUREURL_TOOLBAR ,FEATUREPROP_TOOLBAR ,xFrame); in setFrame()
145 …kListener aObjectBarHandler = new ClickListener(FEATUREURL_OBJECTBAR,FEATUREPROP_OBJECTBAR,xFrame); in setFrame()
154 …m_aMenuBarListener = new StatusListener(m_cbMenuBar ,MENUBAR_ON ,MENUBAR_OFF ,xFrame, FEATURE… in setFrame()
155 …m_aToolBarListener = new StatusListener(m_cbToolBar ,TOOLBAR_ON ,TOOLBAR_OFF ,xFrame, FEATURE… in setFrame()
156 …m_aObjectBarListener = new StatusListener(m_cbObjectBar,OBJECTBAR_ON,OBJECTBAR_OFF,xFrame, FEATURE… in setFrame()
197 com.sun.star.frame.XFrame xFrame ) in ClickListener() argument
201 m_xFrame = xFrame; in ClickListener()
H A DInterceptor.java97 Interceptor(/*IN*/ com.sun.star.frame.XFrame xFrame) in Interceptor() argument
99 m_xFrame = xFrame ; in Interceptor()
118 com.sun.star.frame.XFrame xFrame = null; in startListening() local
127 xFrame = m_xFrame; in startListening()
324 com.sun.star.frame.XFrame xFrame = null ; in impl_frameAction() local
330 xFrame = m_xFrame; in impl_frameAction()
335 xFrame); in impl_frameAction()
616 com.sun.star.frame.XFrame xFrame = null ; in shutdown() local
632 xFrame = m_xFrame; in shutdown()
641 xFrame.removeFrameActionListener(this); in shutdown()
[all …]
/trunk/main/framework/qa/complex/dispatches/
H A Dcheckdispatchapi.java229 XFrame xFrame = impl_createNewFrame(); in callDatabaseDispatch() local
231 impl_loadIntoFrame(xFrame, url, new PropertyValue[] in callDatabaseDispatch()
235 impl_checkDispatchInfo(xFrame); in callDatabaseDispatch()
236 impl_closeFrame(xFrame); in callDatabaseDispatch()
267 XFrame xFrame = impl_createNewFrame(); in checkInterceptorLifeTime() local
268 …nterception xInterception = UnoRuntime.queryInterface(XDispatchProviderInterception.class, xFrame); in checkInterceptorLifeTime()
271 impl_closeFrame(xFrame); in checkInterceptorLifeTime()
305 XFrame xFrame = impl_createNewFrame(); in checkInterception() local
306 impl_loadIntoFrame(xFrame, "private:factory/swriter", null); in checkInterception()
308 …nterception xInterception = UnoRuntime.queryInterface(XDispatchProviderInterception.class, xFrame); in checkInterception()
[all …]
/trunk/main/wizards/com/sun/star/wizards/letter/
H A DLetterDocument.java243 XTextFrame xFrame; field in LetterDocument.BusinessPaperObject
256xFrame = UnoRuntime.queryInterface(XTextFrame.class, xMSFDoc.createInstance("com.sun.star.text.Tex… in BusinessPaperObject()
257 xShape = UnoRuntime.queryInterface(XShape.class, xFrame); in BusinessPaperObject()
263 Helper.setUnoPropertyValue(xFrame, "TextWrap", WrapTextMode.THROUGHT); in BusinessPaperObject()
264 Helper.setUnoPropertyValue(xFrame, "Opaque", Boolean.TRUE); in BusinessPaperObject()
265 Helper.setUnoPropertyValue(xFrame, "BackColor", 15790320); in BusinessPaperObject()
269 Helper.setUnoPropertyValue(xFrame, "LeftBorder", myBorder); in BusinessPaperObject()
270 Helper.setUnoPropertyValue(xFrame, "RightBorder", myBorder); in BusinessPaperObject()
271 Helper.setUnoPropertyValue(xFrame, "TopBorder", myBorder); in BusinessPaperObject()
272 Helper.setUnoPropertyValue(xFrame, "BottomBorder", myBorder); in BusinessPaperObject()
[all …]
/trunk/main/odk/examples/cpp/complextoolbarcontrols/
H A DListenerHelper.cxx39 const Reference < XFrame >& xFrame, in AddListener()
46 if ( aListeners[i].xFrame == xFrame ) in AddListener()
54 const Reference < XFrame >& xFrame, in RemoveListener()
61 if ( aListeners[i].xFrame == xFrame ) in RemoveListener()
80 const Reference < XFrame >& xFrame, in Notify()
87 if ( aListeners[i].xFrame == xFrame ) in Notify()
102 const Reference < XFrame >& xFrame, in GetDispatch()
108 if ( aListeners[i].xFrame == xFrame ) in GetDispatch()
117 const Reference < XFrame >& xFrame, in AddDispatch()
121 aItem.xFrame = xFrame; in AddDispatch()
[all …]
/trunk/main/framework/source/helper/
H A Dtitlebarupdate.cxx164 css::uno::Reference< css::frame::XFrame > xFrame; in initialize() local
171 lArguments[0] >>= xFrame; in initialize()
172 if (!xFrame.is()) in initialize()
181 m_xFrame = xFrame; in initialize()
186 xFrame->addFrameActionListener(this); in initialize()
188 …css::uno::Reference< css::frame::XTitleChangeBroadcaster > xBroadcaster(xFrame, css::uno::UNO_QUER… in initialize()
224 …_Bool TitleBarUpdate::implst_getModuleInfo(const css::uno::Reference< css::frame::XFrame >& xFrame, in implst_getModuleInfo() argument
227 if ( ! xFrame.is ()) in implst_getModuleInfo()
246 rInfo.sID = xModuleManager->identify(xFrame); in implst_getModuleInfo()
269 …css::uno::Reference< css::frame::XFrame > xFrame(m_xFrame.get(), css::uno::UNO_QUERY); in impl_forceUpdate() local
[all …]
H A Dtagwindowasmodified.cxx103 css::uno::Reference< css::frame::XFrame > xFrame; in initialize() local
106 lArguments[0] >>= xFrame; in initialize()
108 if ( ! xFrame.is ()) in initialize()
113 m_xFrame = xFrame ; in initialize()
117 xFrame->addFrameActionListener(this); in initialize()
118 impl_update (xFrame); in initialize()
176 css::uno::Reference< css::frame::XFrame > xFrame(m_xFrame.get(), css::uno::UNO_QUERY); in frameAction() local
178 ( ! xFrame.is () ) || in frameAction()
179 (aEvent.Source != xFrame) in frameAction()
186 impl_update (xFrame); in frameAction()
[all …]
H A Doframes.cxx106 void SAL_CALL OFrames::append( const css::uno::Reference< XFrame >& xFrame ) throw( RuntimeExceptio… in append() argument
113 …LOG_ASSERT( impldbg_checkParameter_append( xFrame ), "OFrames::append()\nInvalid parameter detecte… in append()
121 m_pFrameContainer->append( xFrame ); in append()
123 xFrame->setCreator( xOwner ); in append()
132 void SAL_CALL OFrames::remove( const css::uno::Reference< XFrame >& xFrame ) throw( RuntimeExceptio… in remove() argument
139 …LOG_ASSERT( impldbg_checkParameter_remove( xFrame ), "OFrames::remove()\nInvalid parameter detecte… in remove()
147 m_pFrameContainer->remove( xFrame ); in remove()
457 sal_Bool OFrames::impldbg_checkParameter_append( const css::uno::Reference< XFrame >& xFrame ) in impldbg_checkParameter_append() argument
463 ( &xFrame == NULL ) || in impldbg_checkParameter_append()
464 ( xFrame.is() == sal_False ) in impldbg_checkParameter_append()
[all …]
H A Ddockingareadefaultacceptor.cxx99 css::uno::Reference< XFrame > xFrame( m_xOwner.get(), UNO_QUERY ); in getContainerWindow() local
100 css::uno::Reference< css::awt::XWindow > xContainerWindow( xFrame->getContainerWindow() ); in getContainerWindow()
111 css::uno::Reference< XFrame > xFrame( m_xOwner.get(), UNO_QUERY ); in requestDockingAreaSpace() local
114 if ( xFrame.is() == sal_True ) in requestDockingAreaSpace()
116 css::uno::Reference< css::awt::XWindow > xContainerWindow( xFrame->getContainerWindow() ); in requestDockingAreaSpace()
117 css::uno::Reference< css::awt::XWindow > xComponentWindow( xFrame->getComponentWindow() ); in requestDockingAreaSpace()
151 css::uno::Reference< XFrame > xFrame( m_xOwner.get(), UNO_QUERY ); in setDockingAreaSpace() local
152 if ( xFrame.is() == sal_True ) in setDockingAreaSpace()
154 css::uno::Reference< css::awt::XWindow > xContainerWindow( xFrame->getContainerWindow() ); in setDockingAreaSpace()
155 css::uno::Reference< css::awt::XWindow > xComponentWindow( xFrame->getComponentWindow() ); in setDockingAreaSpace()
/trunk/main/sdext/source/minimizer/
H A Dpppoptimizerdialog.cxx82 Reference< XFrame > xFrame; in initialize() local
89 for ( ; pAny != pEnd && !xFrame.is() && !xWindow.is(); pAny++ ) in initialize()
91 if ( ( *pAny >>= xFrame ) && xFrame.is() ) in initialize()
93 xWindow = xFrame->getContainerWindow(); in initialize()
97 xFrame = xController->getFrame(); in initialize()
98 if ( xFrame.is() ) in initialize()
99 xWindow = xFrame->getContainerWindow(); in initialize()
106 xFrame = xController->getFrame(); in initialize()
107 if ( xFrame.is() ) in initialize()
108 xWindow = xFrame->getContainerWindow(); in initialize()
[all …]
/trunk/main/framework/source/dispatch/
H A Ddispatchprovider.cxx118 … const css::uno::Reference< css::frame::XFrame >& xFrame ) in DEFINE_XINTERFACE_2()
124 , m_xFrame ( xFrame ) in DEFINE_XINTERFACE_2()
333 …ider::implts_queryFrameDispatch( const css::uno::Reference< css::frame::XFrame > xFrame , in implts_queryFrameDispatch() argument
362 …css::uno::Reference< css::frame::XDispatchProvider > xParent( xFrame->getCreator(), css::uno::UNO_… in implts_queryFrameDispatch()
374 xDispatcher = implts_getOrCreateDispatchHelper( E_MENUDISPATCHER, xFrame ); in implts_queryFrameDispatch()
385 if (WindowHelper::isTopWindow(xFrame->getContainerWindow())) in implts_queryFrameDispatch()
386 xDispatcher = implts_getOrCreateDispatchHelper( E_HELPAGENTDISPATCHER, xFrame ); in implts_queryFrameDispatch()
393 …css::uno::Reference< css::frame::XDispatchProvider > xProvider( xFrame->getCreator(), css::uno::UN… in implts_queryFrameDispatch()
407 …css::uno::Reference< css::frame::XDispatchProvider > xBeamer( xFrame->findFrame( SPECIALTARGET_BEA… in implts_queryFrameDispatch()
414 …css::uno::Reference< css::frame::XDispatchProvider > xController( xFrame->getController(), css::un… in implts_queryFrameDispatch()
[all …]
H A Dmenudispatcher.cxx202 uno::Reference< XFrame > xFrame( m_xOwnerWeak.get(), UNO_QUERY ); in frameAction() local
205 if ( xFrame.is() && pMenuBar ) in frameAction()
207 … uno::Reference< ::com::sun::star::awt::XWindow >xContainerWindow = xFrame->getContainerWindow(); in frameAction()
246 uno::Reference< XFrame > xFrame( m_xOwnerWeak.get(), UNO_QUERY ); in disposing() local
247 if ( xFrame.is() ) in disposing()
249xFrame->removeFrameActionListener( uno::Reference< XFrameActionListener >( (OWeakObject *)this, UN… in disposing()
254 aEventObj.Source = xFrame; in disposing()
298 uno::Reference< XFrame > xFrame( m_xOwnerWeak.get(), UNO_QUERY ); in impl_setMenuBar() local
299 if ( xFrame.is() ) in impl_setMenuBar()
301 … uno::Reference< ::com::sun::star::awt::XWindow >xContainerWindow = xFrame->getContainerWindow(); in impl_setMenuBar()
[all …]
H A Dclosedispatcher.cxx92 … const css::uno::Reference< css::frame::XFrame >& xFrame , in DEFINE_XINTERFACE_4()
100 m_xCloseFrame = CloseDispatcher::static_impl_searchRightTargetFrame(xFrame, sTarget); in DEFINE_XINTERFACE_4()
457 …lts_prepareFrameForClosing(const css::uno::Reference< css::frame::XFrame >& xFrame , in implts_prepareFrameForClosing() argument
463 if (! xFrame.is()) in implts_prepareFrameForClosing()
479 FrameListAnalyzer aCheck(xDesktop, xFrame, FrameListAnalyzer::E_ALL); in implts_prepareFrameForClosing()
494 css::uno::Reference< css::frame::XController > xController = xFrame->getController(); in implts_prepareFrameForClosing()
514 css::uno::Reference< css::frame::XFrame > xFrame (m_xCloseFrame.get(), css::uno::UNO_QUERY); in implts_closeFrame() local
519 if ( ! xFrame.is() ) in implts_closeFrame()
525 if (!fpf::closeIt(xFrame, sal_False)) in implts_closeFrame()
543 …css::uno::Reference< css::frame::XFrame > xFrame (m_xCloseFrame.get(), css::uno::UNO_… in implts_establishBackingMode() local
[all …]
/trunk/main/framework/source/classes/
H A Dframecontainer.cxx115 void FrameContainer::append( const css::uno::Reference< css::frame::XFrame >& xFrame ) in append() argument
117 if (xFrame.is() && ! exist(xFrame)) in append()
121 m_aContainer.push_back( xFrame ); in append()
139 void FrameContainer::remove( const css::uno::Reference< css::frame::XFrame >& xFrame ) in remove() argument
145 TFrameIterator aSearchedItem = ::std::find( m_aContainer.begin(), m_aContainer.end(), xFrame ); in remove()
151 if (m_xActiveFrame==xFrame) in remove()
182 sal_Bool FrameContainer::exist( const css::uno::Reference< css::frame::XFrame >& xFrame ) const in exist()
186 return( ::std::find( m_aContainer.begin(), m_aContainer.end(), xFrame ) != m_aContainer.end() ); in exist()
257 css::uno::Reference< css::frame::XFrame > xFrame; in operator []() local
264 xFrame = m_aContainer.at( nIndex ); in operator []()
[all …]
/trunk/main/framework/source/fwe/classes/
H A Dframelistanalyzer.cxx190 css::uno::Reference< css::frame::XFrame > xFrame; in impl_analyze() local
192 !(xFrameContainer->getByIndex(i) >>= xFrame) || in impl_analyze()
193 !(xFrame.is() ) || in impl_analyze()
194 (xFrame==m_xReferenceFrame ) in impl_analyze()
202 (!xFrame->getContainerWindow().is()) || in impl_analyze()
203 (!xFrame->getComponentWindow().is()) in impl_analyze()
216 (xFrame->getName()==SPECIALTARGET_HELPTASK) in impl_analyze()
219 m_xHelp = xFrame; in impl_analyze()
234 ::rtl::OUString sModule = xModuleMgr->identify(xFrame); in impl_analyze()
237 m_xBackingComponent = xFrame; in impl_analyze()
[all …]
/trunk/main/framework/source/uielement/
H A Dtoolbarmerger.cxx322 const uno::Reference< frame::XFrame >& xFrame, in ProcessMergeOperation()
333 … return MergeItems( xFrame, pToolbar, nPos, 1, rItemId, rCommandMap, rModuleIdentifier, rItems ); in ProcessMergeOperation()
335 … return MergeItems( xFrame, pToolbar, nPos, 0, rItemId, rCommandMap, rModuleIdentifier, rItems ); in ProcessMergeOperation()
337 … return ReplaceItem( xFrame, pToolbar, nPos, rItemId, rCommandMap, rModuleIdentifier, rItems ); in ProcessMergeOperation()
391 const ::com::sun::star::uno::Reference< ::com::sun::star::frame::XFrame >& xFrame, in ProcessMergeFallback()
411 … return MergeItems( xFrame, pToolbar, 0, 0, rItemId, rCommandMap, rModuleIdentifier, rItems ); in ProcessMergeFallback()
413 …return MergeItems( xFrame, pToolbar, TOOLBOX_APPEND, 0, rItemId, rCommandMap, rModuleIdentifier, r… in ProcessMergeFallback()
472 uno::Reference< frame::XFrame > xFrame( rFrame ); in MergeItems() local
554 const uno::Reference< frame::XFrame >& xFrame, in ReplaceItem()
563 …return MergeItems( xFrame, pToolbar, nPos, 0, rItemId, rCommandMap, rModuleIdentifier, rAddonToolb… in ReplaceItem()
[all …]
/trunk/main/sfx2/source/dialog/
H A Dpartwnd.cxx86 ::com::sun::star::uno::Reference< ::com::sun::star::frame::XFrame > xFrame = GetFrame(); in ~SfxPartChildWnd_Impl()
103 if ( pWin && xFrame == pWin->GetBindings().GetActiveFrame() ) in ~SfxPartChildWnd_Impl()
146 ::com::sun::star::uno::Reference < ::com::sun::star::frame::XFrame > xFrame( in SfxPartDockWnd_Impl()
149 xFrame->initialize( VCLUnoHelper::GetInterface ( this ) ); in SfxPartDockWnd_Impl()
152 xFrame, ::com::sun::star::uno::UNO_QUERY ); in SfxPartDockWnd_Impl()
173 pChildWin->SetFrame( xFrame ); in SfxPartDockWnd_Impl()
179 xSupp->getFrames()->append( xFrame ); in SfxPartDockWnd_Impl()
217 … ::com::sun::star::uno::Reference< ::com::sun::star::frame::XFrame > xFrame = pChild->GetFrame(); in QueryClose()
218 if( xFrame.is() ) in QueryClose()
220 …sun::star::uno::Reference< ::com::sun::star::frame::XController > xCtrl = xFrame->getController(); in QueryClose()
[all …]
/trunk/main/sfx2/source/menu/
H A Dvirtmenu.cxx340 Reference< com::sun::star::frame::XFrame > xFrame( pViewFrame->GetFrame().GetFrameInterface() ); in CreateFromSVMenu() local
346 if ( nPos != MENU_ITEM_NOTFOUND && xFrame.is() ) in CreateFromSVMenu()
349 …framework::AddonMenuManager::MergeAddonPopupMenus( xFrame, nPos, (MenuBar *)pSVMenu, aXMultiServic… in CreateFromSVMenu()
353 if ( xFrame.is() ) in CreateFromSVMenu()
354 …framework::AddonMenuManager::MergeAddonHelpMenu( xFrame, (MenuBar *)pSVMenu, aXMultiServiceFactory… in CreateFromSVMenu()
434 Image aImage = GetImage( xFrame, aSlotURL, sal_False, bWasHighContrast ); in CreateFromSVMenu()
513 … aImage = RetrieveAddOnImage( xFrame, aImageId, aCmd, sal_False, bWasHighContrast ); in CreateFromSVMenu()
519 aImage = GetImage( xFrame, aSlotURL, sal_False, bWasHighContrast ); in CreateFromSVMenu()
575 Reference<com::sun::star::frame::XFrame> xFrame( pViewFrame->GetFrame().GetFrameInterface() ); in IMPL_LINK() local
597 …pSVMenu->SetItemImage( nSlotId, RetrieveAddOnImage( xFrame, aImageId, aCmd, sal_False, bIsHiContra… in IMPL_LINK()
[all …]
/trunk/main/dbaccess/source/ui/app/
H A Dsubcomponentmanager.cxx97 Reference< XFrame > xFrame; member
111 ,xFrame() in SubComponentDescriptor()
136 inline bool is() const { return xFrame.is(); } in is()
147 xFrame.set( xController->getFrame(), UNO_SET_THROW ); in impl_constructFrom()
155 xFrame.set( xController->getFrame(), UNO_SET_THROW ); in impl_constructFrom()
160 xFrame.set( _rxComponent, UNO_QUERY ); in impl_constructFrom()
161 if ( !xFrame.is() ) in impl_constructFrom()
165 xController.set( xFrame->getController(), UNO_SET_THROW ); in impl_constructFrom()
289 _rCompDesc.xFrame.set( xFallback->getFrame(), UNO_SET_THROW ); in lcl_fallbackToAnotherController()
334 Reference< XCloseable > xCloseable( _rComponent.xFrame, UNO_QUERY_THROW ); in lcl_closeComponent()
[all …]
/trunk/main/sc/source/ui/sidebar/
H A DScPanelFactory.cxx103 Reference<frame::XFrame> xFrame (aArguments.getOrDefault("Frame", Reference<frame::XFrame>())); in createUIElement() local
113 if ( ! xFrame.is()) in createUIElement()
125 …AlignmentPropertyPanel* pPanel = AlignmentPropertyPanel::Create( pParentWindow, xFrame, pBindings … in createUIElement()
128 xFrame, in createUIElement()
134 …ncePropertyPanel* pPanel = CellAppearancePropertyPanel::Create( pParentWindow, xFrame, pBindings ); in createUIElement()
137 xFrame, in createUIElement()
143 …ormatPropertyPanel* pPanel = NumberFormatPropertyPanel::Create( pParentWindow, xFrame, pBindings ); in createUIElement()
146 xFrame, in createUIElement()
155 xFrame, in createUIElement()
164 xFrame, in createUIElement()
/trunk/main/wizards/com/sun/star/wizards/text/
H A DTextDocument.java84 public com.sun.star.frame.XFrame xFrame; field in TextDocument
101 xFrame = OfficeDocument.createNewFrame(xMSF, listener, FrameName); in TextDocument()
109 xFrame = OfficeDocument.createNewFrame(xMSF, listener); in TextDocument()
127 xFrame = xFrameSupplier.getActiveFrame(); in TextDocument()
128 xComponent = UnoRuntime.queryInterface(XComponent.class, xFrame.getController().getModel()); in TextDocument()
182 xFrame = xTextDocument.getCurrentController().getFrame(); in TextDocument()
202 xFrame = _textDocument.getCurrentController().getFrame(); in TextDocument()
208 …Factory xStatusIndicatorFactory = UnoRuntime.queryInterface(XStatusIndicatorFactory.class, xFrame); in TextDocument()
213 xWindowPeer = UnoRuntime.queryInterface(XWindowPeer.class, xFrame.getComponentWindow()); in TextDocument()
225 xWindowPeer = UnoRuntime.queryInterface(XWindowPeer.class, xFrame.getComponentWindow()); in init()
[all …]
/trunk/main/svx/source/sidebar/
H A DPanelFactory.cxx116 Reference<frame::XFrame> xFrame (aArguments.getOrDefault("Frame", Reference<frame::XFrame>())); in createUIElement() local
130 if ( ! xFrame.is()) in createUIElement()
145 pControl = TextPropertyPanel::Create(pParentWindow, xFrame, pBindings, aContext); in createUIElement()
149 pControl = ParaPropertyPanel::Create(pParentWindow, xFrame, pBindings, xSidebar); in createUIElement()
153 pControl = AreaPropertyPanel::Create(pParentWindow, xFrame, pBindings); in createUIElement()
157 pControl = GraphicPropertyPanel::Create(pParentWindow, xFrame, pBindings); in createUIElement()
161 pControl = LinePropertyPanel::Create(pParentWindow, xFrame, pBindings); in createUIElement()
165 pControl = PosSizePropertyPanel::Create(pParentWindow, xFrame, pBindings, xSidebar); in createUIElement()
169 pControl = new InsertPropertyPanel(pParentWindow, xFrame); in createUIElement()
207 xFrame, in createUIElement()

12345678910>>...14