merged tag ooo/OOO330_m14
[LibreOffice.git] / offapi / com / sun / star / setup / XSetup.idl
blob68f35cda76ae0131ec9fbbaa5e003c73ffa99043
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_setup_XSetup_idl__
28 #define __com_sun_star_setup_XSetup_idl__
30 #ifndef __com_sun_star_uno_XInterface_idl__
31 #include <com/sun/star/uno/XInterface.idl>
32 #endif
34 #include <com/sun/star/setup/OSType.idl>
35 #include <com/sun/star/setup/UpdateType.idl>
36 #include <com/sun/star/setup/ModuleInfo.idl>
37 #include <com/sun/star/setup/InstallEnvironment.idl>
38 #include <com/sun/star/setup/InstallResponse.idl>
39 #include <com/sun/star/setup/VersionIdentifier.idl>
40 #include <com/sun/star/setup/SizeInfo.idl>
41 #include <com/sun/star/setup/MirrorEntry.idl>
43 module com { module sun { module star { module setup {
45 /// @deprecated
46 published interface XSetup: com::sun::star::uno::XInterface
48 // DocMerge: empty anyway
49 boolean isVersionSupported ( [in] VersionIdentifier aVerIdentifier );
51 // DocMerge: empty anyway
52 sequence <short> getAvailableLanguages ( [in] VersionIdentifier aVerIdentifier );
54 // DocMerge: empty anyway
55 ModuleInfo getRootModule ( [in] VersionIdentifier aVerIdentifier );
57 // DocMerge: empty anyway
58 void setHiddenModule ( [in] VersionIdentifier aVerIdentifier,
59 [in] string strModuleID,
60 [in] boolean bHidden );
62 // DocMerge: empty anyway
63 string getProductname ( [in] VersionIdentifier aVerIdentifier );
65 // DocMerge: empty anyway
66 string getVendorname ( [in] VersionIdentifier aVerIdentifier );
68 // DocMerge: empty anyway
69 string getDefaultDestinationPath ( [in] VersionIdentifier aVerIdentifier );
71 // DocMerge: empty anyway
72 SizeInfo getStandardSizeValues ( [in] VersionIdentifier aVerIdentifier,
73 [in] sequence <short> seqLanguages );
75 // DocMerge: empty anyway
76 string getHelpText ( [in] VersionIdentifier aVerIdentifier,
77 [in] string strPagename );
79 // DocMerge: empty anyway
80 string getReadmeText ( [in] VersionIdentifier aVerIdentifier );
82 // DocMerge: empty anyway
83 string getLicenseText ( [in] VersionIdentifier aVerIdentifier );
85 // DocMerge: empty anyway
86 string getNativeLocation ( [in] VersionIdentifier aVerIdentifier );
88 // DocMerge: empty anyway
89 sequence < any > getMirrorList ( [in] VersionIdentifier aVerIdentifier );
91 // DocMerge: empty anyway
92 UpdateType isUpdateAvailable ( [in] VersionIdentifier aVerIdentifier,
93 [out] VersionIdentifier aNewVerIdentifier );
95 // DocMerge: empty anyway
96 boolean isModuleAvailable ( [in] VersionIdentifier aVerIdentifier,
97 [in] string strModuleID );
99 // DocMerge: empty anyway
100 sequence < any > getActionListForInstall ( [in] VersionIdentifier aVerIdentifier,
101 [in] VersionIdentifier aOldVerIdentifier,
102 [in] InstallEnvironment aEnvironment,
103 [out] InstallResponse aResponse );
106 }; }; }; };
108 #endif