1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5 * Copyright 2008 by Sun Microsystems, Inc.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * $RCSfile: XUIConfigurationStorage.idl,v $
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 ************************************************************************/
31 #ifndef __com_sun_star_ui_XUIConfigurationStorage_idl__
32 #define __com_sun_star_ui_XUIConfigurationStorage_idl__
34 #ifndef __com_sun_star_embed_XStorage_idl__
35 #include
<com
/sun
/star
/embed
/XStorage.idl
>
38 //=============================================================================
40 module com
{ module sun
{ module star
{ module ui
{
42 //=============================================================================
44 /** supplies functions to change or get information about the storage
45 of a user interface configuration manager.
50 interface XUIConfigurationStorage
: ::com
::sun
::star
::uno
::XInterface
52 /** connects a storage to the user interface configuration manager
53 which is used on subsequent calls of <member>load</member> and
54 <member>store</member>.
57 all configuration data is loaded/stored from/into this storage.
58 If the storage is in read/write mode <member>load</member>
59 and <member>store</member> can be used otherwise only
60 <member>load</member> is possible.
63 This call needs careful usage as data loss can occur. If the
64 implementation has modified data and a new storage is set the
65 implementation is not allowed to write back the data to the old
66 storage. This must be done explicitly with <member>store</member>.
67 In general a user interface configuration manager instance is
68 created and initialize by the document model or the module user
69 interface configuration supplier. Normally there is no need to
70 set a storage for a user interface configuration manager. If a
71 copy of the configuration data to another storage should be made,
72 use <member>storeToStorage</member>.
75 void setStorage
( [in] ::com
::sun
::star
::embed
::XStorage Storage
);
77 /** checks if an instance has already a storage to load/store its data.
80 <TRUE/> if the instance has a storage otherwise <FALSE/>.
85 //=============================================================================