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 .
20 #ifndef INCLUDED_DESKTOP_SOURCE_DEPLOYMENT_GUI_DP_GUI_UPDATEINSTALLDIALOG_HXX
21 #define INCLUDED_DESKTOP_SOURCE_DEPLOYMENT_GUI_DP_GUI_UPDATEINSTALLDIALOG_HXX
23 #include <sal/config.h>
24 #include <vcl/weld.hxx>
25 #include <rtl/ref.hxx>
29 namespace com
{ namespace sun
{ namespace star
{ namespace deployment
{
30 class XExtensionManager
;
32 namespace com
{ namespace sun
{ namespace star
{ namespace uno
{
33 class XComponentContext
;
36 namespace vcl
{ class Window
; }
41 class UpdateCommandEnv
;
45 The modal “Download and Installation” dialog.
47 class UpdateInstallDialog
: public weld::GenericDialogController
54 the parent window, may be null
56 UpdateInstallDialog(weld::Window
* parent
, std::vector
<UpdateData
> & aVecUpdateData
,
57 css::uno::Reference
< css::uno::XComponentContext
> const & xCtx
);
59 virtual ~UpdateInstallDialog() override
;
61 virtual short run() override
;
64 UpdateInstallDialog(UpdateInstallDialog
const &) = delete;
65 UpdateInstallDialog
& operator =(UpdateInstallDialog
const &) = delete;
69 friend class UpdateCommandEnv
;
71 DECL_LINK(cancelHandler
, weld::Button
&, void);
73 //signals in the dialog that we have finished.
75 //Writes a particular error into the info listbox.
80 ERROR_LICENSE_DECLINED
82 void setError(INSTALL_ERROR err
, OUString
const & sExtension
, OUString
const & exceptionMessage
);
83 void setError(OUString
const & exceptionMessage
);
84 const css::uno::Reference
< css::deployment::XExtensionManager
>& getExtensionManager() const
85 { return m_xExtensionManager
; }
87 rtl::Reference
< Thread
> m_thread
;
88 css::uno::Reference
< css::deployment::XExtensionManager
> m_xExtensionManager
;
89 //Signals that an error occurred during download and installation
93 OUString m_sInstalling
;
96 OUString m_sErrorDownload
;
97 OUString m_sErrorInstallation
;
98 OUString m_sErrorLicenseDeclined
;
99 OUString m_sNoInstall
;
100 OUString m_sThisErrorOccurred
;
102 std::unique_ptr
<weld::Label
> m_xFt_action
;
103 std::unique_ptr
<weld::ProgressBar
> m_xStatusbar
;
104 std::unique_ptr
<weld::Label
> m_xFt_extension_name
;
105 std::unique_ptr
<weld::TextView
> m_xMle_info
;
106 std::unique_ptr
<weld::Button
> m_xHelp
;
107 std::unique_ptr
<weld::Button
> m_xOk
;
108 std::unique_ptr
<weld::Button
> m_xCancel
;
115 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */