1 | /* $Id: VBoxLicenseViewer.h 106061 2024-09-16 14:03:52Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * VBox Qt GUI - VBoxLicenseViewer 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_VBoxLicenseViewer_h
|
---|
29 | #define FEQT_INCLUDED_SRC_VBoxLicenseViewer_h
|
---|
30 | #ifndef RT_WITHOUT_PRAGMA_ONCE
|
---|
31 | # pragma once
|
---|
32 | #endif
|
---|
33 |
|
---|
34 | /* Qt includes: */
|
---|
35 | #include <QDialog>
|
---|
36 |
|
---|
37 | /* GUI includes: */
|
---|
38 | #include "UILibraryDefs.h"
|
---|
39 |
|
---|
40 | /* Forward declarations: */
|
---|
41 | class QTextBrowser;
|
---|
42 | class QPushButton;
|
---|
43 |
|
---|
44 | /** QDialog subclass used to show a user license under linux. */
|
---|
45 | class SHARED_LIBRARY_STUFF VBoxLicenseViewer : public QDialog
|
---|
46 | {
|
---|
47 | Q_OBJECT;
|
---|
48 |
|
---|
49 | public:
|
---|
50 |
|
---|
51 | /** Constructs license viewer passing @a pParent to the base-class. */
|
---|
52 | VBoxLicenseViewer(QWidget *pParent = 0);
|
---|
53 |
|
---|
54 | /** Shows license from passed @a strLicenseText. */
|
---|
55 | int showLicenseFromString(const QString &strLicenseText);
|
---|
56 | /** Shows license from file with passed @a strLicenseFileName. */
|
---|
57 | int showLicenseFromFile(const QString &strLicenseFileName);
|
---|
58 |
|
---|
59 | protected:
|
---|
60 |
|
---|
61 | /** Preprocesses Qt @a pEvent for passed @a pObject. */
|
---|
62 | virtual bool eventFilter(QObject *pObject, QEvent *pEvent) RT_OVERRIDE;
|
---|
63 |
|
---|
64 | /** Handles Qt show @a pEvent. */
|
---|
65 | virtual void showEvent(QShowEvent *pEvent) RT_OVERRIDE;
|
---|
66 |
|
---|
67 | private slots:
|
---|
68 |
|
---|
69 | /** Executes the dialog. */
|
---|
70 | int exec() RT_OVERRIDE;
|
---|
71 |
|
---|
72 | /** Handles scroll-bar moving by a certain @a iValue. */
|
---|
73 | void sltHandleScrollBarMoved(int iValue);
|
---|
74 |
|
---|
75 | /** Uplocks buttons. */
|
---|
76 | void sltUnlockButtons();
|
---|
77 |
|
---|
78 | /** Handles translation event. */
|
---|
79 | void sltRetranslateUI();
|
---|
80 |
|
---|
81 | private:
|
---|
82 |
|
---|
83 | /** Holds the licence text browser instance. */
|
---|
84 | QTextBrowser *m_pLicenseBrowser;
|
---|
85 |
|
---|
86 | /** Holds the licence agree button instance. */
|
---|
87 | QPushButton *m_pButtonAgree;
|
---|
88 | /** Holds the licence disagree button instance. */
|
---|
89 | QPushButton *m_pButtonDisagree;
|
---|
90 | };
|
---|
91 |
|
---|
92 | #endif /* !FEQT_INCLUDED_SRC_VBoxLicenseViewer_h */
|
---|