Update ooo320-m1
[ooovba.git] / offapi / com / sun / star / frame / XStorable.idl
blob2b9abb09ed589bef151b095fdcebfe20c1d023e6
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: XStorable.idl,v $
10 * $Revision: 1.14 $
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_frame_XStorable_idl__
31 #define __com_sun_star_frame_XStorable_idl__
33 #ifndef __com_sun_star_uno_XInterface_idl__
34 #include <com/sun/star/uno/XInterface.idl>
35 #endif
37 #ifndef __com_sun_star_io_IOException_idl__
38 #include <com/sun/star/io/IOException.idl>
39 #endif
41 #ifndef __com_sun_star_beans_PropertyValue_idl__
42 #include <com/sun/star/beans/PropertyValue.idl>
43 #endif
46 //=============================================================================
48 module com { module sun { module star { module frame {
50 //=============================================================================
51 /** offers a simple way to store a component to an URL.
53 <p>
54 It is usually only useful for two cases:
55 </p>
56 <ol>
57 <li>
58 Large components which are wrapped up in UNO interfaces
59 and for which distinct filters are not available separately as
60 components.
61 </li>
62 <li>
63 Very small components for which only one or very few hard
64 coded file format filters make sense or even exist.
65 </li>
66 </ol>
68 published interface XStorable: com::sun::star::uno::XInterface
70 //-------------------------------------------------------------------------
71 /** The object may know the location because it was loaded from there,
72 or because it is stored there.
74 @returns
75 <TRUE/> if the object knows a location where it is persistent
76 <FALSE/> otherwise
78 boolean hasLocation();
80 //-------------------------------------------------------------------------
81 /** After <member>XStorable::storeAsURL()</member> it returns the
82 URL the object was stored to.
84 @returns
85 the URL of the resource which is represented by this object.
87 string getLocation();
89 //-------------------------------------------------------------------------
90 /** It is not possible to call <member>XStorable::store()</member> successfully
91 when the data store is read-only.
93 @returns
94 <TRUE/> if the data store is readonly or opened readonly
95 <FALSE/> otherwise
97 boolean isReadonly();
99 //-------------------------------------------------------------------------
100 /** stores the data to the URL from which it was loaded.
102 <p>Only objects which know their locations can be stored.</p>
104 @throws com::sun::star::io::IOException
105 if an IO error occured during save operation
106 (may the location is unknown)
108 @see XStorable::storeAsURL
109 @see XStorable::storeToURL
111 void store()
112 raises( com::sun::star::io::IOException );
114 //-------------------------------------------------------------------------
115 /** stores the object's persistent data to a URL and
116 makes this URL the new location of the object.
118 <p>This is the normal behavior for UI's "save-as" feature.</p>
120 <p>The change of the location makes it necessary to store the document in
121 a format that the object can load. For this reason the implementation of
122 <member>XStorable::storeAsURL()</member> will throw an exception if a pure
123 export filter is used, it will accept only combined import/export filters.
124 For such filters the method <member>XStorable::storeToURL()</member>
125 must be used that does not change the location of the object.</p>
127 @param sURL
128 specifies the new location of this component
130 @param lArguments
131 optional parameters for saving
132 (see <type scope="com::sun::star::document">MediaDescriptor</type> for further details)
134 @throws com::sun::star::io::IOException
135 if an IO error occured during save operation
136 (may the location is unknown)
138 @see XStorable::store
139 @see XStorable::storeToURL
140 @see com::sun::star::document::MediaDescriptor
142 void storeAsURL(
143 [in] string sURL,
144 [in] sequence<com::sun::star::beans::PropertyValue> lArguments )
145 raises( com::sun::star::io::IOException );
147 //-------------------------------------------------------------------------
148 /** stores the object's persistent data to a URL and
149 continues to be a representation of the old URL.
151 <p>This is the normal behavior for UI's export feature.</p>
153 <p>This method accepts all kinds of export filters, not only combined
154 import/export filters because it implements an exporting capability, not a
155 persistence capability.</p>
157 @throws com::sun::star::io::IOException
158 if an IO error occured during save operation
159 (may the location is unknown)
161 @param lArguments
162 optional parameters for saving
163 (see <type scope="com::sun::star::document">MediaDescriptor</type> for further details)
165 @see XStorable::store
166 @see XStorable::storeAsURL
167 @see com::sun::star::document::MediaDescriptor
169 void storeToURL(
170 [in] string sURL,
171 [in] sequence<com::sun::star::beans::PropertyValue> lArguments )
172 raises( com::sun::star::io::IOException );
175 //=============================================================================
177 }; }; }; };
179 #endif