tdf#130857 qt weld: Implement QtInstanceWidget::strip_mnemonic
[LibreOffice.git] / udkapi / com / sun / star / script / XEventAttacher2.idl
blob60da78ee7f1fd7890dfbdef6f77ba281071b6b01
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 */
10 module com { module sun { module star { module script {
12 interface XEventAttacher2: com::sun::star::script::XEventAttacher
14 /** Register a multiple set of listeners listening for the same
15 target. Besides passing multiple listeners, the behavior of
16 this method is identical to that of
17 attachSingleEventListener().
19 @see com::sun::star::script::XEventAttacher::attachSingleEventListener
21 sequence<com::sun::star::lang::XEventListener>
22 attachMultipleEventListeners(
23 [in] com::sun::star::uno::XInterface xTarget,
24 [in] sequence<com::sun::star::script::EventListener> aListeners )
25 raises( com::sun::star::lang::IllegalArgumentException,
26 com::sun::star::beans::IntrospectionException,
27 com::sun::star::script::CannotCreateAdapterException,
28 com::sun::star::lang::ServiceNotRegisteredException );
31 }; }; }; };
33 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */