Update ooo320-m1
[ooovba.git] / desktop / source / deployment / gui / dp_gui_updatedata.hxx
bloba764c63c01da9eb025f6a0b96bee611e08865114
1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * Copyright 2008 by Sun Microsystems, Inc.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * $RCSfile: dp_gui_updatedata.hxx,v $
10 * $Revision: 1.4 $
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;
42 class XPackage;
43 }}}}
44 namespace com { namespace sun { namespace star { namespace xml { namespace dom {
45 class XNode;
46 }}}}}
49 namespace dp_gui {
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 );
58 ~UpdateListEntry();
61 typedef ::boost::shared_ptr< UpdateListEntry > TUpdateListEntry;
64 struct UpdateData
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
72 //during the download
73 ::rtl::OUString sLocalURL;
74 //The URL of the website wher the download can be obtained.
75 ::rtl::OUString sWebsiteURL;
79 #endif