merged tag ooo/OOO330_m14
[LibreOffice.git] / offapi / com / sun / star / ucb / ContentEvent.idl
blob8d69bfb3d23ebb5474ca31c241fa4184300e82f1
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>
32 #endif
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 //-------------------------------------------------------------------------
47 /** The action.
49 <p>The value can be one of the <type>ContentAction</type> constants.
51 long Action;
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
56 folder content).
58 <p>This member must be filled as follows:
60 <table border=1>
61 <tr align=left>
62 <td><member>ContentAction::INSERTED</member></td>
63 <td>The content inserted into a folder</td>
64 </tr>
65 <tr align=left>
66 <td><member>ContentAction::REMOVED</member></td>
67 <td>The content removed from a folder</td>
68 </tr>
69 <tr align=left>
70 <td><member>ContentAction::DELETED</member></td>
71 <td>The deleted content</td>
72 </tr>
73 <tr align=left>
74 <td><member>ContentAction::EXCHANGED</member></td>
75 <td>The exchanged content (that already has the new content id)</td>
76 </tr>
77 </table>
79 XContent Content;
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
84 was inserted).
86 <p>This member must be filled as follows:
88 <table border=1>
89 <tr align=left>
90 <td><member>ContentAction::INSERTED</member></td>
91 <td>Id of the folder the content was inserted into</td>
92 </tr>
93 <tr align=left>
94 <td><member>ContentAction::REMOVED</member></td>
95 <td>Id of the folder the content was removed from</td>
96 </tr>
97 <tr align=left>
98 <td><member>ContentAction::DELETED</member></td>
99 <td>Id of the deleted content</td>
100 </tr>
101 <tr align=left>
102 <td><member>ContentAction::EXCHANGED</member></td>
103 <td>Previous(!) id of the exchanged content</td>
104 </tr>
105 </table>
107 XContentIdentifier Id;
110 //=============================================================================
112 }; }; }; };
114 #endif