Line data Source code
1 : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 : /*
3 : * This file is part of the LibreOffice project.
4 : *
5 : * This Source Code Form is subject to the terms of the Mozilla Public
6 : * License, v. 2.0. If a copy of the MPL was not distributed with this
7 : * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 : *
9 : * This file incorporates work covered by the following license notice:
10 : *
11 : * Licensed to the Apache Software Foundation (ASF) under one or more
12 : * contributor license agreements. See the NOTICE file distributed
13 : * with this work for additional information regarding copyright
14 : * ownership. The ASF licenses this file to you under the Apache
15 : * License, Version 2.0 (the "License"); you may not use this file
16 : * except in compliance with the License. You may obtain a copy of
17 : * the License at http://www.apache.org/licenses/LICENSE-2.0 .
18 : */
19 : #ifndef INCLUDED_DESKTOP_SOURCE_DEPLOYMENT_GUI_DP_GUI_UPDATEDATA_HXX
20 : #define INCLUDED_DESKTOP_SOURCE_DEPLOYMENT_GUI_DP_GUI_UPDATEDATA_HXX
21 :
22 : #include <sal/config.h>
23 : #include <rtl/ustring.hxx>
24 : #include <com/sun/star/uno/Reference.hxx>
25 :
26 : #include <boost/shared_ptr.hpp>
27 :
28 :
29 : namespace com { namespace sun { namespace star { namespace deployment {
30 : class XPackage;
31 : }}}}
32 : namespace com { namespace sun { namespace star { namespace xml { namespace dom {
33 : class XNode;
34 : }}}}}
35 :
36 :
37 : namespace dp_gui {
38 :
39 0 : struct UpdateData
40 : {
41 0 : UpdateData( ::com::sun::star::uno::Reference< ::com::sun::star::deployment::XPackage > const & aExt):
42 0 : bIsShared(false), aInstalledPackage(aExt), aUpdateSource(NULL), m_nID(0), m_bIgnored(false){};
43 :
44 : //When entries added to the listbox then there can be one for the user update and one
45 : //for the shared update. However, both list entries will contain the same UpdateData.
46 : //isShared is used to indicate which one is used for the shared entry.
47 : bool bIsShared;
48 :
49 : //The currently installed extension which is going to be updated. If the extension exist in
50 : //multiple repositories then it is the one with the highest version.
51 : ::com::sun::star::uno::Reference< ::com::sun::star::deployment::XPackage > aInstalledPackage;
52 :
53 : //The version of the update
54 : OUString updateVersion;
55 :
56 : //For online update
57 :
58 : // The content of the update information.
59 : //Only if aUpdateInfo is set then there is an online update available with a better version
60 : //than any of the currently installed extensions with the same identifier.
61 : ::com::sun::star::uno::Reference< ::com::sun::star::xml::dom::XNode > aUpdateInfo;
62 : //The URL of the locally downloaded extension. It will only be set if there were no errors
63 : //during the download
64 : OUString sLocalURL;
65 : //The URL of the website wher the download can be obtained.
66 : OUString sWebsiteURL;
67 :
68 : //For local update
69 :
70 : //The locale extension which is used as update for the user or shared repository.
71 : //If set then the data for the online update (aUpdateInfo, sLocalURL, sWebsiteURL)
72 : //are to be ignored.
73 : ::com::sun::star::uno::Reference< ::com::sun::star::deployment::XPackage >
74 : aUpdateSource;
75 :
76 : // ID to find this entry in the update listbox
77 : sal_uInt16 m_nID;
78 : bool m_bIgnored;
79 : };
80 : }
81 :
82 : #endif
83 :
84 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|