Version 6.4.0.3, tag libreoffice-6.4.0.3
[LibreOffice.git] / desktop / source / deployment / gui / dp_gui_updateinstalldialog.hxx
blobea42a7273a5ba468e2c72a60522ac2cf2701c564
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 #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>
26 #include <vector>
28 /// @HTML
29 namespace com { namespace sun { namespace star { namespace deployment {
30 class XExtensionManager;
31 }}}}
32 namespace com { namespace sun { namespace star { namespace uno {
33 class XComponentContext;
34 }}}}
36 namespace vcl { class Window; }
38 namespace dp_gui {
40 struct UpdateData;
41 class UpdateCommandEnv;
44 /**
45 The modal &ldquo;Download and Installation&rdquo; dialog.
47 class UpdateInstallDialog : public weld::GenericDialogController
49 public:
50 /**
51 Create an instance.
53 @param parent
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;
63 private:
64 UpdateInstallDialog(UpdateInstallDialog const &) = delete;
65 UpdateInstallDialog& operator =(UpdateInstallDialog const &) = delete;
67 class Thread;
68 friend class Thread;
69 friend class UpdateCommandEnv;
71 DECL_LINK(cancelHandler, weld::Button&, void);
73 //signals in the dialog that we have finished.
74 void updateDone();
75 //Writes a particular error into the info listbox.
76 enum INSTALL_ERROR
78 ERROR_DOWNLOAD,
79 ERROR_INSTALLATION,
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
90 bool m_bError;
91 bool m_bNoEntry;
93 OUString m_sInstalling;
94 OUString m_sFinished;
95 OUString m_sNoErrors;
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;
113 #endif
115 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */