use insert function instead of for loop
[LibreOffice.git] / desktop / source / deployment / gui / dp_gui_updateinstalldialog.hxx
blob39b37ed4bc77e85526e93ee4507b483a9165f7d0
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 .
20 #pragma once
22 #include <sal/config.h>
23 #include <vcl/weld.hxx>
24 #include <rtl/ref.hxx>
26 #include <string_view>
27 #include <vector>
29 /// @HTML
30 namespace com::sun::star::deployment {
31 class XExtensionManager;
33 namespace com::sun::star::uno {
34 class XComponentContext;
37 namespace dp_gui {
39 struct UpdateData;
40 class UpdateCommandEnv;
43 /**
44 The modal &ldquo;Download and Installation&rdquo; dialog.
46 class UpdateInstallDialog : public weld::GenericDialogController
48 public:
49 /**
50 Create an instance.
52 @param parent
53 the parent window, may be null
55 UpdateInstallDialog(weld::Window* parent, std::vector<UpdateData> & aVecUpdateData,
56 css::uno::Reference< css::uno::XComponentContext > const & xCtx);
58 virtual ~UpdateInstallDialog() override;
60 virtual short run() override;
62 private:
63 UpdateInstallDialog(UpdateInstallDialog const &) = delete;
64 UpdateInstallDialog& operator =(UpdateInstallDialog const &) = delete;
66 class Thread;
67 friend class Thread;
68 friend class UpdateCommandEnv;
70 DECL_LINK(cancelHandler, weld::Button&, void);
72 //signals in the dialog that we have finished.
73 void updateDone();
74 //Writes a particular error into the info listbox.
75 enum INSTALL_ERROR
77 ERROR_DOWNLOAD,
78 ERROR_INSTALLATION,
79 ERROR_LICENSE_DECLINED
81 void setError(INSTALL_ERROR err, std::u16string_view sExtension, std::u16string_view exceptionMessage);
82 void setError(std::u16string_view exceptionMessage);
83 const css::uno::Reference< css::deployment::XExtensionManager >& getExtensionManager() const
84 { return m_xExtensionManager; }
86 rtl::Reference< Thread > m_thread;
87 css::uno::Reference< css::deployment::XExtensionManager > m_xExtensionManager;
88 //Signals that an error occurred during download and installation
89 bool m_bError;
90 bool m_bNoEntry;
92 OUString m_sInstalling;
93 OUString m_sFinished;
94 OUString m_sNoErrors;
95 OUString m_sErrorDownload;
96 OUString m_sErrorInstallation;
97 OUString m_sErrorLicenseDeclined;
98 OUString m_sNoInstall;
99 OUString m_sThisErrorOccurred;
101 std::unique_ptr<weld::Label> m_xFt_action;
102 std::unique_ptr<weld::ProgressBar> m_xStatusbar;
103 std::unique_ptr<weld::Label> m_xFt_extension_name;
104 std::unique_ptr<weld::TextView> m_xMle_info;
105 std::unique_ptr<weld::Button> m_xHelp;
106 std::unique_ptr<weld::Button> m_xOk;
107 std::unique_ptr<weld::Button> m_xCancel;
112 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */