1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5 * Copyright 2000, 2010 Oracle and/or its affiliates.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * This file is part of OpenOffice.org.
11 * OpenOffice.org is free software: you can redistribute it and/or modify
12 * it under the terms of the GNU Lesser General Public License version 3
13 * only, as published by the Free Software Foundation.
15 * OpenOffice.org is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU Lesser General Public License version 3 for more details
19 * (a copy is included in the LICENSE file that accompanied this code).
21 * You should have received a copy of the GNU Lesser General Public License
22 * version 3 along with OpenOffice.org. If not, see
23 * <http://www.openoffice.org/license.html>
24 * for a copy of the LGPLv3 License.
26 ************************************************************************/
27 #ifndef __com_sun_star_ucb_ContentEvent_idl__
28 #define __com_sun_star_ucb_ContentEvent_idl__
30 #ifndef __com_sun_star_lang_EventObject_idl__
31 #include
<com
/sun
/star
/lang
/EventObject.idl
>
34 //=============================================================================
36 module com
{ module sun
{ module star
{ module ucb
{
38 published
interface XContent
;
39 published
interface XContentIdentifier
;
41 //=============================================================================
42 /** A structure for content events.
44 published
struct ContentEvent
: com
::sun
::star
::lang
::EventObject
46 //-------------------------------------------------------------------------
49 <p>The value can be one of the <type>ContentAction</type> constants.
53 //-------------------------------------------------------------------------
54 /** The content to that the action is related (e.g., the content that was
55 just physically destroyed, the content that was just inserted into a
58 <p>This member must be filled as follows:
62 <td><member>ContentAction::INSERTED</member></td>
63 <td>The content inserted into a folder</td>
66 <td><member>ContentAction::REMOVED</member></td>
67 <td>The content removed from a folder</td>
70 <td><member>ContentAction::DELETED</member></td>
71 <td>The deleted content</td>
74 <td><member>ContentAction::EXCHANGED</member></td>
75 <td>The exchanged content (that already has the new content id)</td>
81 //-------------------------------------------------------------------------
82 /** A content identifier, which must be filled according to the action
83 notified (e.g., the id of the folder content into which another content
86 <p>This member must be filled as follows:
90 <td><member>ContentAction::INSERTED</member></td>
91 <td>Id of the folder the content was inserted into</td>
94 <td><member>ContentAction::REMOVED</member></td>
95 <td>Id of the folder the content was removed from</td>
98 <td><member>ContentAction::DELETED</member></td>
99 <td>Id of the deleted content</td>
102 <td><member>ContentAction::EXCHANGED</member></td>
103 <td>Previous(!) id of the exchanged content</td>
107 XContentIdentifier
Id;
110 //=============================================================================