1 | /* $Id: UIMachineViewFullscreen.h 103977 2024-03-21 02:04:52Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * VBox Qt GUI - UIMachineViewFullscreen class declaration.
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2010-2023 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_fullscreen_UIMachineViewFullscreen_h
|
---|
29 | #define FEQT_INCLUDED_SRC_runtime_fullscreen_UIMachineViewFullscreen_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 full-screen machine view implementation. */
|
---|
38 | class UIMachineViewFullscreen : public UIMachineView
|
---|
39 | {
|
---|
40 | Q_OBJECT;
|
---|
41 |
|
---|
42 | public:
|
---|
43 |
|
---|
44 | /* Fullscreen machine-view constructor: */
|
---|
45 | UIMachineViewFullscreen(UIMachineWindow *pMachineWindow, ulong uScreenId);
|
---|
46 | /* Fullscreen machine-view destructor: */
|
---|
47 | virtual ~UIMachineViewFullscreen() {}
|
---|
48 |
|
---|
49 | private slots:
|
---|
50 |
|
---|
51 | /* Handler: Console callback stuff: */
|
---|
52 | void sltAdditionsStateChanged();
|
---|
53 |
|
---|
54 | private:
|
---|
55 |
|
---|
56 | /* Event handlers: */
|
---|
57 | bool eventFilter(QObject *pWatched, QEvent *pEvent) RT_OVERRIDE;
|
---|
58 |
|
---|
59 | /* Prepare routines: */
|
---|
60 | void prepareCommon() RT_OVERRIDE;
|
---|
61 | void prepareFilters() RT_OVERRIDE;
|
---|
62 | void prepareConsoleConnections() RT_OVERRIDE;
|
---|
63 |
|
---|
64 | /* Cleanup routines: */
|
---|
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 | /** Adjusts guest-screen size to correspond current <i>working area</i> size. */
|
---|
75 | void adjustGuestScreenSize() RT_OVERRIDE;
|
---|
76 |
|
---|
77 | /* Helpers: Geometry stuff: */
|
---|
78 | QRect workingArea() const RT_OVERRIDE;
|
---|
79 | QSize calculateMaxGuestSize() const RT_OVERRIDE;
|
---|
80 |
|
---|
81 | /* Private variables: */
|
---|
82 | bool m_fGuestAutoresizeEnabled : 1;
|
---|
83 | };
|
---|
84 |
|
---|
85 | #endif /* !FEQT_INCLUDED_SRC_runtime_fullscreen_UIMachineViewFullscreen_h */
|
---|