1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
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/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
19 #ifndef __com_sun_star_util_XCloseBroadcaster_idl__
20 #define __com_sun_star_util_XCloseBroadcaster_idl__
22 #include
<com
/sun
/star
/uno
/XInterface.idl
>
23 #include
<com
/sun
/star
/util
/XCloseListener.idl
>
26 module com
{ module sun
{ module star
{ module util
{
28 /** broadcasts each tried closing of an object to all interest listener
31 The called object for closing must post the closing events immediately
32 and before any internal cancel operations will be started.
33 If a listener disagree with that it should throw a CloseVetoException
34 and called function XCloseable::close() must be broken immediately.
35 It's not allowed to catch it inside the close() request.
36 If no listener nor internal processes hinder the object on closing
37 all listeners get a notification about real closing.
42 published
interface XCloseBroadcaster
: com
::sun
::star
::uno
::XInterface
44 /** adds the specified listener to receive or have a veto for "close" events
47 the listener which is interest on closing events
49 void addCloseListener
( [in] XCloseListener Listener
);
51 /** removes the specified listener
54 the listener which isn't interest on closing events any longer
56 void removeCloseListener
( [in] XCloseListener Listener
);
64 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */