use insert function instead of for loop
[LibreOffice.git] / desktop / source / deployment / gui / dp_gui_updatedata.hxx
blobefac4c587bc6cb1e1a51114d347d8134df6cebcb
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
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/.
9 * This file incorporates work covered by the following license notice:
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 .
19 #pragma once
21 #include <sal/config.h>
22 #include <rtl/ustring.hxx>
23 #include <com/sun/star/uno/Reference.hxx>
24 #include <utility>
26 namespace com::sun::star::deployment {
27 class XPackage;
29 namespace com::sun::star::xml::dom {
30 class XNode;
34 namespace dp_gui {
36 struct UpdateData
38 explicit UpdateData( css::uno::Reference< css::deployment::XPackage > xExt):
39 bIsShared(false), aInstalledPackage(std::move(xExt)) {};
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.
44 bool bIsShared;
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;
50 //The version of the update
51 OUString updateVersion;
53 //For online update
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;
65 //For local update
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;
74 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */