Home
last modified time | relevance | path

Searched refs:listener (Results 51 – 75 of 509) sorted by relevance

12345678910>>...21

/trunk/main/accessibility/workben/org/openoffice/accessibility/awb/tree/
H A DAccessibilityNode.java46 private XAccessibleEventListener listener; field in AccessibilityNode
89 XAccessibleEventListener localListener = this.listener; in disposing()
144 XAccessibleEventListener localListener = this.listener; in notifyEvent()
151 listener = AccessibleEventMulticaster.add(listener, xAccessibleEventListener); in addEventListener()
155 listener = AccessibleEventMulticaster.remove(listener, xAccessibleEventListener); in removeEventListener()
/trunk/main/offapi/com/sun/star/form/submission/
H A DXSubmission.idl83 /** registers the given listener to be notified when a submission occurs
85 @param listener
86 the listener to register
91 void addSubmissionVetoListener( [in] XSubmissionVetoListener listener )
94 /** revokes a listener which has previously been registered to be notified when a submission occurs
96 @param listener
97 the listener to revoke
102 void removeSubmissionVetoListener( [in] XSubmissionVetoListener listener )
/trunk/main/qadevOOo/java/OOoRunner/src/main/java/ifc/linguistic2/
H A D_XDictionaryList.java79 XDictionaryListEventListener listener = new MyDictionaryListEventListener(); field in _XDictionaryList
127 boolean res = oObj.addDictionaryListEventListener(listener, false); in _addDictionaryListEventListener()
136 oObj.removeDictionaryListEventListener(listener); in _addDictionaryListEventListener()
155 oObj.addDictionaryListEventListener(listener,false); in _removeDictionaryListEventListener()
163 boolean res = oObj.removeDictionaryListEventListener(listener); in _removeDictionaryListEventListener()
239 oObj.addDictionaryListEventListener(listener,false); in _beginCollectEvents()
249 oObj.removeDictionaryListEventListener(listener); in _beginCollectEvents()
/trunk/main/vcl/aqua/source/dtrans/
H A DDropTarget.cxx513 … uno::Reference<XDropTargetListener> listener( static_cast<XDropTargetListener*>( iter.next())); in fire_drop() local
515 try { listener->drop( dte); } in fire_drop()
530 … uno::Reference<XDropTargetListener> listener( static_cast<XDropTargetListener*>( iter.next())); in fire_dragEnter() local
532 try { listener->dragEnter( e); } in fire_dragEnter()
548 … uno::Reference<XDropTargetListener> listener( static_cast<XDropTargetListener*>( iter.next())); in fire_dragExit() local
550 try { listener->dragExit( dte); } in fire_dragExit()
565 … uno::Reference<XDropTargetListener> listener( static_cast<XDropTargetListener*>( iter.next())); in fire_dragOver() local
567 try { listener->dragOver( dtde); } in fire_dragOver()
582 … uno::Reference<XDropTargetListener> listener( static_cast<XDropTargetListener*>( iter.next())); in fire_dropActionChanged() local
584 try { listener->dropActionChanged( dtde); } in fire_dropActionChanged()
/trunk/main/offapi/com/sun/star/frame/
H A DXDispatch.idl55 if not, controls may flicker. State listener must be aware of this
65 to force the state listener to requery the <type>XDispatch</type>.
115 /** registers a listener of a control for a specific URL
125 listener that wishes to be informed
128 the URL (without additional arguments) the listener wishes to be registered for.
129 A listener can be registered for more than one URL at the same time.
139 /** unregisters a listener from a control.
142 listener that wishes to be unregistered
145 URL the listener was registered for.
H A DXDesktop.idl69 …First, every terminate listener is called by his <member>XTerminateListener::queryTermination()</m…
70 … a <type>TerminationVetoException</type> can break the termination process and the listener how has
73 If nobody disagree with the termination request, every listener will be called by his
78 <TRUE/>if all listener agree with this request
88 /** registers an event listener to the desktop, which is called
93 listener for termination events
100 /** unregisters an event listener for termination events.
103 listener which wish to be deregistered
H A DXConfigManager.idl47 /** add a listener to notify changes on well known variables
52 …again. If <var>KeyName</var> specifies a group of keys, the listener gets one notify for each subk…
56 specifies variable about listener will be informed on changes
59 listener which will be informed
70 /** remove a registered listener
73 specifies variable on which listener was registered
76 listener which will be deregistered
H A DXLayoutManagerEventBroadcaster.idl44 /** adds a layout manager event listener to the object's listener list.
47 a listener that wants to receive events regarding user interface
52 /** removes a layout manager event listener from the object's listener
56 a listener that don't want to receive events regarding user
/trunk/main/ucb/qa/complex/tdoc/
H A D_XContent.java37 private ContentListener listener = null; field in _XContent
40 listener = new ContentListener(); in _addContentEventListener()
41 oObj.addContentEventListener(listener); in _addContentEventListener()
58 System.out.println("Event: " + (listener.disposed || listener.firedEvent)); in _removeContentEventListener()
59 oObj.removeContentEventListener(listener); in _removeContentEventListener()
/trunk/main/udkapi/com/sun/star/lang/
H A DXComponent.idl91 /** adds an event listener to the object.
93 <p>The broadcaster fires the disposing method of this listener
96 <p>It is suggested to allow multiple registration of the same listener,
97 thus for each time a listener is added, it has to be removed.</p>
116 /** removes an event listener from the listener list.
118 <p>It is a "noop" if the specified listener is not registered.</p>
120 <p>It is suggested to allow multiple registration of the same listener,
121 thus for each time a listener is added, it has to be removed.
/trunk/main/vcl/source/components/
H A Ddtranscomp.cxx126 … const Reference< ::com::sun::star::datatransfer::clipboard::XClipboardListener >& listener )
130 … const Reference< ::com::sun::star::datatransfer::clipboard::XClipboardListener >& listener )
213 …d::addClipboardListener( const Reference< datatransfer::clipboard::XClipboardListener >& listener ) in addClipboardListener() argument
218 m_aListeners.push_back( listener ); in addClipboardListener()
221 …removeClipboardListener( const Reference< datatransfer::clipboard::XClipboardListener >& listener ) in removeClipboardListener() argument
226 m_aListeners.remove( listener ); in removeClipboardListener()
327 … const Reference< datatransfer::dnd::XDragSourceListener >& listener
363 … const Reference< datatransfer::dnd::XDragSourceListener >& listener in startDrag()
369 listener->dragDropEnd( aEv ); in startDrag()
/trunk/main/qadevOOo/java/OOoRunner/src/main/java/ifc/ui/dialogs/
H A D_XFilePickerNotifier.java94 TestListener listener = new TestListener() ; field in _XFilePickerNotifier
126 oObj.addFilePickerListener(listener) ; in _addFilePickerListener()
144 if (!listener.called) { in _addFilePickerListener()
150 tRes.tested("addFilePickerListener()", listener.called) ; in _addFilePickerListener()
164 oObj.removeFilePickerListener(listener) ; in _removeFilePickerListener()
166 listener.called = false ; in _removeFilePickerListener()
181 tRes.tested("removeFilePickerListener()", !listener.called) ; in _removeFilePickerListener()
/trunk/main/ridljar/test/com/sun/star/lib/util/
H A DWeakMap_Test.java70 public void addDisposeListener(DisposeListener listener) { in addDisposeListener() argument
71 this.listener = listener; in addDisposeListener()
75 if (listener != null) { in dispose()
76 listener.notifyDispose(this); in dispose()
80 private DisposeListener listener = null; field in WeakMap_Test.Disposable
/trunk/main/wizards/com/sun/star/wizards/document/
H A DOfficeDocument.java167 public static XFrame createNewFrame(XMultiServiceFactory xMSF, XTerminateListener listener) in createNewFrame() argument
169 return createNewFrame(xMSF, listener, "_blank"); in createNewFrame()
172 …public static XFrame createNewFrame(XMultiServiceFactory xMSF, XTerminateListener listener, String… in createNewFrame() argument
177 xFrame = createNewPreviewFrame(xMSF, listener); in createNewFrame()
183 if (listener != null) in createNewFrame()
189 xDesktop.addTerminateListener(listener); in createNewFrame()
195 … public static XFrame createNewPreviewFrame(XMultiServiceFactory xMSF, XTerminateListener listener) in createNewPreviewFrame() argument
255 if (listener != null) in createNewPreviewFrame()
257 Desktop.getDesktop(xMSF).addTerminateListener(listener); in createNewPreviewFrame()
/trunk/main/testtools/source/bridgetest/pyuno/
H A Dimpl.py156 listener = EventListener()
157 smgr.addEventListener( listener )
159 self.failUnless( listener.disposingCalled )
164 listener = EventListener()
165 smgr.addEventListener( listener )
166 smgr.removeEventListener( listener )
168 self.failUnless( not listener.disposingCalled )
/trunk/main/udkapi/com/sun/star/script/
H A DXEventAttacher.idl66 /** registers the given "AllListener" object as a listener at the
67 given interface by creating a suitable listener adapter and
82 /** registers an object as a listener at the given interface by
83 creating a suitable listener adapter and calling the method
84 which corresponds to the listener type.
101 /** removes a listener object as a listener from the given interface.
/trunk/main/udkapi/com/sun/star/beans/
H A DXPropertySetInfoChangeNotifier.idl48 /** registers a listener for <type>PropertySetInfoChangeEvent</type>s.
50 <p>It is suggested to allow multiple registration of the same listener,
51 thus for each time a listener is added, it has to be removed.
58 /** removes a listener for <type>PropertySetInfoChangeEvent</type>s.
60 <p>It is suggested to allow multiple registration of the same listener,
61 thus for each time a listener is added, it has to be removed.
/trunk/main/offapi/com/sun/star/configuration/backend/
H A DXBackendChangesNotifier.idl47 /** adds the specified listener to receive events when changes occurred.
49 specifies the listener object.
52 The name of the component the listener is monitoring changes for.
59 /** removes the specified listener.
61 specifies the listener object.
64 The name of the component the listener is monitoring changes for.
/trunk/main/swext/mediawiki/src/com/sun/star/wiki/
H A DWikiEditorImpl.java253 com.sun.star.frame.XStatusListener listener, in addStatusListener() argument
257 m_statusListeners.put( urlstring, listener ); in addStatusListener()
259 callStatusListener( urlstring, listener ); in addStatusListener()
270 XStatusListener listener = ( XStatusListener ) entry.getValue(); in callStatusListeners() local
271 callStatusListener( uristring, listener ); in callStatusListeners()
275 public void callStatusListener( String uristring, XStatusListener listener ) in callStatusListener() argument
283 setListenerState( listener, "command", false ); in callStatusListener()
291 private void setListenerState( XStatusListener listener, String urlstring, boolean state ) in setListenerState() argument
/trunk/main/offapi/com/sun/star/linguistic2/
H A DXLinguServiceEventBroadcaster.idl40 /** is used to register a listener for LinguServiceEvents.
51 as a listener for a specific implementation./P>
61 <TRUE/> if the listener was successfully added,
65 the listener to be addded.
73 <TRUE/> if the listener was successfully removed,
77 the listener to be removed.
/trunk/main/toolkit/qa/complex/toolkit/
H A DGridControl.java232 ColumnModelListener listener = new ColumnModelListener(); in testGridColumnModel() local
233 m_columnModel.addContainerListener( listener ); in testGridColumnModel()
239 List< ContainerEvent > events = listener.assertExclusiveInsertionEvents(); in testGridColumnModel()
240 listener.reset(); in testGridColumnModel()
259 final List< ContainerEvent > removalEvents = listener.getRemovalEvents(); in testGridColumnModel()
260 final List< ContainerEvent > insertionEvents = listener.getInsertionEvents(); in testGridColumnModel()
261 listener.reset(); in testGridColumnModel()
296 events = listener.assertExclusiveRemovalEvents(); in testGridColumnModel()
297 listener.reset(); in testGridColumnModel()
322 events = listener.assertExclusiveInsertionEvents(); in testGridColumnModel()
[all …]
/trunk/main/qadevOOo/java/OOoRunner/src/main/java/ifc/form/
H A D_XApproveActionBroadcaster.java64 private TestListener listener = new TestListener(); field in _XApproveActionBroadcaster
72 oObj.addApproveActionListener(listener) ; in _addApproveActionListener()
88 listener.init() ; in _removeApproveActionListener()
89 listener.approve = true ; in _removeApproveActionListener()
90 oObj.removeApproveActionListener(listener); in _removeApproveActionListener()
/trunk/main/udkapi/com/sun/star/container/
H A DXContainer.idl61 /** adds the specified listener to receive events when
64 <p>It is suggested to allow multiple registration of the same listener,
65 thus for each time a listener is added, it has to be removed.
73 /** removes the specified listener so it does not receive
76 <p>It is suggested to allow multiple registration of the same listener,
77 thus for each time a listener is added, it has to be removed.
/trunk/main/offapi/com/sun/star/ui/
H A DXUIConfiguration.idl51 /** adds the specified listener to receive events when elements are
56 listener, thus for each time a listener is added, it has to be
64 /** removes the specified listener so it does not receive any events
68 listener, thus for each time a listener is added, it has to be
/trunk/main/offapi/com/sun/star/form/binding/
H A DXListEntryListener.idl40 /** specifies a listener for changes in a string entry list
44 /** notifies the listener that a single entry in the list has change
53 /** notifies the listener that a range of entries has been inserted into the list
63 /** notifies the listener that a range of entries has been removed from the list
72 /** notifies the listener that all entries of the list have changed.
74 <p>The listener should retrieve the complete new list by calling the

Completed in 67 milliseconds

12345678910>>...21