update dev300-m58
[ooovba.git] / offapi / com / sun / star / setup / XSetup.idl
blob9c894fbd875a2738cdf5838686f01990a66a41f3
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: XSetup.idl,v $
10 * $Revision: 1.11 $
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_setup_XSetup_idl__
31 #define __com_sun_star_setup_XSetup_idl__
33 #ifndef __com_sun_star_uno_XInterface_idl__
34 #include <com/sun/star/uno/XInterface.idl>
35 #endif
37 #include <com/sun/star/setup/OSType.idl>
38 #include <com/sun/star/setup/UpdateType.idl>
39 #include <com/sun/star/setup/ModuleInfo.idl>
40 #include <com/sun/star/setup/InstallEnvironment.idl>
41 #include <com/sun/star/setup/InstallResponse.idl>
42 #include <com/sun/star/setup/VersionIdentifier.idl>
43 #include <com/sun/star/setup/SizeInfo.idl>
44 #include <com/sun/star/setup/MirrorEntry.idl>
46 module com { module sun { module star { module setup {
48 /// @deprecated
49 published interface XSetup: com::sun::star::uno::XInterface
51 // DocMerge: empty anyway
52 boolean isVersionSupported ( [in] VersionIdentifier aVerIdentifier );
54 // DocMerge: empty anyway
55 sequence <short> getAvailableLanguages ( [in] VersionIdentifier aVerIdentifier );
57 // DocMerge: empty anyway
58 ModuleInfo getRootModule ( [in] VersionIdentifier aVerIdentifier );
60 // DocMerge: empty anyway
61 void setHiddenModule ( [in] VersionIdentifier aVerIdentifier,
62 [in] string strModuleID,
63 [in] boolean bHidden );
65 // DocMerge: empty anyway
66 string getProductname ( [in] VersionIdentifier aVerIdentifier );
68 // DocMerge: empty anyway
69 string getVendorname ( [in] VersionIdentifier aVerIdentifier );
71 // DocMerge: empty anyway
72 string getDefaultDestinationPath ( [in] VersionIdentifier aVerIdentifier );
74 // DocMerge: empty anyway
75 SizeInfo getStandardSizeValues ( [in] VersionIdentifier aVerIdentifier,
76 [in] sequence <short> seqLanguages );
78 // DocMerge: empty anyway
79 string getHelpText ( [in] VersionIdentifier aVerIdentifier,
80 [in] string strPagename );
82 // DocMerge: empty anyway
83 string getReadmeText ( [in] VersionIdentifier aVerIdentifier );
85 // DocMerge: empty anyway
86 string getLicenseText ( [in] VersionIdentifier aVerIdentifier );
88 // DocMerge: empty anyway
89 string getNativeLocation ( [in] VersionIdentifier aVerIdentifier );
91 // DocMerge: empty anyway
92 sequence < any > getMirrorList ( [in] VersionIdentifier aVerIdentifier );
94 // DocMerge: empty anyway
95 UpdateType isUpdateAvailable ( [in] VersionIdentifier aVerIdentifier,
96 [out] VersionIdentifier aNewVerIdentifier );
98 // DocMerge: empty anyway
99 boolean isModuleAvailable ( [in] VersionIdentifier aVerIdentifier,
100 [in] string strModuleID );
102 // DocMerge: empty anyway
103 sequence < any > getActionListForInstall ( [in] VersionIdentifier aVerIdentifier,
104 [in] VersionIdentifier aOldVerIdentifier,
105 [in] InstallEnvironment aEnvironment,
106 [out] InstallResponse aResponse );
109 }; }; }; };
111 #endif