Home
last modified time | relevance | path

Searched refs:xDispatcher (Results 1 – 25 of 54) sorted by relevance

123

/trunk/main/framework/source/dispatch/
H A Ddispatchprovider.cxx166 css::uno::Reference< css::frame::XDispatch > xDispatcher; in queryDispatch() local
181 return xDispatcher; in queryDispatch()
242 css::uno::Reference< css::frame::XDispatch > xDispatcher; in implts_queryDesktopDispatch() local
300 xDispatcher = implts_searchProtocolHandler(aURL); in implts_queryDesktopDispatch()
328 return xDispatcher; in implts_queryDesktopDispatch()
495 if ( ! xDispatcher.is()) in implts_queryFrameDispatch()
507 if (!xDispatcher.is()) in implts_queryFrameDispatch()
508 xDispatcher = implts_searchProtocolHandler(aURL); in implts_queryFrameDispatch()
517 ( ! xDispatcher.is() ) && in implts_queryFrameDispatch()
568 return xDispatcher; in implts_queryFrameDispatch()
[all …]
H A Dsystemexec.cxx127 css::uno::Reference< css::frame::XDispatch > xDispatcher; in queryDispatch() local
129 xDispatcher = this; in queryDispatch()
130 return xDispatcher; in queryDispatch()
H A Dmailtodispatcher.cxx152 css::uno::Reference< css::frame::XDispatch > xDispatcher; in queryDispatch() local
154 xDispatcher = this; in queryDispatch()
155 return xDispatcher; in queryDispatch()
H A Dservicehandler.cxx151 css::uno::Reference< css::frame::XDispatch > xDispatcher; in queryDispatch() local
153 xDispatcher = this; in queryDispatch()
154 return xDispatcher; in queryDispatch()
/trunk/main/forms/source/helper/
H A Dformnavigation.cxx145 if ( aFeature->second.xDispatcher == _rSource.Source ) in disposing()
148 aFeature->second.xDispatcher = NULL; in disposing()
182 xCurrentDispatcher = aFeature->second.xDispatcher; in updateDispatches()
189 xCurrentDispatcher = aFeature->second.xDispatcher = xNewDispatcher; in updateDispatches()
225 aFeature->second.xDispatcher = queryDispatch( aFeature->second.aURL ); in connectDispatchers()
226 if ( aFeature->second.xDispatcher.is() ) in connectDispatchers()
247 if ( aFeature->second.xDispatcher.is() ) in disconnectDispatchers()
250 aFeature->second.xDispatcher = NULL; in disconnectDispatchers()
304 if ( aInfo->second.xDispatcher.is() ) in dispatchWithArgument()
310 aInfo->second.xDispatcher->dispatch( aInfo->second.aURL, aArgs ); in dispatchWithArgument()
[all …]
H A Dcontrolfeatureinterception.cxx145 Reference< XDispatch > xDispatcher; in queryDispatch() local
147xDispatcher = m_xFirstDispatchInterceptor->queryDispatch( _rURL, _rTargetFrameName, _nSearchFlags … in queryDispatch()
148 return xDispatcher; in queryDispatch()
/trunk/main/desktop/source/app/
H A Ddispatchwatcher.cxx229 Reference < XDispatch > xDispatcher ; in executeDispatchRequests() local
237 xDispatcher = xProvider->queryDispatch( aURL, ::rtl::OUString(), 0 ); in executeDispatchRequests()
239 if( xDispatcher.is() == sal_True ) in executeDispatchRequests()
250 aDispatches.push_back( DispatchHolder( aURL, xDispatcher )); in executeDispatchRequests()
259 Reference < XDispatch > xDispatcher ; in executeDispatchRequests() local
267 xDispatcher = xProvider->queryDispatch( aURL, ::rtl::OUString(), 0 ); in executeDispatchRequests()
269 if( xDispatcher.is() == sal_True ) in executeDispatchRequests()
279 Reference < XNotifyingDispatch > xDisp( xDispatcher, UNO_QUERY ); in executeDispatchRequests()
283 xDispatcher->dispatch( aURL, aArgs2 ); in executeDispatchRequests()
/trunk/main/qadevOOo/java/OOoRunner/src/main/java/mod/_svx/
H A DSvxGraphCtrlAccessibleContext.java130 XDispatch xDispatcher = xDispProv.queryDispatch( aURL,"",0); in createTestEnvironment() local
131 if( xDispatcher != null ) in createTestEnvironment()
132 xDispatcher.dispatch( aURL, null ); in createTestEnvironment()
213 XDispatch xDispatcher = xDispProv.queryDispatch( aURL,"",0); in cleanup() local
214 if( xDispatcher != null ) in cleanup()
215 xDispatcher.dispatch( aURL, null ); in cleanup()
/trunk/main/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/
H A DFunctionHelper.java444 com.sun.star.frame.XDispatch xDispatcher = null; in execute() local
456 xDispatcher = xProvider.queryDispatch(aURL,"",0); in execute()
459 if(xDispatcher!=null) in execute()
462 xDispatcher.addStatusListener(xListener,aURL); in execute()
464 xDispatcher.dispatch(aURL,lProperties); in execute()
478 xDispatcher = null; in execute()
481 return xDispatcher; in execute()
514 com.sun.star.frame.XDispatch xDispatcher = xProvider.queryDispatch(aURL,"",0); in executeWithNotification() local
517 xDispatcher); in executeWithNotification()
/trunk/main/sc/qa/complex/calcPreview/
H A DViewForwarder.java266 XDispatch xDispatcher = xDispProv.queryDispatch(aURL, "", 0); in checkPositiveViewForwarder() local
267 if(xDispatcher != null) in checkPositiveViewForwarder()
269 xDispatcher.dispatch( aURL, null ); in checkPositiveViewForwarder()
677 XDispatch xDispatcher = xDispProv.queryDispatch(aURL, "", 0); in checkNegativeViewForwarder() local
678 if(xDispatcher != null) in checkNegativeViewForwarder()
680 xDispatcher.dispatch( aURL, null ); in checkNegativeViewForwarder()
890 XDispatch xDispatcher = xDispProv.queryDispatch(aURL, "", 0); in checkPreviewHeaderCells() local
891 if(xDispatcher != null) in checkPreviewHeaderCells()
893 xDispatcher.dispatch( aURL, null ); in checkPreviewHeaderCells()
1036 if(xDispatcher != null) in checkPreviewShape()
[all …]
/trunk/main/offapi/com/sun/star/frame/
H A DXRecordableDispatch.idl64 <i>XDispatch</i> xDispatcher = xFrame.queryDispatch(aURL,"",0);
67 &nbsp;&nbsp;xDispatcher);
69 xDispatcher.addStatusListener(this,aURL);
74 &nbsp;&nbsp;xDispatcher.dispatch(aURL,lArguments);
76 xDispatcher.removeStatusListener(this,aURL);
/trunk/main/comphelper/source/misc/
H A Dsynchronousdispatch.cxx66 uno::Reference < frame::XDispatch > xDispatcher; in dispatch() local
70 xDispatcher = xProvider->queryDispatch( aURL, sTarget, nFlags ); in dispatch()
74 if ( xDispatcher.is() ) in dispatch()
79 … uno::Reference < frame::XSynchronousDispatch > xSyncDisp( xDispatcher, uno::UNO_QUERY_THROW ); in dispatch()
/trunk/main/framework/source/recording/
H A Ddispatchrecordersupplier.cxx183 …const css::uno::Reference< css::frame::XDispatch >& xDispatcher ) throw (css::uno::RuntimeExcep… in dispatchAndRecord()
192 if (!xDispatcher.is()) in dispatchAndRecord()
201 xDispatcher, in dispatchAndRecord()
212 xDispatcher->dispatch(aURL,lArguments); in dispatchAndRecord()
/trunk/main/framework/qa/complex/framework/recovery/
H A DCrashThread.java69 XDispatch xDispatcher = xDispProv.queryDispatch(aURL, "", 0); in run() local
71 if (xDispatcher != null) { in run()
72 xDispatcher.dispatch(aURL, null); in run()
/trunk/main/sfx2/qa/complex/sfx2/tools/
H A DDialogThread.java71 …XDispatch xDispatcher = xDispProv.queryDispatch(aURL, "", com.sun.star.frame.FrameSearchFlag.SELF | in run() local
75 if (xDispatcher != null) { in run()
76 xDispatcher.dispatch(aURL, dispatchArguments); in run()
/trunk/main/qadevOOo/java/OOoRunner/src/main/java/mod/_sd/
H A DAccessibleOutlineView.java160 XDispatch xDispatcher = xDispProv.queryDispatch( aURL,"",0); in initialize() local
161 if( xDispatcher != null ) in initialize()
162 xDispatcher.dispatch( aURL, null ); in initialize()
H A DAccessibleSlideView.java167 XDispatch xDispatcher = xDispProv.queryDispatch( aURL,"",0); in initialize() local
168 if( xDispatcher != null ) in initialize()
169 xDispatcher.dispatch( aURL, null ); in initialize()
H A DSdUnoOutlineView.java175 XDispatch xDispatcher = xDispProv.queryDispatch( aURL,"",0); in createTestEnvironment() local
176 if( xDispatcher != null ) in createTestEnvironment()
177 xDispatcher.dispatch( aURL, null ); in createTestEnvironment()
H A DSdUnoSlideView.java144 XDispatch xDispatcher = xDispProv.queryDispatch( aURL,"",0); in createTestEnvironment() local
145 if( xDispatcher != null ) in createTestEnvironment()
146 xDispatcher.dispatch( aURL, null ); in createTestEnvironment()
/trunk/main/qadevOOo/java/OOoRunner/src/main/java/mod/_sw/
H A DSwAccessibleDocumentPageView.java117 XDispatch xDispatcher = xDispProv.queryDispatch(aURL, "", 0); in createTestEnvironment() local
118 if(xDispatcher != null) in createTestEnvironment()
119 xDispatcher.dispatch( aURL, null ); in createTestEnvironment()
/trunk/main/framework/source/layoutmanager/
H A Dhelpers.cxx367 css::uno::Reference< css::frame::XDispatchHelper > xDispatcher( xDispatchHelper ); in impl_setDockingWindowVisibility() local
368 if ( !xDispatcher.is()) in impl_setDockingWindowVisibility()
370 xDispatcher = css::uno::Reference< css::frame::XDispatchHelper >( in impl_setDockingWindowVisibility()
375 xDispatcher->executeDispatch( in impl_setDockingWindowVisibility()
/trunk/main/qadevOOo/java/OOoRunner/src/main/java/mod/_sc/
H A DScAccessiblePreviewCell.java164 XDispatch xDispatcher = xDispProv.queryDispatch(aURL, "", 0); in createTestEnvironment() local
165 if(xDispatcher != null) in createTestEnvironment()
166 xDispatcher.dispatch( aURL, null ); in createTestEnvironment()
H A DAccessibleEditableTextPara_PreviewCell.java140 XDispatch xDispatcher = xDispProv.queryDispatch(aURL, "", 0); in createTestEnvironment() local
141 if(xDispatcher != null) in createTestEnvironment()
142 xDispatcher.dispatch( aURL, null ); in createTestEnvironment()
/trunk/main/qadevOOo/java/OOoRunner/src/main/java/mod/_toolkit/
H A DAccessibleButton.java231 XDispatch xDispatcher = xDispProv.queryDispatch(aURL, "", 0); in run() local
233 if (xDispatcher != null) { in run()
234 xDispatcher.dispatch(aURL, null); in run()
/trunk/main/framework/source/classes/
H A Ddroptargetlistener.cxx243 …css::uno::Reference< css::frame::XDispatch > xDispatcher = xProvider->queryDispatch( aURL, SPECIAL… in implts_OpenFile() local
244 if ( xDispatcher.is() ) in implts_OpenFile()
245 xDispatcher->dispatch( aURL, css::uno::Sequence < css::beans::PropertyValue >() ); in implts_OpenFile()

Completed in 77 milliseconds

123