Home
last modified time | relevance | path

Searched refs:listener (Results 76 – 100 of 509) sorted by relevance

12345678910>>...21

/trunk/main/qadevOOo/java/OOoRunner/src/main/java/ifc/sheet/
H A D_XActivationBroadcaster.java40 protected XActivationEventListener listener = null; field in _XActivationBroadcaster
46 oObj.addActivationEventListener(listener); in _addActivationEventListener()
50 listener = new MyListener(); in _addActivationEventListener()
51 oObj.addActivationEventListener(listener); in _addActivationEventListener()
67 oObj.removeActivationEventListener(listener); in _removeActivationEventListener()
/trunk/main/udkapi/com/sun/star/script/
H A DXEngine.idl107 /** adds an engine listener.
109 <p>It is suggested to allow multiple registration of the same listener,
110 thus for each time a listener is added, it has to be removed.
115 /** removes an engine listener.
117 <p>It is suggested to allow multiple registration of the same listener,
118 thus for each time a listener is added, it has to be removed.
/trunk/main/vcl/aqua/source/dtrans/
H A Daqua_clipboard.cxx227 void SAL_CALL AquaClipboard::addClipboardListener(const Reference< XClipboardListener >& listener) in addClipboardListener() argument
232 if (!listener.is()) in addClipboardListener()
236 mClipboardListeners.push_back(listener); in addClipboardListener()
240 …d SAL_CALL AquaClipboard::removeClipboardListener(const Reference< XClipboardListener >& listener) in removeClipboardListener() argument
245 if (!listener.is()) in removeClipboardListener()
249 mClipboardListeners.remove(listener); in removeClipboardListener()
/trunk/main/toolkit/source/awt/
H A Dvclxspinbutton.cxx102 …nButton::addAdjustmentListener( const Reference< XAdjustmentListener >& listener ) throw (RuntimeE… in addAdjustmentListener() argument
104 if ( listener.is() ) in addAdjustmentListener()
105 maAdjustmentListeners.addInterface( listener ); in addAdjustmentListener()
109 …tton::removeAdjustmentListener( const Reference< XAdjustmentListener >& listener ) throw (RuntimeE… in removeAdjustmentListener() argument
111 if ( listener.is() ) in removeAdjustmentListener()
112 maAdjustmentListeners.removeInterface( listener ); in removeAdjustmentListener()
/trunk/main/offapi/com/sun/star/datatransfer/clipboard/
H A DXClipboardNotifier.idl48 @param listener
51 [oneway] void addClipboardListener( [in] XClipboardListener listener );
54 /** Removes listener from notification list.
56 @param listener
59 [oneway] void removeClipboardListener( [in] XClipboardListener listener );
/trunk/main/udkapi/com/sun/star/beans/
H A DXIntroTest.idl181 /** adds a listener which is called, when one of the specified properties
184 <p>It is suggested to allow multiple registration of the same listener,
185 thus for each time a listener is added, it has to be removed.
191 /** removes a listener.
193 <p>It is suggested to allow multiple registration of the same listener,
194 thus for each time a listener is added, it has to be removed.
/trunk/main/offapi/com/sun/star/document/
H A DXDocumentEventBroadcaster.idl62 /** registers a listener which is notified about document events
65 the listener to register. The behaviour of the method is undefined this listener
70 … /** revokes a listener which has previously been registered to be notified about document events.
73 the listener to revoke. The behaviour of the method is undefined this listener
/trunk/main/javaunohelper/com/sun/star/lib/uno/helper/
H A DPropertySetMixin.java369 String propertyName, XPropertyChangeListener listener) in addPropertyChangeListener() argument
383 v.add(listener); in addPropertyChangeListener()
387 listener.disposing(new EventObject(object)); in addPropertyChangeListener()
396 String propertyName, XPropertyChangeListener listener) in removePropertyChangeListener() argument
405 v.remove(listener); in removePropertyChangeListener()
419 String propertyName, XVetoableChangeListener listener) in addVetoableChangeListener() argument
433 v.add(listener); in addVetoableChangeListener()
437 listener.disposing(new EventObject(object)); in addVetoableChangeListener()
446 String propertyName, XVetoableChangeListener listener) in removeVetoableChangeListener() argument
455 v.remove(listener); in removeVetoableChangeListener()
/trunk/main/udkapi/com/sun/star/uno/
H A DXUnloadingPreference.idl40 functions. A listener is an entity that employs, registers, and
43 a listener may release references to UNO components. Thus, the
46 Before a listener releases references, it should ask for this interface.
47 If the interface is not implemented, then the listener may release the
49 returns false then the listener should keep the reference, otherwise
/trunk/main/offapi/com/sun/star/awt/
H A DXSimpleTabController.idl126 @descr The new tab will be activated and all listener will get an event describing this.
127 Of course there will be an event too, which notify's listener about the deactivation
148 /** register listener for inserting/removing tab's and changing her properties.
151 the listener for registration.
156 /** deregister listener for inserting/removing tab's and changing her properties.
159 the listener for deregistration.
/trunk/main/offapi/com/sun/star/plugin/
H A DXPluginContext.idl83 @param listener
84 event listener
89 [in] com::sun::star::lang::XEventListener listener )
119 @param listener
120 event listener
127 [in] com::sun::star::lang::XEventListener listener )
/trunk/main/qadevOOo/java/OOoRunner/src/main/java/ifc/frame/
H A D_XFrame.java79 final TestFrameActionListener listener = field in _XFrame
187 oObj.addFrameActionListener(listener) ; in _addFrameActionListener()
240 oObj.removeFrameActionListener(listener); in _removeFrameActionListener()
415 TestFrameActionListener listener = new TestFrameActionListener(); in _contextChanged() local
424 oObj.addFrameActionListener(listener); in _contextChanged()
435 oObj.removeFrameActionListener(listener); in _contextChanged()
/trunk/main/offapi/com/sun/star/util/
H A DXCloseListener.idl79 again, if this listener disagree with the request by throwing the exception.
81 will be the owner in every case. It's not allowed to call close() from this listener then.
82 If it's set to <TRUE/> this listener will be the new owner if he throw the exception,
88 If this listener doesn't disagree with th close request it depends from his internal
97 <TRUE/> pass the ownership to this listener, if he throw the veto exception
104 … if listener disagree with the close request on listened object he must throw this exception
/trunk/main/sfx2/qa/complex/sfx2/
H A DDocumentProperties.java458 Listener listener = new Listener(); in check() local
460 xMB.addModifyListener(listener); in check()
462 assertTrue("Listener Author", listener.reset()); in check()
464 assertTrue("Listener UserDefined Add", listener.reset()); in check()
466 assertTrue("Listener UserDefined Set", listener.reset()); in check()
468 assertTrue("Listener UserDefined Remove", listener.reset()); in check()
469 xMB.removeModifyListener(listener); in check()
471 assertTrue("Removed Listener UserDefined Add", !listener.reset()); in check()
/trunk/main/offapi/com/sun/star/awt/grid/
H A DXGridColumn.idl128 /** Adds a listener for the <type>GridColumnEvent</type> posted after the grid changes.
130 the listener to add.
132 void addGridColumnListener( [in] XGridColumnListener listener);
136 /** Removes a listener previously added with <method>addColumnListener()</method>.
138 the listener to remove.
140 void removeGridColumnListener( [in] XGridColumnListener listener);
/trunk/main/offapi/com/sun/star/linguistic2/
H A DXLinguServiceManager.idl102 /** adds a listener to the list of event listeners.
112 <TRUE/> if the listener was successfully added, <FALSE/> otherwise.
115 the listener to be added.
121 /** removes a listener from the list of event listeners.
124 <TRUE/> if the listener was successfully removed, <FALSE/> otherwise.
127 the listener to be removed.
/trunk/main/scripting/java/com/sun/star/script/framework/browse/
H A DDialogFactory.java101 com.sun.star.awt.XActionListener listener = in showConfirmDialog() local
122 okButton.addActionListener(listener); in showConfirmDialog()
123 cancelButton.addActionListener(listener); in showConfirmDialog()
162 com.sun.star.awt.XActionListener listener = in showInputDialog() local
183 okButton.addActionListener(listener); in showInputDialog()
184 cancelButton.addActionListener(listener); in showInputDialog()
/trunk/main/offapi/com/sun/star/form/validation/
H A DXValidator.idl74 /** registers the given validity listener.
76 <p>Usually, an <type>XValidatable</type> instance will also add itself as validity listener,
83 if the given listener is <NULL/>
89 /** revokes the given validity listener
92 if the given listener is <NULL/>
/trunk/main/cppuhelper/source/
H A Dpropertysetmixin.cxx1209 css::uno::Reference< css::beans::XPropertyChangeListener > const & listener) in addPropertyChangeListener()
1215 listener, css::uno::UNO_QUERY_THROW); // reject NULL listener in addPropertyChangeListener()
1223 m_impl->boundListeners[propertyName].insert(listener); in addPropertyChangeListener()
1227 listener->disposing( in addPropertyChangeListener()
1245 OSL_ASSERT(listener.is()); in removePropertyChangeListener()
1252 BoundListenerBag::iterator j(i->second.find(listener)); in removePropertyChangeListener()
1272 listener, css::uno::UNO_QUERY_THROW); // reject NULL listener in addVetoableChangeListener()
1280 m_impl->vetoListeners[propertyName].insert(listener); in addVetoableChangeListener()
1284 listener->disposing( in addVetoableChangeListener()
1302 OSL_ASSERT(listener.is()); in removeVetoableChangeListener()
[all …]
/trunk/main/dtrans/source/win32/dnd/
H A Dsource.cxx107 const Reference<XDragSourceListener >& listener ) in StartDragImpl()
127 static_cast<DragSource*>(this), listener ) ); in StartDragImpl()
198 const Reference<XDragSourceListener >& listener ) throw( RuntimeException) in startDrag()
207 StartDragImpl(trigger, sourceActions, cursor, image, trans, listener); in startDrag()
222 listener->dragDropEnd(dsde); in startDrag()
/trunk/main/qadevOOo/java/OOoRunner/src/main/java/ifc/document/
H A D_XEventBroadcaster.java38 private static XEventListener listener=null; field in _XEventBroadcaster
62 listener = new MyEventListener(); in _addEventListener()
64 oObj.addEventListener(listener); in _addEventListener()
73 oObj.removeEventListener(listener); in _removeEventListener()
/trunk/main/wizards/com/sun/star/wizards/text/
H A DTextDocument.java98 public TextDocument(XMultiServiceFactory xMSF, XTerminateListener listener, String FrameName) in TextDocument() argument
101 xFrame = OfficeDocument.createNewFrame(xMSF, listener, FrameName); in TextDocument()
105 …erviceFactory xMSF, String _sPreviewURL, boolean bShowStatusIndicator, XTerminateListener listener) in TextDocument() argument
109 xFrame = OfficeDocument.createNewFrame(xMSF, listener); in TextDocument()
121 … TextDocument(XMultiServiceFactory xMSF, boolean bShowStatusIndicator, XTerminateListener listener) in TextDocument() argument
313 …Document(XMultiServiceFactory xMSF, String URL, PropertyValue[] xArgs, XTerminateListener listener) in TextDocument() argument
318 xFrame = OfficeDocument.createNewFrame(xMSF, listener); in TextDocument()
/trunk/main/offapi/com/sun/star/datatransfer/dnd/
H A DXDropTarget.idl56 <p>The listener will be queried for the <type>XAutoscroll</type> interface
60 The listener to add to the notification list.
66 /** Remove a drop target listener.
69 The listener to remove from notification list.
112 <p>By default the listener will receive notifications for all actions.</p>
/trunk/main/scripting/workben/installer/
H A DIdeUpdater.java177 public void addInstallListener(InstallListener listener) in addInstallListener() argument
179 listeners.addElement(listener); in addInstallListener()
188 InstallListener listener = (InstallListener)e.nextElement(); in onInstallComplete() local
189 listener.installationComplete(null); in onInstallComplete()
/trunk/main/offapi/com/sun/star/sdb/
H A DXRowsChangeBroadcaster.idl45 … /** adds a listener to be notified when the <code>RowSet</code> supplied by the component changes.
47 void addRowsChangeListener( [in] XRowsChangeListener listener );
49 /** removes a previously added listener.
51 void removeRowsChangeListener( [in] XRowsChangeListener listener );

Completed in 108 milliseconds

12345678910>>...21