1 | /* $Id: UIMachineViewScale.h 106061 2024-09-16 14:03:52Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * VBox Qt GUI - UIMachineViewScale 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_scale_UIMachineViewScale_h
|
---|
29 | #define FEQT_INCLUDED_SRC_runtime_scale_UIMachineViewScale_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 scaled machine view implementation. */
|
---|
38 | class UIMachineViewScale : public UIMachineView
|
---|
39 | {
|
---|
40 | Q_OBJECT;
|
---|
41 |
|
---|
42 | public:
|
---|
43 |
|
---|
44 | /* Scale machine-view constructor: */
|
---|
45 | UIMachineViewScale(UIMachineWindow *pMachineWindow, ulong uScreenId);
|
---|
46 | /* Scale machine-view destructor: */
|
---|
47 | virtual ~UIMachineViewScale() {}
|
---|
48 |
|
---|
49 | private slots:
|
---|
50 |
|
---|
51 | /* Slot to perform guest resize: */
|
---|
52 | void sltPerformGuestScale();
|
---|
53 |
|
---|
54 | private:
|
---|
55 |
|
---|
56 | /* Event handlers: */
|
---|
57 | bool eventFilter(QObject *pWatched, QEvent *pEvent) RT_OVERRIDE RT_FINAL;
|
---|
58 |
|
---|
59 | /** Applies machine-view scale-factor. */
|
---|
60 | void applyMachineViewScaleFactor() RT_OVERRIDE RT_FINAL;
|
---|
61 |
|
---|
62 | /** Resends guest size-hint. */
|
---|
63 | void resendSizeHint() RT_OVERRIDE RT_FINAL;
|
---|
64 |
|
---|
65 | /* Private helpers: */
|
---|
66 | QSize sizeHint() const RT_OVERRIDE RT_FINAL;
|
---|
67 | QRect workingArea() const RT_OVERRIDE RT_FINAL;
|
---|
68 | QSize calculateMaxGuestSize() const RT_OVERRIDE RT_FINAL;
|
---|
69 | void updateSliders() RT_OVERRIDE RT_FINAL;
|
---|
70 | };
|
---|
71 |
|
---|
72 | #endif /* !FEQT_INCLUDED_SRC_runtime_scale_UIMachineViewScale_h */
|
---|