VirtualBox

source: vbox/trunk/src/VBox/Frontends/VirtualBox/src/manager/details/UIDetailsView.h

Last change on this file was 104251, checked in by vboxsync, 8 weeks ago

FE/Qt. bugref:10622. Using new UITranslationEventListener in the manager UI classes.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
  • Property svn:mergeinfo set to (toggle deleted branches)
    /branches/VBox-3.0/src/VBox/Frontends/VirtualBox/src/selector/graphics/chooser/UIGChooserView.h58652,​70973
    /branches/VBox-3.2/src/VBox/Frontends/VirtualBox/src/selector/graphics/chooser/UIGChooserView.h66309,​66318
    /branches/VBox-4.0/src/VBox/Frontends/VirtualBox/src/selector/graphics/chooser/UIGChooserView.h70873
    /branches/VBox-4.1/src/VBox/Frontends/VirtualBox/src/selector/graphics/chooser/UIGChooserView.h74233
    /branches/VBox-4.2/src/VBox/Frontends/VirtualBox/src/selector/graphics/details/UIGDetailsView.h91503-91504,​91506-91508,​91510,​91514-91515,​91521
    /branches/VBox-4.3/src/VBox/Frontends/VirtualBox/src/selector/graphics/details/UIGDetailsView.h91223
    /branches/VBox-4.3/trunk/src/VBox/Frontends/VirtualBox/src/selector/graphics/details/UIGDetailsView.h91223
    /branches/dsen/gui/src/VBox/Frontends/VirtualBox/src/selector/graphics/chooser/UIGChooserView.h79076-79078,​79089,​79109-79110,​79112-79113,​79127-79130,​79134,​79141,​79151,​79155,​79157-79159,​79193,​79197
    /branches/dsen/gui2/src/VBox/Frontends/VirtualBox/src/selector/graphics/details/UIGDetailsView.h79562-79569,​79572-79573,​79578,​79581-79582,​79590-79591,​79598-79599,​79602-79603,​79605-79606,​79632,​79635,​79637,​79644
    /branches/dsen/gui3/src/VBox/Frontends/VirtualBox/src/selector/graphics/details/UIGDetailsView.h79645-79692
    /trunk/src/VBox/Frontends/VirtualBox/src/selector/graphics/chooser/UIGChooserView.h79225,​79271
File size: 2.4 KB
Line 
1/* $Id: UIDetailsView.h 104251 2024-04-09 12:36:47Z vboxsync $ */
2/** @file
3 * VBox Qt GUI - UIDetailsView class declaration.
4 */
5
6/*
7 * Copyright (C) 2012-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_manager_details_UIDetailsView_h
29#define FEQT_INCLUDED_SRC_manager_details_UIDetailsView_h
30#ifndef RT_WITHOUT_PRAGMA_ONCE
31# pragma once
32#endif
33
34/* GUI includes: */
35#include "QIGraphicsView.h"
36
37/* Forward declarations: */
38class UIDetails;
39
40/* Graphics details-view: */
41class UIDetailsView : public QIGraphicsView
42{
43 Q_OBJECT;
44
45signals:
46
47 /** Notifies listeners about resize. */
48 void sigResized();
49
50public:
51
52 /** Constructs a details-view passing @a pParent to the base-class.
53 * @param pParent Brings the details container to embed into. */
54 UIDetailsView(UIDetails *pParent);
55
56 /** Returns the details reference. */
57 UIDetails *details() const { return m_pDetails; }
58
59public slots:
60
61 /** Handles minimum width @a iHint change. */
62 void sltMinimumWidthHintChanged(int iHint);
63
64protected:
65
66 /** Handles resize @a pEvent. */
67 virtual void resizeEvent(QResizeEvent *pEvent) RT_OVERRIDE;
68
69private slots:
70
71 /** Updates palette. */
72 void sltUpdatePalette() { preparePalette(); }
73
74 /** Handles translation event. */
75 void sltRetranslateUI();
76
77private:
78
79 /** Prepares all. */
80 void prepare();
81 /** Prepares this. */
82 void prepareThis();
83 /** Prepares palette. */
84 void preparePalette();
85
86 /** Updates scene rectangle. */
87 void updateSceneRect();
88
89 /** Holds the details reference. */
90 UIDetails *m_pDetails;
91
92 /** Updates scene rectangle. */
93 int m_iMinimumWidthHint;
94};
95
96#endif /* !FEQT_INCLUDED_SRC_manager_details_UIDetailsView_h */
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use