summaryrefslogtreecommitdiff
path: root/offapi/com/sun/star/installation/XProtocolHandlerCheck.idl
diff options
context:
space:
mode:
Diffstat (limited to 'offapi/com/sun/star/installation/XProtocolHandlerCheck.idl')
-rw-r--r--offapi/com/sun/star/installation/XProtocolHandlerCheck.idl74
1 files changed, 0 insertions, 74 deletions
diff --git a/offapi/com/sun/star/installation/XProtocolHandlerCheck.idl b/offapi/com/sun/star/installation/XProtocolHandlerCheck.idl
deleted file mode 100644
index c53776ff5352..000000000000
--- a/offapi/com/sun/star/installation/XProtocolHandlerCheck.idl
+++ /dev/null
@@ -1,74 +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_installation_XProtocolHandlerCheck_idl__
-#define __com_sun_star_installation_XProtocolHandlerCheck_idl__
-
-#include <com/sun/star/uno/XInterface.idl>
-
-#include <com/sun/star/installation/ProtDlgRes.idl>
-
-
-
-module com { module sun { module star { module installation {
-
-
-/// @deprecated
-published interface XProtocolHandlerCheck: com::sun::star::uno::XInterface
-{
-
- // DocMerge from xml: method com::sun::star::installation::XProtocolHandlerCheck::isSingleSettingAvailable
- /** checks if it is possible to set particular protocols.
- */
- boolean isSingleSettingAvailable();
-
-
- // DocMerge from xml: method com::sun::star::installation::XProtocolHandlerCheck::isProtocolHandler
- /** checks if StarOffice is the protocol-handler, for the particular protocol
- */
- boolean isProtocolHandler( [in] short nWhich );
-
-
- // DocMerge from xml: method com::sun::star::installation::XProtocolHandlerCheck::setProtocolHandler
- /** Make StarOffice the protocol-handler.@see isProtocolHandler
- */
- boolean setProtocolHandler( [in] short nWhich );
-
-
- // DocMerge from xml: method com::sun::star::installation::XProtocolHandlerCheck::checkProtocolHandler
- /** First, the method checks if StarOffice is
- already the protocol-handler. If yes, simply
- return NOCHANGE; otherwise, show a dialog which asks the user
- if he wants StarOffice to be the standard protocol-handler.
- The dialog has "Yes" and "No" buttons, and a checkbox
- with "Always display this message". The checkbox
- is initially checked. If the "Yes" button was pressed,
- it performs all necessary action to make StarOffice the
- protocol-handler. If the "No" button was pressed,
- don't perform any action. Both buttons closes the dialog.@see isProtocolHandler
- */
- com::sun::star::installation::ProtDlgRes checkProtocolHandler( [in] short nWhich );
-
-};
-
-
-}; }; }; };
-
-#endif
-
-/* vim:set shiftwidth=4 softtabstop=4 expandtab: */