merge the formfield patch from ooo-build
[ooovba.git] / offapi / com / sun / star / embed / EntryInitModes.idl
blob46df4d2391fcf27234c6f6bc481412be30219118
1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * Copyright 2008 by Sun Microsystems, Inc.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * $RCSfile: EntryInitModes.idl,v $
10 * $Revision: 1.5 $
12 * This file is part of OpenOffice.org.
14 * OpenOffice.org is free software: you can redistribute it and/or modify
15 * it under the terms of the GNU Lesser General Public License version 3
16 * only, as published by the Free Software Foundation.
18 * OpenOffice.org is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU Lesser General Public License version 3 for more details
22 * (a copy is included in the LICENSE file that accompanied this code).
24 * You should have received a copy of the GNU Lesser General Public License
25 * version 3 along with OpenOffice.org. If not, see
26 * <http://www.openoffice.org/license.html>
27 * for a copy of the LGPLv3 License.
29 ************************************************************************/
30 #ifndef __com_sun_star_embed_EntryInitModes_idl__
31 #define __com_sun_star_embed_EntryInitModes_idl__
34 //============================================================================
36 module com { module sun { module star { module embed {
38 //============================================================================
39 /** This constant set contains possible modes to initialize object
40 persistance.
42 @see XEmbedPersist
44 constants EntryInitModes
46 // -----------------------------------------------------------------------
47 /** In case object persistance is created based on existing entry,
48 the object should be initialized from this entry. Otherwise
49 the object should be initialized as a new one.
51 const long DEFAULT_INIT = 0;
53 // -----------------------------------------------------------------------
54 /** The object should be initialized as a new empty one.
56 const long TRUNCATE_INIT = 1;
58 // -----------------------------------------------------------------------
59 /** The object should be initialized as a new one only in case it still
60 was not initialized. If the object initialized already do not
61 reinitialize it.
63 const long NO_INIT = 2;
65 // -----------------------------------------------------------------------
66 /** The object should be initialized using additional arguments from
67 provided
68 <type scope="com::sun::star::document">MediaDescriptor</type>.
70 const long MEDIA_DESCRIPTOR_INIT = 3;
72 // -----------------------------------------------------------------------
73 /** The object should be initialized as a link using URL provided in
74 additional arguments.
76 const long URL_LINK_INIT = 4;
79 //============================================================================
81 }; }; }; };
83 #endif