1 | /* $Id: UIDownloaderGuestAdditions.h 106061 2024-09-16 14:03:52Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * VBox Qt GUI - UIDownloaderGuestAdditions class declaration.
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2006-2024 Oracle and/or its affiliates.
|
---|
8 | *
|
---|
9 | * This file is part of VirtualBox base platform packages, as
|
---|
10 | * available from https://www.virtualbox.org.
|
---|
11 | *
|
---|
12 | * This program is free software; you can redistribute it and/or
|
---|
13 | * modify it under the terms of the GNU General Public License
|
---|
14 | * as published by the Free Software Foundation, in version 3 of the
|
---|
15 | * License.
|
---|
16 | *
|
---|
17 | * This program is distributed in the hope that it will be useful, but
|
---|
18 | * WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
19 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
---|
20 | * General Public License for more details.
|
---|
21 | *
|
---|
22 | * You should have received a copy of the GNU General Public License
|
---|
23 | * along with this program; if not, see <https://www.gnu.org/licenses>.
|
---|
24 | *
|
---|
25 | * SPDX-License-Identifier: GPL-3.0-only
|
---|
26 | */
|
---|
27 |
|
---|
28 | #ifndef FEQT_INCLUDED_SRC_networking_UIDownloaderGuestAdditions_h
|
---|
29 | #define FEQT_INCLUDED_SRC_networking_UIDownloaderGuestAdditions_h
|
---|
30 | #ifndef RT_WITHOUT_PRAGMA_ONCE
|
---|
31 | # pragma once
|
---|
32 | #endif
|
---|
33 |
|
---|
34 | /* GUI includes: */
|
---|
35 | #include "UIDownloader.h"
|
---|
36 |
|
---|
37 | /* Forward declarations: */
|
---|
38 | class QByteArray;
|
---|
39 |
|
---|
40 | /** UIDownloader extension for background guest additions downloading. */
|
---|
41 | class SHARED_LIBRARY_STUFF UIDownloaderGuestAdditions : public UIDownloader
|
---|
42 | {
|
---|
43 | Q_OBJECT;
|
---|
44 |
|
---|
45 | signals:
|
---|
46 |
|
---|
47 | /** Notifies listeners about downloading finished.
|
---|
48 | * @param strFile Brings the downloaded file-name. */
|
---|
49 | void sigDownloadFinished(const QString &strFile);
|
---|
50 |
|
---|
51 | public:
|
---|
52 |
|
---|
53 | /** Constructs downloader. */
|
---|
54 | UIDownloaderGuestAdditions();
|
---|
55 |
|
---|
56 | private:
|
---|
57 |
|
---|
58 | /** Returns description of the current network operation. */
|
---|
59 | virtual QString description() const RT_OVERRIDE;
|
---|
60 |
|
---|
61 | /** Asks user for downloading confirmation for passed @a pReply. */
|
---|
62 | virtual bool askForDownloadingConfirmation(UINetworkReply *pReply) RT_OVERRIDE;
|
---|
63 | /** Handles downloaded object for passed @a pReply. */
|
---|
64 | virtual void handleDownloadedObject(UINetworkReply *pReply) RT_OVERRIDE;
|
---|
65 | /** Handles verified object for passed @a pReply. */
|
---|
66 | virtual void handleVerifiedObject(UINetworkReply *pReply) RT_OVERRIDE;
|
---|
67 |
|
---|
68 | /** Holds the cached received data awaiting for verification. */
|
---|
69 | QByteArray m_receivedData;
|
---|
70 | };
|
---|
71 |
|
---|
72 | #endif /* !FEQT_INCLUDED_SRC_networking_UIDownloaderGuestAdditions_h */
|
---|