1 | /* $Id: UINewVersionChecker.h 106061 2024-09-16 14:03:52Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * VBox Qt GUI - UINewVersionChecker 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_UINewVersionChecker_h
|
---|
29 | #define FEQT_INCLUDED_SRC_networking_UINewVersionChecker_h
|
---|
30 | #ifndef RT_WITHOUT_PRAGMA_ONCE
|
---|
31 | # pragma once
|
---|
32 | #endif
|
---|
33 |
|
---|
34 | /* GUI includes: */
|
---|
35 | #include "UILibraryDefs.h"
|
---|
36 | #include "UINetworkCustomer.h"
|
---|
37 |
|
---|
38 | /** UINetworkCustomer extension for new version check. */
|
---|
39 | class SHARED_LIBRARY_STUFF UINewVersionChecker : public UINetworkCustomer
|
---|
40 | {
|
---|
41 | Q_OBJECT;
|
---|
42 |
|
---|
43 | signals:
|
---|
44 |
|
---|
45 | /** Notifies listeners about progress failed with @a strError. */
|
---|
46 | void sigProgressFailed(const QString &strError);
|
---|
47 | /** Notifies listeners about progress canceled. */
|
---|
48 | void sigProgressCanceled();
|
---|
49 | /** Notifies listeners about progress finished. */
|
---|
50 | void sigProgressFinished();
|
---|
51 |
|
---|
52 | public:
|
---|
53 |
|
---|
54 | /** Constructs new version checker.
|
---|
55 | * @param fForcedCall Brings whether this customer has forced privelegies. */
|
---|
56 | UINewVersionChecker(bool fForcedCall);
|
---|
57 |
|
---|
58 | /** Returns whether this customer has forced privelegies. */
|
---|
59 | bool isItForcedCall() const { return m_fForcedCall; }
|
---|
60 | /** Returns url. */
|
---|
61 | QUrl url() const { return m_url; }
|
---|
62 |
|
---|
63 | public slots:
|
---|
64 |
|
---|
65 | /** Starts new version check. */
|
---|
66 | void start();
|
---|
67 | /** Cancels new version check. */
|
---|
68 | void cancel();
|
---|
69 |
|
---|
70 | protected:
|
---|
71 |
|
---|
72 | /** Handles network reply progress for @a iReceived amount of bytes among @a iTotal. */
|
---|
73 | virtual void processNetworkReplyProgress(qint64 iReceived, qint64 iTotal) RT_OVERRIDE RT_FINAL;
|
---|
74 | /** Handles network reply failed with specified @a strError. */
|
---|
75 | virtual void processNetworkReplyFailed(const QString &strError) RT_OVERRIDE RT_FINAL;
|
---|
76 | /** Handles network reply canceling for a passed @a pReply. */
|
---|
77 | virtual void processNetworkReplyCanceled(UINetworkReply *pReply) RT_OVERRIDE RT_FINAL;
|
---|
78 | /** Handles network reply finishing for a passed @a pReply. */
|
---|
79 | virtual void processNetworkReplyFinished(UINetworkReply *pReply) RT_OVERRIDE RT_FINAL;
|
---|
80 |
|
---|
81 | private:
|
---|
82 |
|
---|
83 | /** Generates platform information. */
|
---|
84 | static QString platformInfo();
|
---|
85 |
|
---|
86 | /** Holds whether this customer has forced privelegies. */
|
---|
87 | bool m_fForcedCall;
|
---|
88 | /** Holds the new version checker URL. */
|
---|
89 | QUrl m_url;
|
---|
90 | };
|
---|
91 |
|
---|
92 | #endif /* !FEQT_INCLUDED_SRC_networking_UINewVersionChecker_h */
|
---|