LibreOffice Module desktop (master) 1
dp_gui_updatedata.hxx
Go to the documentation of this file.
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#pragma once
20
21#include <sal/config.h>
22#include <rtl/ustring.hxx>
23#include <com/sun/star/uno/Reference.hxx>
24#include <utility>
25
27 class XPackage;
28}
30 class XNode;
31}
32
33
34namespace dp_gui {
35
37{
38 explicit UpdateData( css::uno::Reference< css::deployment::XPackage > xExt):
39 bIsShared(false), aInstalledPackage(std::move(xExt)) {};
40
41 //When entries added to the listbox then there can be one for the user update and one
42 //for the shared update. However, both list entries will contain the same UpdateData.
43 //isShared is used to indicate which one is used for the shared entry.
45
46 //The currently installed extension which is going to be updated. If the extension exist in
47 //multiple repositories then it is the one with the highest version.
48 css::uno::Reference< css::deployment::XPackage > aInstalledPackage;
49
50 //The version of the update
51 OUString updateVersion;
52
53 //For online update
54
55 // The content of the update information.
56 //Only if aUpdateInfo is set then there is an online update available with a better version
57 //than any of the currently installed extensions with the same identifier.
58 css::uno::Reference< css::xml::dom::XNode > aUpdateInfo;
59 //The URL of the locally downloaded extension. It will only be set if there were no errors
60 //during the download
61 OUString sLocalURL;
62 //The URL of the website where the download can be obtained.
63 OUString sWebsiteURL;
64
65 //For local update
66
67 //The locale extension which is used as update for the user or shared repository.
68 //If set then the data for the online update (aUpdateInfo, sLocalURL, sWebsiteURL)
69 //are to be ignored.
70 css::uno::Reference< css::deployment::XPackage > aUpdateSource;
71};
72}
73
74/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
Definition: dp_gui.h:22
UpdateData(css::uno::Reference< css::deployment::XPackage > xExt)
css::uno::Reference< css::xml::dom::XNode > aUpdateInfo
css::uno::Reference< css::deployment::XPackage > aInstalledPackage
css::uno::Reference< css::deployment::XPackage > aUpdateSource