1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
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 .
22 #include <sal/config.h>
23 #include <vcl/weld.hxx>
24 #include <rtl/ref.hxx>
26 #include <string_view>
30 namespace com::sun::star::deployment
{
31 class XExtensionManager
;
33 namespace com::sun::star::uno
{
34 class XComponentContext
;
40 class UpdateCommandEnv
;
44 The modal “Download and Installation” dialog.
46 class UpdateInstallDialog
: public weld::GenericDialogController
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
;
63 UpdateInstallDialog(UpdateInstallDialog
const &) = delete;
64 UpdateInstallDialog
& operator =(UpdateInstallDialog
const &) = delete;
68 friend class UpdateCommandEnv
;
70 DECL_LINK(cancelHandler
, weld::Button
&, void);
72 //signals in the dialog that we have finished.
74 //Writes a particular error into the info listbox.
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
92 OUString m_sInstalling
;
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: */