1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5 * Copyright 2008 by Sun Microsystems, Inc.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * $RCSfile: dp_gui_updatedata.hxx,v $
12 * This file is part of OpenOffice.org.
14 * OpenOffice.org is free software: you can redistribute it and/or modify
15 * it under the terms of the GNU Lesser General Public License version 3
16 * only, as published by the Free Software Foundation.
18 * OpenOffice.org is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU Lesser General Public License version 3 for more details
22 * (a copy is included in the LICENSE file that accompanied this code).
24 * You should have received a copy of the GNU Lesser General Public License
25 * version 3 along with OpenOffice.org. If not, see
26 * <http://www.openoffice.org/license.html>
27 * for a copy of the LGPLv3 License.
29 ************************************************************************/
30 #if ! defined INCLUDED_DP_GUI_UPDATEDATA_HXX
31 #define INCLUDED_DP_GUI_UPDATEDATA_HXX
33 #include "sal/config.h"
34 #include "rtl/ustring.hxx"
35 #include "com/sun/star/uno/Reference.hxx"
37 #include <boost/shared_ptr.hpp>
40 namespace com
{ namespace sun
{ namespace star
{ namespace deployment
{
41 class XPackageManager
;
44 namespace com
{ namespace sun
{ namespace star
{ namespace xml
{ namespace dom
{
51 struct UpdateListEntry
53 ::com::sun::star::uno::Reference
< ::com::sun::star::deployment::XPackage
> m_xPackage
;
54 ::com::sun::star::uno::Reference
< ::com::sun::star::deployment::XPackageManager
> m_xPackageManager
;
56 UpdateListEntry( const ::com::sun::star::uno::Reference
< ::com::sun::star::deployment::XPackage
> &xPackage
,
57 const ::com::sun::star::uno::Reference
< ::com::sun::star::deployment::XPackageManager
> &xPackageManager
);
61 typedef ::boost::shared_ptr
< UpdateListEntry
> TUpdateListEntry
;
66 ::com::sun::star::uno::Reference
< ::com::sun::star::deployment::XPackage
> aInstalledPackage
;
68 ::com::sun::star::uno::Reference
< ::com::sun::star::deployment::XPackageManager
> aPackageManager
;
69 // The content of the update information
70 ::com::sun::star::uno::Reference
< ::com::sun::star::xml::dom::XNode
> aUpdateInfo
;
71 //The URL of the locally downloaded extension. It will only be set if there were no errors
73 ::rtl::OUString sLocalURL
;
74 //The URL of the website wher the download can be obtained.
75 ::rtl::OUString sWebsiteURL
;