1 | /* $Id: UIMachineViewNormal.h 106061 2024-09-16 14:03:52Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * VBox Qt GUI - UIMachineViewNormal class declaration.
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2010-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_runtime_normal_UIMachineViewNormal_h
|
---|
29 | #define FEQT_INCLUDED_SRC_runtime_normal_UIMachineViewNormal_h
|
---|
30 | #ifndef RT_WITHOUT_PRAGMA_ONCE
|
---|
31 | # pragma once
|
---|
32 | #endif
|
---|
33 |
|
---|
34 | /* GUI includes: */
|
---|
35 | #include "UIMachineView.h"
|
---|
36 |
|
---|
37 | /** UIMachineView subclass used as normal machine view implementation. */
|
---|
38 | class UIMachineViewNormal : public UIMachineView
|
---|
39 | {
|
---|
40 | Q_OBJECT;
|
---|
41 |
|
---|
42 | public:
|
---|
43 |
|
---|
44 | /* Normal machine-view constructor: */
|
---|
45 | UIMachineViewNormal(UIMachineWindow *pMachineWindow, ulong uScreenId);
|
---|
46 | /* Normal machine-view destructor: */
|
---|
47 | virtual ~UIMachineViewNormal() {}
|
---|
48 |
|
---|
49 | private slots:
|
---|
50 |
|
---|
51 | /* Console callback handlers: */
|
---|
52 | void sltAdditionsStateChanged();
|
---|
53 |
|
---|
54 | private:
|
---|
55 |
|
---|
56 | /* Event handlers: */
|
---|
57 | bool eventFilter(QObject *pWatched, QEvent *pEvent) RT_OVERRIDE;
|
---|
58 |
|
---|
59 | /* Prepare helpers: */
|
---|
60 | void prepareCommon() RT_OVERRIDE;
|
---|
61 | void prepareFilters() RT_OVERRIDE;
|
---|
62 | void prepareConsoleConnections() RT_OVERRIDE;
|
---|
63 |
|
---|
64 | /* Cleanup helpers: */
|
---|
65 | //void cleanupConsoleConnections() {}
|
---|
66 | //void cleanupFilters() {}
|
---|
67 | //void cleanupCommon() {}
|
---|
68 |
|
---|
69 | /** Returns whether the guest-screen auto-resize is enabled. */
|
---|
70 | virtual bool isGuestAutoresizeEnabled() const RT_OVERRIDE { return m_fGuestAutoresizeEnabled; }
|
---|
71 | /** Defines whether the guest-screen auto-resize is @a fEnabled. */
|
---|
72 | virtual void setGuestAutoresizeEnabled(bool bEnabled) RT_OVERRIDE;
|
---|
73 |
|
---|
74 | /** Resends guest size-hint. */
|
---|
75 | void resendSizeHint() RT_OVERRIDE;
|
---|
76 |
|
---|
77 | /** Adjusts guest-screen size to correspond current <i>machine-window</i> size. */
|
---|
78 | void adjustGuestScreenSize() RT_OVERRIDE;
|
---|
79 |
|
---|
80 | /* Private helpers: */
|
---|
81 | QSize sizeHint() const RT_OVERRIDE;
|
---|
82 | QRect workingArea() const RT_OVERRIDE;
|
---|
83 | QSize calculateMaxGuestSize() const RT_OVERRIDE;
|
---|
84 |
|
---|
85 | /* Private members: */
|
---|
86 | bool m_fGuestAutoresizeEnabled : 1;
|
---|
87 | };
|
---|
88 |
|
---|
89 | #endif /* !FEQT_INCLUDED_SRC_runtime_normal_UIMachineViewNormal_h */
|
---|