1/************************************************************** 2 * 3 * Licensed to the Apache Software Foundation (ASF) under one 4 * or more contributor license agreements. See the NOTICE file 5 * distributed with this work for additional information 6 * regarding copyright ownership. The ASF licenses this file 7 * to you under the Apache License, Version 2.0 (the 8 * "License"); you may not use this file except in compliance 9 * with the License. You may obtain a copy of the License at 10 * 11 * http://www.apache.org/licenses/LICENSE-2.0 12 * 13 * Unless required by applicable law or agreed to in writing, 14 * software distributed under the License is distributed on an 15 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 16 * KIND, either express or implied. See the License for the 17 * specific language governing permissions and limitations 18 * under the License. 19 * 20 *************************************************************/ 21 22 23#ifndef __com_sun_star_setup_XSetup_idl__ 24#define __com_sun_star_setup_XSetup_idl__ 25 26#ifndef __com_sun_star_uno_XInterface_idl__ 27#include <com/sun/star/uno/XInterface.idl> 28#endif 29 30#include <com/sun/star/setup/OSType.idl> 31#include <com/sun/star/setup/UpdateType.idl> 32#include <com/sun/star/setup/ModuleInfo.idl> 33#include <com/sun/star/setup/InstallEnvironment.idl> 34#include <com/sun/star/setup/InstallResponse.idl> 35#include <com/sun/star/setup/VersionIdentifier.idl> 36#include <com/sun/star/setup/SizeInfo.idl> 37#include <com/sun/star/setup/MirrorEntry.idl> 38 39module com { module sun { module star { module setup { 40 41/// @deprecated 42published interface XSetup: com::sun::star::uno::XInterface 43{ 44 // DocMerge: empty anyway 45 boolean isVersionSupported ( [in] VersionIdentifier aVerIdentifier ); 46 47 // DocMerge: empty anyway 48 sequence <short> getAvailableLanguages ( [in] VersionIdentifier aVerIdentifier ); 49 50 // DocMerge: empty anyway 51 ModuleInfo getRootModule ( [in] VersionIdentifier aVerIdentifier ); 52 53 // DocMerge: empty anyway 54 void setHiddenModule ( [in] VersionIdentifier aVerIdentifier, 55 [in] string strModuleID, 56 [in] boolean bHidden ); 57 58 // DocMerge: empty anyway 59 string getProductname ( [in] VersionIdentifier aVerIdentifier ); 60 61 // DocMerge: empty anyway 62 string getVendorname ( [in] VersionIdentifier aVerIdentifier ); 63 64 // DocMerge: empty anyway 65 string getDefaultDestinationPath ( [in] VersionIdentifier aVerIdentifier ); 66 67 // DocMerge: empty anyway 68 SizeInfo getStandardSizeValues ( [in] VersionIdentifier aVerIdentifier, 69 [in] sequence <short> seqLanguages ); 70 71 // DocMerge: empty anyway 72 string getHelpText ( [in] VersionIdentifier aVerIdentifier, 73 [in] string strPagename ); 74 75 // DocMerge: empty anyway 76 string getReadmeText ( [in] VersionIdentifier aVerIdentifier ); 77 78 // DocMerge: empty anyway 79 string getLicenseText ( [in] VersionIdentifier aVerIdentifier ); 80 81 // DocMerge: empty anyway 82 string getNativeLocation ( [in] VersionIdentifier aVerIdentifier ); 83 84 // DocMerge: empty anyway 85 sequence < any > getMirrorList ( [in] VersionIdentifier aVerIdentifier ); 86 87 // DocMerge: empty anyway 88 UpdateType isUpdateAvailable ( [in] VersionIdentifier aVerIdentifier, 89 [out] VersionIdentifier aNewVerIdentifier ); 90 91 // DocMerge: empty anyway 92 boolean isModuleAvailable ( [in] VersionIdentifier aVerIdentifier, 93 [in] string strModuleID ); 94 95 // DocMerge: empty anyway 96 sequence < any > getActionListForInstall ( [in] VersionIdentifier aVerIdentifier, 97 [in] VersionIdentifier aOldVerIdentifier, 98 [in] InstallEnvironment aEnvironment, 99 [out] InstallResponse aResponse ); 100 }; 101 102}; }; }; }; 103 104#endif 105