1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*************************************************************************
4 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
6 * Copyright 2000, 2010 Oracle and/or its affiliates.
8 * OpenOffice.org - a multi-platform office productivity suite
10 * This file is part of OpenOffice.org.
12 * OpenOffice.org is free software: you can redistribute it and/or modify
13 * it under the terms of the GNU Lesser General Public License version 3
14 * only, as published by the Free Software Foundation.
16 * OpenOffice.org is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU Lesser General Public License version 3 for more details
20 * (a copy is included in the LICENSE file that accompanied this code).
22 * You should have received a copy of the GNU Lesser General Public License
23 * version 3 along with OpenOffice.org. If not, see
24 * <http://www.openoffice.org/license.html>
25 * for a copy of the LGPLv3 License.
27 ************************************************************************/
29 #include <com/sun/star/uno/XComponentContext.hpp>
30 #include <com/sun/star/task/XInteractionHandler.hpp>
31 #include <com/sun/star/deployment/UpdateInformationProvider.hpp>
34 #include "updateinfo.hxx"
36 // Returns 'true' if successfully connected to the update server
38 UpdateInfo
& o_rUpdateInfo
,
39 const ::com::sun::star::uno::Reference
< ::com::sun::star::uno::XComponentContext
>& rxContext
,
40 const ::com::sun::star::uno::Reference
< ::com::sun::star::task::XInteractionHandler
>& rxInteractionHandler
,
41 const ::com::sun::star::uno::Reference
< ::com::sun::star::deployment::XUpdateInformationProvider
>& rxProvider
44 // The same as above, that does not read the info from bootstrap
45 SAL_DLLPUBLIC_EXPORT
bool
47 UpdateInfo
& o_rUpdateInfo
,
48 const ::com::sun::star::uno::Reference
< ::com::sun::star::uno::XComponentContext
> & rxContext
,
49 const ::com::sun::star::uno::Reference
< ::com::sun::star::task::XInteractionHandler
> & rxInteractionHandler
,
50 const ::com::sun::star::uno::Reference
< ::com::sun::star::deployment::XUpdateInformationProvider
>& rUpdateInfoProvider
,
51 const rtl::OUString
&rOS
,
52 const rtl::OUString
&rArch
,
53 const ::com::sun::star::uno::Sequence
< rtl::OUString
> &rRepositoryList
,
54 const rtl::OUString
&rGitID
,
55 const rtl::OUString
&rInstallID
58 // Returns 'true' if there are updates for any extension
59 bool checkForExtensionUpdates(
60 const ::com::sun::star::uno::Reference
< ::com::sun::star::uno::XComponentContext
>& rxContext
63 bool checkForPendingUpdates(
64 const ::com::sun::star::uno::Reference
< ::com::sun::star::uno::XComponentContext
>& rxContext
67 bool storeExtensionUpdateInfos(
68 const ::com::sun::star::uno::Reference
< ::com::sun::star::uno::XComponentContext
>& rxContext
,
69 const ::com::sun::star::uno::Sequence
< ::com::sun::star::uno::Sequence
< rtl::OUString
> > &rUpdateInfos
72 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */