summaryrefslogtreecommitdiff
path: root/offapi/com/sun/star/setup
diff options
context:
space:
mode:
Diffstat (limited to 'offapi/com/sun/star/setup')
-rw-r--r--offapi/com/sun/star/setup/ActionType.idl61
-rw-r--r--offapi/com/sun/star/setup/BaseAction.idl40
-rw-r--r--offapi/com/sun/star/setup/CopyFileAction.idl53
-rw-r--r--offapi/com/sun/star/setup/DeleteDirAction.idl36
-rw-r--r--offapi/com/sun/star/setup/DeleteFileAction.idl49
-rw-r--r--offapi/com/sun/star/setup/DeleteFolderAction.idl36
-rw-r--r--offapi/com/sun/star/setup/DeleteFolderItemAction.idl39
-rw-r--r--offapi/com/sun/star/setup/DownloadAction.idl42
-rw-r--r--offapi/com/sun/star/setup/FontAction.idl42
-rw-r--r--offapi/com/sun/star/setup/InstallEnvironment.idl110
-rw-r--r--offapi/com/sun/star/setup/InstallResponse.idl48
-rw-r--r--offapi/com/sun/star/setup/InstallType.idl55
-rw-r--r--offapi/com/sun/star/setup/MakeDirAction.idl39
-rw-r--r--offapi/com/sun/star/setup/MakeFolderAction.idl39
-rw-r--r--offapi/com/sun/star/setup/MakeFolderItemAction.idl48
-rw-r--r--offapi/com/sun/star/setup/MakeShortcutAction.idl45
-rw-r--r--offapi/com/sun/star/setup/MirrorEntry.idl40
-rw-r--r--offapi/com/sun/star/setup/ModuleInfo.idl64
-rw-r--r--offapi/com/sun/star/setup/ModuleState.idl40
-rw-r--r--offapi/com/sun/star/setup/OSType.idl68
-rw-r--r--offapi/com/sun/star/setup/ProductRegistration.idl82
-rw-r--r--offapi/com/sun/star/setup/ProfileItemAction.idl48
-rw-r--r--offapi/com/sun/star/setup/ResponseErrorCode.idl38
-rw-r--r--offapi/com/sun/star/setup/Setup.idl32
-rw-r--r--offapi/com/sun/star/setup/SizeInfo.idl43
-rw-r--r--offapi/com/sun/star/setup/UnzipAction.idl59
-rw-r--r--offapi/com/sun/star/setup/UpdateType.idl43
-rw-r--r--offapi/com/sun/star/setup/VersionIdentifier.idl51
-rw-r--r--offapi/com/sun/star/setup/WindowsRegistryAction.idl54
-rw-r--r--offapi/com/sun/star/setup/XSetup.idl99
30 files changed, 0 insertions, 1543 deletions
diff --git a/offapi/com/sun/star/setup/ActionType.idl b/offapi/com/sun/star/setup/ActionType.idl
deleted file mode 100644
index 356c276aa64a..000000000000
--- a/offapi/com/sun/star/setup/ActionType.idl
+++ /dev/null
@@ -1,61 +0,0 @@
-/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
-/*
- * This file is part of the LibreOffice project.
- *
- * This Source Code Form is subject to the terms of the Mozilla Public
- * License, v. 2.0. If a copy of the MPL was not distributed with this
- * file, You can obtain one at http://mozilla.org/MPL/2.0/.
- *
- * This file incorporates work covered by the following license notice:
- *
- * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements. See the NOTICE file distributed
- * with this work for additional information regarding copyright
- * ownership. The ASF licenses this file to you under the Apache
- * License, Version 2.0 (the "License"); you may not use this file
- * except in compliance with the License. You may obtain a copy of
- * the License at http://www.apache.org/licenses/LICENSE-2.0 .
- */
-#ifndef __com_sun_star_setup_ActionType_idl__
-#define __com_sun_star_setup_ActionType_idl__
-
-module com { module sun { module star { module setup {
-
-/// @deprecated
-published enum ActionType
-{
- INVALID,
-
- DOWNLOAD,
-
- MAKEDIR,
-
- DELETEDIR,
-
- COPYFILE,
-
- UNZIPFILE,
-
- DELETEFILE,
-
- MAKEFOLDER,
-
- MAKEFOLDERITEM,
-
- DELETEFOLDER,
-
- DELETEFOLDERITEM,
-
- PROFILEITEM,
-
- FONT,
-
- CREATESHORTCUT,
-
- WINREGISTRY
- };
-}; }; }; };
-
-#endif
-
-/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/offapi/com/sun/star/setup/BaseAction.idl b/offapi/com/sun/star/setup/BaseAction.idl
deleted file mode 100644
index ca92ac252e0c..000000000000
--- a/offapi/com/sun/star/setup/BaseAction.idl
+++ /dev/null
@@ -1,40 +0,0 @@
-/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
-/*
- * This file is part of the LibreOffice project.
- *
- * This Source Code Form is subject to the terms of the Mozilla Public
- * License, v. 2.0. If a copy of the MPL was not distributed with this
- * file, You can obtain one at http://mozilla.org/MPL/2.0/.
- *
- * This file incorporates work covered by the following license notice:
- *
- * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements. See the NOTICE file distributed
- * with this work for additional information regarding copyright
- * ownership. The ASF licenses this file to you under the Apache
- * License, Version 2.0 (the "License"); you may not use this file
- * except in compliance with the License. You may obtain a copy of
- * the License at http://www.apache.org/licenses/LICENSE-2.0 .
- */
-#ifndef __com_sun_star_setup_BaseAction_idl__
-#define __com_sun_star_setup_BaseAction_idl__
-
-#include <com/sun/star/setup/ActionType.idl>
-
-module com { module sun { module star { module setup {
-
-/// @deprecated
-published struct BaseAction
-{
- // DocMerge: empty anyway
- ActionType eType;
-
- // DocMerge: empty anyway
- boolean bDone;
- boolean bProcess;
- };
-}; }; }; };
-
-#endif
-
-/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/offapi/com/sun/star/setup/CopyFileAction.idl b/offapi/com/sun/star/setup/CopyFileAction.idl
deleted file mode 100644
index a83355ab8957..000000000000
--- a/offapi/com/sun/star/setup/CopyFileAction.idl
+++ /dev/null
@@ -1,53 +0,0 @@
-/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
-/*
- * This file is part of the LibreOffice project.
- *
- * This Source Code Form is subject to the terms of the Mozilla Public
- * License, v. 2.0. If a copy of the MPL was not distributed with this
- * file, You can obtain one at http://mozilla.org/MPL/2.0/.
- *
- * This file incorporates work covered by the following license notice:
- *
- * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements. See the NOTICE file distributed
- * with this work for additional information regarding copyright
- * ownership. The ASF licenses this file to you under the Apache
- * License, Version 2.0 (the "License"); you may not use this file
- * except in compliance with the License. You may obtain a copy of
- * the License at http://www.apache.org/licenses/LICENSE-2.0 .
- */
-#ifndef __com_sun_star_setup_CopyFileAction_idl__
-#define __com_sun_star_setup_CopyFileAction_idl__
-
-#include <com/sun/star/setup/BaseAction.idl>
-#include <com/sun/star/util/DateTime.idl>
-
-module com { module sun { module star { module setup {
-
-/// @deprecated
-published struct CopyFileAction: BaseAction
-{
- // DocMerge: empty anyway
- string strSourceFilename;
-
- // DocMerge: empty anyway
- string strDestinationFilename;
-
- // DocMerge: empty anyway
- boolean bUnoComponent;
- boolean bActiveX;
-
- // DocMerge: empty anyway
- boolean bOverwrite;
-
- // DocMerge: empty anyway
- com::sun::star::util::DateTime aDateTime;
-
- // DocMerge: empty anyway
- long nRights;
- };
-}; }; }; };
-
-#endif
-
-/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/offapi/com/sun/star/setup/DeleteDirAction.idl b/offapi/com/sun/star/setup/DeleteDirAction.idl
deleted file mode 100644
index 46346bf90996..000000000000
--- a/offapi/com/sun/star/setup/DeleteDirAction.idl
+++ /dev/null
@@ -1,36 +0,0 @@
-/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
-/*
- * This file is part of the LibreOffice project.
- *
- * This Source Code Form is subject to the terms of the Mozilla Public
- * License, v. 2.0. If a copy of the MPL was not distributed with this
- * file, You can obtain one at http://mozilla.org/MPL/2.0/.
- *
- * This file incorporates work covered by the following license notice:
- *
- * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements. See the NOTICE file distributed
- * with this work for additional information regarding copyright
- * ownership. The ASF licenses this file to you under the Apache
- * License, Version 2.0 (the "License"); you may not use this file
- * except in compliance with the License. You may obtain a copy of
- * the License at http://www.apache.org/licenses/LICENSE-2.0 .
- */
-#ifndef __com_sun_star_setup_DeleteDirAction_idl__
-#define __com_sun_star_setup_DeleteDirAction_idl__
-
-#include <com/sun/star/setup/BaseAction.idl>
-
-module com { module sun { module star { module setup {
-
-/// @deprecated
-published struct DeleteDirAction: BaseAction
-{
- // DocMerge: empty anyway
- string strDirname;
- };
-}; }; }; };
-
-#endif
-
-/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/offapi/com/sun/star/setup/DeleteFileAction.idl b/offapi/com/sun/star/setup/DeleteFileAction.idl
deleted file mode 100644
index 428e24bfbe41..000000000000
--- a/offapi/com/sun/star/setup/DeleteFileAction.idl
+++ /dev/null
@@ -1,49 +0,0 @@
-/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
-/*
- * This file is part of the LibreOffice project.
- *
- * This Source Code Form is subject to the terms of the Mozilla Public
- * License, v. 2.0. If a copy of the MPL was not distributed with this
- * file, You can obtain one at http://mozilla.org/MPL/2.0/.
- *
- * This file incorporates work covered by the following license notice:
- *
- * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements. See the NOTICE file distributed
- * with this work for additional information regarding copyright
- * ownership. The ASF licenses this file to you under the Apache
- * License, Version 2.0 (the "License"); you may not use this file
- * except in compliance with the License. You may obtain a copy of
- * the License at http://www.apache.org/licenses/LICENSE-2.0 .
- */
-#ifndef __com_sun_star_setup_DeleteFileAction_idl__
-#define __com_sun_star_setup_DeleteFileAction_idl__
-
-#include <com/sun/star/setup/BaseAction.idl>
-#include <com/sun/star/util/DateTime.idl>
-
-module com { module sun { module star { module setup {
-
-/// @deprecated
-published struct DeleteFileAction: BaseAction
-{
- // DocMerge: empty anyway
- string strDestinationPath;
-
- // DocMerge: empty anyway
- string strPattern;
-
- // DocMerge: empty anyway
- boolean bUnoComponent;
- boolean bActiveX;
-
- boolean bTestDate;
-
- // DocMerge: empty anyway
- com::sun::star::util::DateTime aDateTime;
- };
-}; }; }; };
-
-#endif
-
-/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/offapi/com/sun/star/setup/DeleteFolderAction.idl b/offapi/com/sun/star/setup/DeleteFolderAction.idl
deleted file mode 100644
index 829c74028642..000000000000
--- a/offapi/com/sun/star/setup/DeleteFolderAction.idl
+++ /dev/null
@@ -1,36 +0,0 @@
-/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
-/*
- * This file is part of the LibreOffice project.
- *
- * This Source Code Form is subject to the terms of the Mozilla Public
- * License, v. 2.0. If a copy of the MPL was not distributed with this
- * file, You can obtain one at http://mozilla.org/MPL/2.0/.
- *
- * This file incorporates work covered by the following license notice:
- *
- * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements. See the NOTICE file distributed
- * with this work for additional information regarding copyright
- * ownership. The ASF licenses this file to you under the Apache
- * License, Version 2.0 (the "License"); you may not use this file
- * except in compliance with the License. You may obtain a copy of
- * the License at http://www.apache.org/licenses/LICENSE-2.0 .
- */
-#ifndef __com_sun_star_setup_DeleteFolderAction_idl__
-#define __com_sun_star_setup_DeleteFolderAction_idl__
-
-#include <com/sun/star/setup/BaseAction.idl>
-
-module com { module sun { module star { module setup {
-
-/// @deprecated
-published struct DeleteFolderAction: BaseAction
-{
- // DocMerge: empty anyway
- string strFoldername;
- };
-}; }; }; };
-
-#endif
-
-/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/offapi/com/sun/star/setup/DeleteFolderItemAction.idl b/offapi/com/sun/star/setup/DeleteFolderItemAction.idl
deleted file mode 100644
index b2a0ddef4b55..000000000000
--- a/offapi/com/sun/star/setup/DeleteFolderItemAction.idl
+++ /dev/null
@@ -1,39 +0,0 @@
-/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
-/*
- * This file is part of the LibreOffice project.
- *
- * This Source Code Form is subject to the terms of the Mozilla Public
- * License, v. 2.0. If a copy of the MPL was not distributed with this
- * file, You can obtain one at http://mozilla.org/MPL/2.0/.
- *
- * This file incorporates work covered by the following license notice:
- *
- * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements. See the NOTICE file distributed
- * with this work for additional information regarding copyright
- * ownership. The ASF licenses this file to you under the Apache
- * License, Version 2.0 (the "License"); you may not use this file
- * except in compliance with the License. You may obtain a copy of
- * the License at http://www.apache.org/licenses/LICENSE-2.0 .
- */
-#ifndef __com_sun_star_setup_DeleteFolderItemAction_idl__
-#define __com_sun_star_setup_DeleteFolderItemAction_idl__
-
-#include <com/sun/star/setup/BaseAction.idl>
-
-module com { module sun { module star { module setup {
-
-/// @deprecated
-published struct DeleteFolderItemAction: BaseAction
-{
- // DocMerge: empty anyway
- string strFoldername;
-
- // DocMerge: empty anyway
- string strItemname;
- };
-}; }; }; };
-
-#endif
-
-/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/offapi/com/sun/star/setup/DownloadAction.idl b/offapi/com/sun/star/setup/DownloadAction.idl
deleted file mode 100644
index c6eb38076ca8..000000000000
--- a/offapi/com/sun/star/setup/DownloadAction.idl
+++ /dev/null
@@ -1,42 +0,0 @@
-/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
-/*
- * This file is part of the LibreOffice project.
- *
- * This Source Code Form is subject to the terms of the Mozilla Public
- * License, v. 2.0. If a copy of the MPL was not distributed with this
- * file, You can obtain one at http://mozilla.org/MPL/2.0/.
- *
- * This file incorporates work covered by the following license notice:
- *
- * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements. See the NOTICE file distributed
- * with this work for additional information regarding copyright
- * ownership. The ASF licenses this file to you under the Apache
- * License, Version 2.0 (the "License"); you may not use this file
- * except in compliance with the License. You may obtain a copy of
- * the License at http://www.apache.org/licenses/LICENSE-2.0 .
- */
-#ifndef __com_sun_star_setup_DownloadAction_idl__
-#define __com_sun_star_setup_DownloadAction_idl__
-
-#include <com/sun/star/setup/BaseAction.idl>
-
-module com { module sun { module star { module setup {
-
-/// @deprecated
-published struct DownloadAction: BaseAction
-{
- // DocMerge: empty anyway
- string strFilename;
-
- // DocMerge: empty anyway
- long nSizeKB;
-
- // DocMerge: empty anyway
- long nCRC;
- };
-}; }; }; };
-
-#endif
-
-/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/offapi/com/sun/star/setup/FontAction.idl b/offapi/com/sun/star/setup/FontAction.idl
deleted file mode 100644
index 7acb0ac3f86c..000000000000
--- a/offapi/com/sun/star/setup/FontAction.idl
+++ /dev/null
@@ -1,42 +0,0 @@
-/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
-/*
- * This file is part of the LibreOffice project.
- *
- * This Source Code Form is subject to the terms of the Mozilla Public
- * License, v. 2.0. If a copy of the MPL was not distributed with this
- * file, You can obtain one at http://mozilla.org/MPL/2.0/.
- *
- * This file incorporates work covered by the following license notice:
- *
- * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements. See the NOTICE file distributed
- * with this work for additional information regarding copyright
- * ownership. The ASF licenses this file to you under the Apache
- * License, Version 2.0 (the "License"); you may not use this file
- * except in compliance with the License. You may obtain a copy of
- * the License at http://www.apache.org/licenses/LICENSE-2.0 .
- */
-#ifndef __com_sun_star_setup_FontAction_idl__
-#define __com_sun_star_setup_FontAction_idl__
-
-#include <com/sun/star/setup/BaseAction.idl>
-
-module com { module sun { module star { module setup {
-
-/// @deprecated
-published struct FontAction: BaseAction
-{
- // DocMerge: empty anyway
- string strFontFilename;
-
- // DocMerge: empty anyway
- string strFontname;
-
- // DocMerge: empty anyway
- boolean bCreate;
- };
-}; }; }; };
-
-#endif
-
-/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/offapi/com/sun/star/setup/InstallEnvironment.idl b/offapi/com/sun/star/setup/InstallEnvironment.idl
deleted file mode 100644
index f704e0e63a09..000000000000
--- a/offapi/com/sun/star/setup/InstallEnvironment.idl
+++ /dev/null
@@ -1,110 +0,0 @@
-/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
-/*
- * This file is part of the LibreOffice project.
- *
- * This Source Code Form is subject to the terms of the Mozilla Public
- * License, v. 2.0. If a copy of the MPL was not distributed with this
- * file, You can obtain one at http://mozilla.org/MPL/2.0/.
- *
- * This file incorporates work covered by the following license notice:
- *
- * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements. See the NOTICE file distributed
- * with this work for additional information regarding copyright
- * ownership. The ASF licenses this file to you under the Apache
- * License, Version 2.0 (the "License"); you may not use this file
- * except in compliance with the License. You may obtain a copy of
- * the License at http://www.apache.org/licenses/LICENSE-2.0 .
- */
-#ifndef __com_sun_star_setup_InstallEnvironment_idl__
-#define __com_sun_star_setup_InstallEnvironment_idl__
-
-#include <com/sun/star/setup/OSType.idl>
-#include <com/sun/star/setup/ModuleState.idl>
-#include <com/sun/star/setup/InstallType.idl>
-
-module com { module sun { module star { module setup {
-
-/// @deprecated
-published struct InstallEnvironment
-{
- // DocMerge: empty anyway
- OSType eOSType;
-
- // DocMerge: empty anyway
- InstallType eInstallType;
-
- // DocMerge: empty anyway
- string strDestinationPath;
-
- // DocMerge: empty anyway
- long nClusterSize;
-
- // DocMerge: empty anyway
- long nDriveSize;
-
- // DocMerge: empty anyway
- sequence <short> seqLanguages;
-
- // DocMerge: empty anyway
- sequence <short> seqSwitchLanguages;
-
- // DocMerge: empty anyway
- sequence <ModuleState> seqModuleIDList;
-
- // DocMerge: empty anyway
- string strUserName;
-
- // DocMerge: empty anyway
- string strUserFirstName;
-
- // DocMerge: empty anyway
- string strUserId;
-
- // DocMerge: empty anyway
- string strCompanyname;
-
- // DocMerge: empty anyway
- string strStreet;
-
- // DocMerge: empty anyway
- string strCountry;
-
- // DocMerge: empty anyway
- string strZip;
-
- // DocMerge: empty anyway
- string strCity;
-
- // DocMerge: empty anyway
- string strTitle;
-
- // DocMerge: empty anyway
- string strPosition;
-
- // DocMerge: empty anyway
- string strPhonePriv;
-
- // DocMerge: empty anyway
- string strPhoneCompany;
-
- // DocMerge: empty anyway
- string strPhoneFax;
-
- // DocMerge: empty anyway
- string strEmail;
-
- // DocMerge: empty anyway
- string strState;
-
- // DocMerge: empty anyway
- string strFatherName;
-
- // DocMerge: empty anyway
- string strApartmentNr;
- };
-}; }; }; };
-
-#endif
-
-/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/offapi/com/sun/star/setup/InstallResponse.idl b/offapi/com/sun/star/setup/InstallResponse.idl
deleted file mode 100644
index 848edeecfb84..000000000000
--- a/offapi/com/sun/star/setup/InstallResponse.idl
+++ /dev/null
@@ -1,48 +0,0 @@
-/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
-/*
- * This file is part of the LibreOffice project.
- *
- * This Source Code Form is subject to the terms of the Mozilla Public
- * License, v. 2.0. If a copy of the MPL was not distributed with this
- * file, You can obtain one at http://mozilla.org/MPL/2.0/.
- *
- * This file incorporates work covered by the following license notice:
- *
- * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements. See the NOTICE file distributed
- * with this work for additional information regarding copyright
- * ownership. The ASF licenses this file to you under the Apache
- * License, Version 2.0 (the "License"); you may not use this file
- * except in compliance with the License. You may obtain a copy of
- * the License at http://www.apache.org/licenses/LICENSE-2.0 .
- */
-#ifndef __com_sun_star_setup_InstallResponse_idl__
-#define __com_sun_star_setup_InstallResponse_idl__
-
-#include <com/sun/star/setup/ResponseErrorCode.idl>
-
-module com { module sun { module star { module setup {
-
-// DocMerge: empty anyway
-published struct InstallResponse
-{
- // DocMerge: empty anyway
- boolean bSuccess;
-
- // DocMerge: empty anyway
- ResponseErrorCode eErrorCode;
-
- // DocMerge: empty anyway
- long nSizeNeeded;
-
- // DocMerge: empty anyway
- boolean bReboot;
-
- // DocMerge: empty anyway
- boolean bLogout;
- };
-}; }; }; };
-
-#endif
-
-/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/offapi/com/sun/star/setup/InstallType.idl b/offapi/com/sun/star/setup/InstallType.idl
deleted file mode 100644
index 50e51aa2c021..000000000000
--- a/offapi/com/sun/star/setup/InstallType.idl
+++ /dev/null
@@ -1,55 +0,0 @@
-/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
-/*
- * This file is part of the LibreOffice project.
- *
- * This Source Code Form is subject to the terms of the Mozilla Public
- * License, v. 2.0. If a copy of the MPL was not distributed with this
- * file, You can obtain one at http://mozilla.org/MPL/2.0/.
- *
- * This file incorporates work covered by the following license notice:
- *
- * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements. See the NOTICE file distributed
- * with this work for additional information regarding copyright
- * ownership. The ASF licenses this file to you under the Apache
- * License, Version 2.0 (the "License"); you may not use this file
- * except in compliance with the License. You may obtain a copy of
- * the License at http://www.apache.org/licenses/LICENSE-2.0 .
- */
-#ifndef __com_sun_star_setup_InstallType_idl__
-#define __com_sun_star_setup_InstallType_idl__
-
-module com { module sun { module star { module setup {
-
-/// @deprecated
-published enum InstallType
-{
- // DocMerge: empty anyway
- INVALID,
-
- // DocMerge: empty anyway
- INSTALL,
-
- // DocMerge: empty anyway
- FULLINSTALL,
-
- // DocMerge: empty anyway
- CHANGE,
-
- // DocMerge: empty anyway
- REPAIR,
-
- // DocMerge: empty anyway
- DELETE,
-
- // DocMerge: empty anyway
- FULLDELETE,
-
- // DocMerge: empty anyway
- UPDATE
- };
-}; }; }; };
-
-#endif
-
-/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/offapi/com/sun/star/setup/MakeDirAction.idl b/offapi/com/sun/star/setup/MakeDirAction.idl
deleted file mode 100644
index b857ac212dea..000000000000
--- a/offapi/com/sun/star/setup/MakeDirAction.idl
+++ /dev/null
@@ -1,39 +0,0 @@
-/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
-/*
- * This file is part of the LibreOffice project.
- *
- * This Source Code Form is subject to the terms of the Mozilla Public
- * License, v. 2.0. If a copy of the MPL was not distributed with this
- * file, You can obtain one at http://mozilla.org/MPL/2.0/.
- *
- * This file incorporates work covered by the following license notice:
- *
- * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements. See the NOTICE file distributed
- * with this work for additional information regarding copyright
- * ownership. The ASF licenses this file to you under the Apache
- * License, Version 2.0 (the "License"); you may not use this file
- * except in compliance with the License. You may obtain a copy of
- * the License at http://www.apache.org/licenses/LICENSE-2.0 .
- */
-#ifndef __com_sun_star_setup_MakeDirAction_idl__
-#define __com_sun_star_setup_MakeDirAction_idl__
-
-#include <com/sun/star/setup/BaseAction.idl>
-
-module com { module sun { module star { module setup {
-
-/// @deprecated
-published struct MakeDirAction: BaseAction
-{
- // DocMerge: empty anyway
- string strDirname;
-
- // DocMerge: empty anyway
- long nRights;
- };
-}; }; }; };
-
-#endif
-
-/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/offapi/com/sun/star/setup/MakeFolderAction.idl b/offapi/com/sun/star/setup/MakeFolderAction.idl
deleted file mode 100644
index 5c29e38e4cd2..000000000000
--- a/offapi/com/sun/star/setup/MakeFolderAction.idl
+++ /dev/null
@@ -1,39 +0,0 @@
-/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
-/*
- * This file is part of the LibreOffice project.
- *
- * This Source Code Form is subject to the terms of the Mozilla Public
- * License, v. 2.0. If a copy of the MPL was not distributed with this
- * file, You can obtain one at http://mozilla.org/MPL/2.0/.
- *
- * This file incorporates work covered by the following license notice:
- *
- * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements. See the NOTICE file distributed
- * with this work for additional information regarding copyright
- * ownership. The ASF licenses this file to you under the Apache
- * License, Version 2.0 (the "License"); you may not use this file
- * except in compliance with the License. You may obtain a copy of
- * the License at http://www.apache.org/licenses/LICENSE-2.0 .
- */
-#ifndef __com_sun_star_setup_MakeFolderAction_idl__
-#define __com_sun_star_setup_MakeFolderAction_idl__
-
-#include <com/sun/star/setup/BaseAction.idl>
-
-module com { module sun { module star { module setup {
-
-/// @deprecated
-published struct MakeFolderAction: BaseAction
-{
- // DocMerge: empty anyway
- string strFoldername;
-
- // DocMerge: empty anyway
- boolean bUserFolder;
- };
-}; }; }; };
-
-#endif
-
-/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/offapi/com/sun/star/setup/MakeFolderItemAction.idl b/offapi/com/sun/star/setup/MakeFolderItemAction.idl
deleted file mode 100644
index ba8215c2596e..000000000000
--- a/offapi/com/sun/star/setup/MakeFolderItemAction.idl
+++ /dev/null
@@ -1,48 +0,0 @@
-/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
-/*
- * This file is part of the LibreOffice project.
- *
- * This Source Code Form is subject to the terms of the Mozilla Public
- * License, v. 2.0. If a copy of the MPL was not distributed with this
- * file, You can obtain one at http://mozilla.org/MPL/2.0/.
- *
- * This file incorporates work covered by the following license notice:
- *
- * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements. See the NOTICE file distributed
- * with this work for additional information regarding copyright
- * ownership. The ASF licenses this file to you under the Apache
- * License, Version 2.0 (the "License"); you may not use this file
- * except in compliance with the License. You may obtain a copy of
- * the License at http://www.apache.org/licenses/LICENSE-2.0 .
- */
-#ifndef __com_sun_star_setup_MakeFolderItemAction_idl__
-#define __com_sun_star_setup_MakeFolderItemAction_idl__
-
-#include <com/sun/star/setup/BaseAction.idl>
-
-module com { module sun { module star { module setup {
-
-/// @deprecated
-published struct MakeFolderItemAction: BaseAction
-{
- // DocMerge: empty anyway
- string strFoldername;
-
- // DocMerge: empty anyway
- string strItemname;
-
- // DocMerge: empty anyway
- string strDestinationPath;
-
- // DocMerge: empty anyway
- string strDestinationExecutable;
-
- // DocMerge: empty anyway
- string strParameter;
- };
-}; }; }; };
-
-#endif
-
-/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/offapi/com/sun/star/setup/MakeShortcutAction.idl b/offapi/com/sun/star/setup/MakeShortcutAction.idl
deleted file mode 100644
index 912220d5c960..000000000000
--- a/offapi/com/sun/star/setup/MakeShortcutAction.idl
+++ /dev/null
@@ -1,45 +0,0 @@
-/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
-/*
- * This file is part of the LibreOffice project.
- *
- * This Source Code Form is subject to the terms of the Mozilla Public
- * License, v. 2.0. If a copy of the MPL was not distributed with this
- * file, You can obtain one at http://mozilla.org/MPL/2.0/.
- *
- * This file incorporates work covered by the following license notice:
- *
- * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements. See the NOTICE file distributed
- * with this work for additional information regarding copyright
- * ownership. The ASF licenses this file to you under the Apache
- * License, Version 2.0 (the "License"); you may not use this file
- * except in compliance with the License. You may obtain a copy of
- * the License at http://www.apache.org/licenses/LICENSE-2.0 .
- */
-#ifndef __com_sun_star_setup_MakeShortcutAction_idl__
-#define __com_sun_star_setup_MakeShortcutAction_idl__
-
-#include <com/sun/star/setup/BaseAction.idl>
-
-module com { module sun { module star { module setup {
-
-/// @deprecated
-published struct MakeShortcutAction: BaseAction
-{
- // DocMerge: empty anyway
- string strSource;
-
- // DocMerge: empty anyway
- string strDestination;
-
- // DocMerge: empty anyway
- string strPath;
-
- // DocMerge: empty anyway
- string strDescription;
- };
-}; }; }; };
-
-#endif
-
-/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/offapi/com/sun/star/setup/MirrorEntry.idl b/offapi/com/sun/star/setup/MirrorEntry.idl
deleted file mode 100644
index 99564286f448..000000000000
--- a/offapi/com/sun/star/setup/MirrorEntry.idl
+++ /dev/null
@@ -1,40 +0,0 @@
-/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
-/*
- * This file is part of the LibreOffice project.
- *
- * This Source Code Form is subject to the terms of the Mozilla Public
- * License, v. 2.0. If a copy of the MPL was not distributed with this
- * file, You can obtain one at http://mozilla.org/MPL/2.0/.
- *
- * This file incorporates work covered by the following license notice:
- *
- * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements. See the NOTICE file distributed
- * with this work for additional information regarding copyright
- * ownership. The ASF licenses this file to you under the Apache
- * License, Version 2.0 (the "License"); you may not use this file
- * except in compliance with the License. You may obtain a copy of
- * the License at http://www.apache.org/licenses/LICENSE-2.0 .
- */
-#ifndef __com_sun_star_setup_MirrorEntry_idl__
-#define __com_sun_star_setup_MirrorEntry_idl__
-
-module com { module sun { module star { module setup {
-
-/// @deprecated
-published struct MirrorEntry
-{
- // DocMerge: empty anyway
- string strDisplayname;
-
- // DocMerge: empty anyway
- string strPath;
-
- // DocMerge: empty anyway
- short nQuality;
- };
-}; }; }; };
-
-#endif
-
-/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/offapi/com/sun/star/setup/ModuleInfo.idl b/offapi/com/sun/star/setup/ModuleInfo.idl
deleted file mode 100644
index d7dfd8f6b551..000000000000
--- a/offapi/com/sun/star/setup/ModuleInfo.idl
+++ /dev/null
@@ -1,64 +0,0 @@
-/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
-/*
- * This file is part of the LibreOffice project.
- *
- * This Source Code Form is subject to the terms of the Mozilla Public
- * License, v. 2.0. If a copy of the MPL was not distributed with this
- * file, You can obtain one at http://mozilla.org/MPL/2.0/.
- *
- * This file incorporates work covered by the following license notice:
- *
- * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements. See the NOTICE file distributed
- * with this work for additional information regarding copyright
- * ownership. The ASF licenses this file to you under the Apache
- * License, Version 2.0 (the "License"); you may not use this file
- * except in compliance with the License. You may obtain a copy of
- * the License at http://www.apache.org/licenses/LICENSE-2.0 .
- */
-#ifndef __com_sun_star_setup_ModuleInfo_idl__
-#define __com_sun_star_setup_ModuleInfo_idl__
-
-module com { module sun { module star { module setup {
-
-/// @deprecated
-published struct ModuleInfo
-{
- // DocMerge: empty anyway
- string strID;
-
- // DocMerge: empty anyway
- string strName;
-
- // DocMerge: empty anyway
- string strDescription;
-
- // DocMerge: empty anyway
- string strOnSelect;
-
- // DocMerge: empty anyway
- string strOnDeselect;
-
- // DocMerge: empty anyway
- boolean isMinimal;
-
- // DocMerge: empty anyway
- boolean isDefault;
-
- // DocMerge: empty anyway
- boolean isHiddenRoot;
-
- // DocMerge: empty anyway
- boolean isDontSelectByUser;
-
- // DocMerge: empty anyway
- long nSizeKB;
-
- // DocMerge: empty anyway
- sequence < any > seqSubModules;
- };
-}; }; }; };
-
-#endif
-
-/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/offapi/com/sun/star/setup/ModuleState.idl b/offapi/com/sun/star/setup/ModuleState.idl
deleted file mode 100644
index eff7db2e808e..000000000000
--- a/offapi/com/sun/star/setup/ModuleState.idl
+++ /dev/null
@@ -1,40 +0,0 @@
-/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
-/*
- * This file is part of the LibreOffice project.
- *
- * This Source Code Form is subject to the terms of the Mozilla Public
- * License, v. 2.0. If a copy of the MPL was not distributed with this
- * file, You can obtain one at http://mozilla.org/MPL/2.0/.
- *
- * This file incorporates work covered by the following license notice:
- *
- * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements. See the NOTICE file distributed
- * with this work for additional information regarding copyright
- * ownership. The ASF licenses this file to you under the Apache
- * License, Version 2.0 (the "License"); you may not use this file
- * except in compliance with the License. You may obtain a copy of
- * the License at http://www.apache.org/licenses/LICENSE-2.0 .
- */
-#ifndef __com_sun_star_setup_ModuleState_idl__
-#define __com_sun_star_setup_ModuleState_idl__
-
-module com { module sun { module star { module setup {
-
-/// @deprecated
-published struct ModuleState
-{
- // DocMerge: empty anyway
- string strID;
-
- // DocMerge: empty anyway
- boolean isSelected;
-
- // DocMerge: empty anyway
- boolean isInstalled;
- };
-}; }; }; };
-
-#endif
-
-/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/offapi/com/sun/star/setup/OSType.idl b/offapi/com/sun/star/setup/OSType.idl
deleted file mode 100644
index 17c18a8579f1..000000000000
--- a/offapi/com/sun/star/setup/OSType.idl
+++ /dev/null
@@ -1,68 +0,0 @@
-/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
-/*
- * This file is part of the LibreOffice project.
- *
- * This Source Code Form is subject to the terms of the Mozilla Public
- * License, v. 2.0. If a copy of the MPL was not distributed with this
- * file, You can obtain one at http://mozilla.org/MPL/2.0/.
- *
- * This file incorporates work covered by the following license notice:
- *
- * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements. See the NOTICE file distributed
- * with this work for additional information regarding copyright
- * ownership. The ASF licenses this file to you under the Apache
- * License, Version 2.0 (the "License"); you may not use this file
- * except in compliance with the License. You may obtain a copy of
- * the License at http://www.apache.org/licenses/LICENSE-2.0 .
- */
-#ifndef __com_sun_star_setup_OSType_idl__
-#define __com_sun_star_setup_OSType_idl__
-
-// dear porters: please do not apply any patches for new platforms here
-// it deprecated anyway and any patches will cause API
-// incompatibility errors mh
-
-module com { module sun { module star { module setup {
-
-/// @deprecated
-published enum OSType
-{
- // DocMerge: empty anyway
- INVALID,
-
- // DocMerge: empty anyway
- WIN,
-
- // DocMerge: empty anyway
- OS2,
-
- // DocMerge: empty anyway
- MAC,
-
- // DocMerge: empty anyway
- UNIX_SOLS,
-
- // DocMerge: empty anyway
- UNIX_SOLI,
-
- // DocMerge: empty anyway
- UNIX_LINUX,
-
- // DocMerge: empty anyway
- UNIX_HP,
-
- // DocMerge: empty anyway
- UNIX_SCO,
-
- // DocMerge: empty anyway
- UNIX_SOLSG,
-
- // DocMerge: empty anyway
- UNIX_SOLIG
- };
-}; }; }; };
-
-#endif
-
-/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/offapi/com/sun/star/setup/ProductRegistration.idl b/offapi/com/sun/star/setup/ProductRegistration.idl
deleted file mode 100644
index 3dbdf572f6e2..000000000000
--- a/offapi/com/sun/star/setup/ProductRegistration.idl
+++ /dev/null
@@ -1,82 +0,0 @@
-/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
-/*
- * This file is part of the LibreOffice project.
- *
- * This Source Code Form is subject to the terms of the Mozilla Public
- * License, v. 2.0. If a copy of the MPL was not distributed with this
- * file, You can obtain one at http://mozilla.org/MPL/2.0/.
- *
- * This file incorporates work covered by the following license notice:
- *
- * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements. See the NOTICE file distributed
- * with this work for additional information regarding copyright
- * ownership. The ASF licenses this file to you under the Apache
- * License, Version 2.0 (the "License"); you may not use this file
- * except in compliance with the License. You may obtain a copy of
- * the License at http://www.apache.org/licenses/LICENSE-2.0 .
- */
-
-#ifndef __com_sun_star_setup_ProductRegistration_idl__
-#define __com_sun_star_setup_ProductRegistration_idl__
-
-#include <com/sun/star/task/JobExecutor.idl>
-#include <com/sun/star/task/XJob.idl>
-
-module com { module sun { module star { module setup {
-
-/** provides a mechanism for registering the product.
-
- <p>Two main functionalities are covered by this service:
- <ul><il><em>Triggering Online Registration</em><br/>
- If, by any user interface of your choice, the user tells she wants to register
- their product copy, ProductRegistration is the service of your choice.
- </il><br/>
- <il><em>Executing Registration Requests</em><br/>
- ProductRegistration allows to remind your users to register, using a dialog with various
- choices.
- </il>
- </ul></p>
-
- @since OOo 1.1.2
-*/
-published service ProductRegistration
-{
- /** allows to trigger certain events.
-
- <p>The string argument of <method scope="com::sun::star::task">XJobExecutor::trigger</method> is
- used to determine the type of the event. Currently supported events are:<br/>
- <ul><li><b>RegistrationRequired</b><br/>
- Determines that the registration is required to be executed.<br/>
- This is usually triggered by some user interaction, for instance upon choosing a menu item
- called <em>Registration</em>.</p>
- </li>
- </ul>
- </p>
- */
- service com::sun::star::task::JobExecutor;
-
- /** allows the registration request to be scheduled automatically.
-
- <p>There are processes which allow to schedule events and jobs, for instance there
- can be configuration settings scheduling which operations are to be executed upon an program
- startup. Such processes usually require the jobs to be executed to support the
- <type scope="com::sun::star::task">XJob</type> interface.</p>
-
- <p>That's why this service supports the <type scope="com::sun::star::task">XJob</type>, too.<br/>
- Calling the <method scope="com::sun::star::task">XJob::execute</method> method results in displaying a
- dialog which asks the user to register. This is done once per session, means you need to restart the
- process which called this.</p>
-
- <p>At the moment, there is no specification about how to use the arguments given in the
- <method scope="com::sun::star::task">XJob::execute</method> method, but this may change in future versions of the service
- descriptions, so to keep your implementation compatible, you should not use these arguments.</p>
- */
- interface com::sun::star::task::XJob;
-};
-
-}; }; }; };
-
-#endif
-
-/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/offapi/com/sun/star/setup/ProfileItemAction.idl b/offapi/com/sun/star/setup/ProfileItemAction.idl
deleted file mode 100644
index f8a8c55244bc..000000000000
--- a/offapi/com/sun/star/setup/ProfileItemAction.idl
+++ /dev/null
@@ -1,48 +0,0 @@
-/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
-/*
- * This file is part of the LibreOffice project.
- *
- * This Source Code Form is subject to the terms of the Mozilla Public
- * License, v. 2.0. If a copy of the MPL was not distributed with this
- * file, You can obtain one at http://mozilla.org/MPL/2.0/.
- *
- * This file incorporates work covered by the following license notice:
- *
- * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements. See the NOTICE file distributed
- * with this work for additional information regarding copyright
- * ownership. The ASF licenses this file to you under the Apache
- * License, Version 2.0 (the "License"); you may not use this file
- * except in compliance with the License. You may obtain a copy of
- * the License at http://www.apache.org/licenses/LICENSE-2.0 .
- */
-#ifndef __com_sun_star_setup_ProfileItemAction_idl__
-#define __com_sun_star_setup_ProfileItemAction_idl__
-
-#include <com/sun/star/setup/BaseAction.idl>
-
-module com { module sun { module star { module setup {
-
-/// @deprecated
-published struct ProfileItemAction: BaseAction
-{
- // DocMerge: empty anyway
- string strProfilename;
-
- // DocMerge: empty anyway
- string strSection;
-
- // DocMerge: empty anyway
- string strKey;
-
- // DocMerge: empty anyway
- string strValue;
-
- // DocMerge: empty anyway
- boolean bCreate;
- };
-}; }; }; };
-
-#endif
-
-/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/offapi/com/sun/star/setup/ResponseErrorCode.idl b/offapi/com/sun/star/setup/ResponseErrorCode.idl
deleted file mode 100644
index 1e2299267c7b..000000000000
--- a/offapi/com/sun/star/setup/ResponseErrorCode.idl
+++ /dev/null
@@ -1,38 +0,0 @@
-/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
-/*
- * This file is part of the LibreOffice project.
- *
- * This Source Code Form is subject to the terms of the Mozilla Public
- * License, v. 2.0. If a copy of the MPL was not distributed with this
- * file, You can obtain one at http://mozilla.org/MPL/2.0/.
- *
- * This file incorporates work covered by the following license notice:
- *
- * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements. See the NOTICE file distributed
- * with this work for additional information regarding copyright
- * ownership. The ASF licenses this file to you under the Apache
- * License, Version 2.0 (the "License"); you may not use this file
- * except in compliance with the License. You may obtain a copy of
- * the License at http://www.apache.org/licenses/LICENSE-2.0 .
- */
-#ifndef __com_sun_star_setup_ResponseErrorCode_idl__
-#define __com_sun_star_setup_ResponseErrorCode_idl__
-
-module com { module sun { module star { module setup {
-
-/// @deprecated
-published enum ResponseErrorCode
-{
- // DocMerge: empty anyway
- NOERROR,
-
- // DocMerge: empty anyway
- NOT_ENOUGH_SPACE
-};
-
-}; }; }; };
-
-#endif
-
-/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/offapi/com/sun/star/setup/Setup.idl b/offapi/com/sun/star/setup/Setup.idl
deleted file mode 100644
index feba86775c19..000000000000
--- a/offapi/com/sun/star/setup/Setup.idl
+++ /dev/null
@@ -1,32 +0,0 @@
-/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
-/*
- * This file is part of the LibreOffice project.
- *
- * This Source Code Form is subject to the terms of the Mozilla Public
- * License, v. 2.0. If a copy of the MPL was not distributed with this
- * file, You can obtain one at http://mozilla.org/MPL/2.0/.
- *
- * This file incorporates work covered by the following license notice:
- *
- * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements. See the NOTICE file distributed
- * with this work for additional information regarding copyright
- * ownership. The ASF licenses this file to you under the Apache
- * License, Version 2.0 (the "License"); you may not use this file
- * except in compliance with the License. You may obtain a copy of
- * the License at http://www.apache.org/licenses/LICENSE-2.0 .
- */
-#ifndef __com_sun_star_setup_Setup_idl__
-#define __com_sun_star_setup_Setup_idl__
-
-#include <com/sun/star/setup/XSetup.idl>
-
-module com { module sun { module star { module setup {
-
-/// @deprecated
-published service Setup : com::sun::star::setup::XSetup;
-
-}; }; }; };
-#endif
-
-/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/offapi/com/sun/star/setup/SizeInfo.idl b/offapi/com/sun/star/setup/SizeInfo.idl
deleted file mode 100644
index 5854384100ed..000000000000
--- a/offapi/com/sun/star/setup/SizeInfo.idl
+++ /dev/null
@@ -1,43 +0,0 @@
-/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
-/*
- * This file is part of the LibreOffice project.
- *
- * This Source Code Form is subject to the terms of the Mozilla Public
- * License, v. 2.0. If a copy of the MPL was not distributed with this
- * file, You can obtain one at http://mozilla.org/MPL/2.0/.
- *
- * This file incorporates work covered by the following license notice:
- *
- * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements. See the NOTICE file distributed
- * with this work for additional information regarding copyright
- * ownership. The ASF licenses this file to you under the Apache
- * License, Version 2.0 (the "License"); you may not use this file
- * except in compliance with the License. You may obtain a copy of
- * the License at http://www.apache.org/licenses/LICENSE-2.0 .
- */
-#ifndef __com_sun_star_setup_SizeInfo_idl__
-#define __com_sun_star_setup_SizeInfo_idl__
-
-module com { module sun { module star { module setup {
-
-/// @deprecated
-published struct SizeInfo
-{
- // DocMerge: empty anyway
- long nNormalSizeKB;
-
- // DocMerge: empty anyway
- long nNormalTempSizeKB;
-
- // DocMerge: empty anyway
- long nMinimalSizeKB;
-
- // DocMerge: empty anyway
- long nMinimalTempSizeKB;
- };
-}; }; }; };
-
-#endif
-
-/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/offapi/com/sun/star/setup/UnzipAction.idl b/offapi/com/sun/star/setup/UnzipAction.idl
deleted file mode 100644
index 30a556b7c323..000000000000
--- a/offapi/com/sun/star/setup/UnzipAction.idl
+++ /dev/null
@@ -1,59 +0,0 @@
-/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
-/*
- * This file is part of the LibreOffice project.
- *
- * This Source Code Form is subject to the terms of the Mozilla Public
- * License, v. 2.0. If a copy of the MPL was not distributed with this
- * file, You can obtain one at http://mozilla.org/MPL/2.0/.
- *
- * This file incorporates work covered by the following license notice:
- *
- * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements. See the NOTICE file distributed
- * with this work for additional information regarding copyright
- * ownership. The ASF licenses this file to you under the Apache
- * License, Version 2.0 (the "License"); you may not use this file
- * except in compliance with the License. You may obtain a copy of
- * the License at http://www.apache.org/licenses/LICENSE-2.0 .
- */
-#ifndef __com_sun_star_setup_UnzipAction_idl__
-#define __com_sun_star_setup_UnzipAction_idl__
-
-#include <com/sun/star/setup/BaseAction.idl>
-#include <com/sun/star/util/DateTime.idl>
-
-module com { module sun { module star { module setup {
-
-/// @deprecated
-published struct UnzipAction: BaseAction
-{
- // DocMerge: empty anyway
- string strSourceFilename;
-
- // DocMerge: empty anyway
- string strDestinationPath;
-
- // DocMerge: empty anyway
- string strPattern;
-
- // DocMerge: empty anyway
- boolean bUnoComponent;
- boolean bActiveX;
-
- // DocMerge: empty anyway
- boolean bOverwrite;
-
- // DocMerge: empty anyway
- com::sun::star::util::DateTime aDateTime;
-
- // DocMerge: empty anyway
- long nRights;
-
- // DocMerge: empty anyway
- sequence <string> seqSubFiles;
- };
-}; }; }; };
-
-#endif
-
-/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/offapi/com/sun/star/setup/UpdateType.idl b/offapi/com/sun/star/setup/UpdateType.idl
deleted file mode 100644
index 2b0f90ffe1ca..000000000000
--- a/offapi/com/sun/star/setup/UpdateType.idl
+++ /dev/null
@@ -1,43 +0,0 @@
-/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
-/*
- * This file is part of the LibreOffice project.
- *
- * This Source Code Form is subject to the terms of the Mozilla Public
- * License, v. 2.0. If a copy of the MPL was not distributed with this
- * file, You can obtain one at http://mozilla.org/MPL/2.0/.
- *
- * This file incorporates work covered by the following license notice:
- *
- * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements. See the NOTICE file distributed
- * with this work for additional information regarding copyright
- * ownership. The ASF licenses this file to you under the Apache
- * License, Version 2.0 (the "License"); you may not use this file
- * except in compliance with the License. You may obtain a copy of
- * the License at http://www.apache.org/licenses/LICENSE-2.0 .
- */
-#ifndef __com_sun_star_setup_UpdateType_idl__
-#define __com_sun_star_setup_UpdateType_idl__
-
-module com { module sun { module star { module setup {
-
-/// @deprecated
-published enum UpdateType
-{
- // DocMerge: empty anyway
- INVALID,
-
- // DocMerge: empty anyway
- EQUAL,
-
- // DocMerge: empty anyway
- OPTIONAL,
-
- // DocMerge: empty anyway
- REQUIRED
- };
-}; }; }; };
-
-#endif
-
-/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/offapi/com/sun/star/setup/VersionIdentifier.idl b/offapi/com/sun/star/setup/VersionIdentifier.idl
deleted file mode 100644
index a7d746f9cfb1..000000000000
--- a/offapi/com/sun/star/setup/VersionIdentifier.idl
+++ /dev/null
@@ -1,51 +0,0 @@
-/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
-/*
- * This file is part of the LibreOffice project.
- *
- * This Source Code Form is subject to the terms of the Mozilla Public
- * License, v. 2.0. If a copy of the MPL was not distributed with this
- * file, You can obtain one at http://mozilla.org/MPL/2.0/.
- *
- * This file incorporates work covered by the following license notice:
- *
- * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements. See the NOTICE file distributed
- * with this work for additional information regarding copyright
- * ownership. The ASF licenses this file to you under the Apache
- * License, Version 2.0 (the "License"); you may not use this file
- * except in compliance with the License. You may obtain a copy of
- * the License at http://www.apache.org/licenses/LICENSE-2.0 .
- */
-#ifndef __com_sun_star_setup_VersionIdentifier_idl__
-#define __com_sun_star_setup_VersionIdentifier_idl__
-
-#include <com/sun/star/setup/OSType.idl>
-
-module com { module sun { module star { module setup {
-
-/// @deprecated
-published struct VersionIdentifier
-{
- // DocMerge: empty anyway
- OSType eOSType;
-
- // DocMerge: empty anyway
- short nLanguage;
-
- // DocMerge: empty anyway
- long nBuildnumber;
-
- // DocMerge: empty anyway
- string strProductKey;
-
- // DocMerge: empty anyway
- string strInstLanguages;
-
- // DocMerge: empty anyway
- string strInstMinor;
- };
-}; }; }; };
-
-#endif
-
-/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/offapi/com/sun/star/setup/WindowsRegistryAction.idl b/offapi/com/sun/star/setup/WindowsRegistryAction.idl
deleted file mode 100644
index 21d7efacfbb9..000000000000
--- a/offapi/com/sun/star/setup/WindowsRegistryAction.idl
+++ /dev/null
@@ -1,54 +0,0 @@
-/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
-/*
- * This file is part of the LibreOffice project.
- *
- * This Source Code Form is subject to the terms of the Mozilla Public
- * License, v. 2.0. If a copy of the MPL was not distributed with this
- * file, You can obtain one at http://mozilla.org/MPL/2.0/.
- *
- * This file incorporates work covered by the following license notice:
- *
- * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements. See the NOTICE file distributed
- * with this work for additional information regarding copyright
- * ownership. The ASF licenses this file to you under the Apache
- * License, Version 2.0 (the "License"); you may not use this file
- * except in compliance with the License. You may obtain a copy of
- * the License at http://www.apache.org/licenses/LICENSE-2.0 .
- */
-#ifndef __com_sun_star_setup_WindowsRegistryAction_idl__
-#define __com_sun_star_setup_WindowsRegistryAction_idl__
-
-#include <com/sun/star/setup/BaseAction.idl>
-
-module com { module sun { module star { module setup {
-
-/// @deprecated
-published struct WindowsRegistryAction: BaseAction
-{
- // DocMerge: empty anyway
- string strKey;
-
- // DocMerge: empty anyway
- string strSubkey;
-
- // DocMerge: empty anyway
- string strName;
-
- // DocMerge: empty anyway
- string strValue;
-
- // DocMerge: empty anyway
- boolean bCreate;
-
- // DocMerge: empty anyway
- boolean bHexValue;
-
- // DocMerge: empty anyway
- boolean bDeleteAll;
- };
-}; }; }; };
-
-#endif
-
-/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/offapi/com/sun/star/setup/XSetup.idl b/offapi/com/sun/star/setup/XSetup.idl
deleted file mode 100644
index ca1c3ce81e30..000000000000
--- a/offapi/com/sun/star/setup/XSetup.idl
+++ /dev/null
@@ -1,99 +0,0 @@
-/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
-/*
- * This file is part of the LibreOffice project.
- *
- * This Source Code Form is subject to the terms of the Mozilla Public
- * License, v. 2.0. If a copy of the MPL was not distributed with this
- * file, You can obtain one at http://mozilla.org/MPL/2.0/.
- *
- * This file incorporates work covered by the following license notice:
- *
- * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements. See the NOTICE file distributed
- * with this work for additional information regarding copyright
- * ownership. The ASF licenses this file to you under the Apache
- * License, Version 2.0 (the "License"); you may not use this file
- * except in compliance with the License. You may obtain a copy of
- * the License at http://www.apache.org/licenses/LICENSE-2.0 .
- */
-#ifndef __com_sun_star_setup_XSetup_idl__
-#define __com_sun_star_setup_XSetup_idl__
-
-#include <com/sun/star/uno/XInterface.idl>
-#include <com/sun/star/setup/OSType.idl>
-#include <com/sun/star/setup/UpdateType.idl>
-#include <com/sun/star/setup/ModuleInfo.idl>
-#include <com/sun/star/setup/InstallEnvironment.idl>
-#include <com/sun/star/setup/InstallResponse.idl>
-#include <com/sun/star/setup/VersionIdentifier.idl>
-#include <com/sun/star/setup/SizeInfo.idl>
-#include <com/sun/star/setup/MirrorEntry.idl>
-
-module com { module sun { module star { module setup {
-
-/// @deprecated
-published interface XSetup: com::sun::star::uno::XInterface
-{
- // DocMerge: empty anyway
- boolean isVersionSupported ( [in] VersionIdentifier aVerIdentifier );
-
- // DocMerge: empty anyway
- sequence <short> getAvailableLanguages ( [in] VersionIdentifier aVerIdentifier );
-
- // DocMerge: empty anyway
- ModuleInfo getRootModule ( [in] VersionIdentifier aVerIdentifier );
-
- // DocMerge: empty anyway
- void setHiddenModule ( [in] VersionIdentifier aVerIdentifier,
- [in] string strModuleID,
- [in] boolean bHidden );
-
- // DocMerge: empty anyway
- string getProductname ( [in] VersionIdentifier aVerIdentifier );
-
- // DocMerge: empty anyway
- string getVendorname ( [in] VersionIdentifier aVerIdentifier );
-
- // DocMerge: empty anyway
- string getDefaultDestinationPath ( [in] VersionIdentifier aVerIdentifier );
-
- // DocMerge: empty anyway
- SizeInfo getStandardSizeValues ( [in] VersionIdentifier aVerIdentifier,
- [in] sequence <short> seqLanguages );
-
- // DocMerge: empty anyway
- string getHelpText ( [in] VersionIdentifier aVerIdentifier,
- [in] string strPagename );
-
- // DocMerge: empty anyway
- string getReadmeText ( [in] VersionIdentifier aVerIdentifier );
-
- // DocMerge: empty anyway
- string getLicenseText ( [in] VersionIdentifier aVerIdentifier );
-
- // DocMerge: empty anyway
- string getNativeLocation ( [in] VersionIdentifier aVerIdentifier );
-
- // DocMerge: empty anyway
- sequence < any > getMirrorList ( [in] VersionIdentifier aVerIdentifier );
-
- // DocMerge: empty anyway
- UpdateType isUpdateAvailable ( [in] VersionIdentifier aVerIdentifier,
- [out] VersionIdentifier aNewVerIdentifier );
-
- // DocMerge: empty anyway
- boolean isModuleAvailable ( [in] VersionIdentifier aVerIdentifier,
- [in] string strModuleID );
-
- // DocMerge: empty anyway
- sequence < any > getActionListForInstall ( [in] VersionIdentifier aVerIdentifier,
- [in] VersionIdentifier aOldVerIdentifier,
- [in] InstallEnvironment aEnvironment,
- [out] InstallResponse aResponse );
- };
-
-}; }; }; };
-
-#endif
-
-/* vim:set shiftwidth=4 softtabstop=4 expandtab: */