VirtualBox

source: vbox/trunk/src/VBox/Frontends/VirtualBox/src/widgets/UIToolBox.h

Last change on this file was 104358, checked in by vboxsync, 5 weeks ago

FE/Qt. bugref:10622. More refactoring around the retranslation functionality.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 2.2 KB
Line 
1/* $Id: UIToolBox.h 104358 2024-04-18 05:33:40Z vboxsync $ */
2/** @file
3 * VBox Qt GUI - UIToolBox class declaration.
4 */
5
6/*
7 * Copyright (C) 2006-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_widgets_UIToolBox_h
29#define FEQT_INCLUDED_SRC_widgets_UIToolBox_h
30#ifndef RT_WITHOUT_PRAGMA_ONCE
31# pragma once
32#endif
33
34/* Qt includes: */
35#include <QFrame>
36#include <QMap>
37
38/* Local includes: */
39#include "UILibraryDefs.h"
40
41/* Forward declarations: */
42class QVBoxLayout;
43class QLabel;
44class UIToolBoxPage;
45
46/** A Qframe extension with similar API and functionality like QToolBox. I needed some for
47 * flexibility (like a second icon at the right hand side of the title etc.). */
48class SHARED_LIBRARY_STUFF UIToolBox : public QFrame
49{
50
51 Q_OBJECT;
52
53signals:
54
55
56public:
57
58 UIToolBox(QWidget *pParent = 0);
59 bool insertPage(int iIndex, QWidget *pWidget, const QString &strTitle, bool fAddEnableCheckBox = false);
60 void setPageEnabled(int iIndex, bool fEnabled);
61 void setPageTitle(int iIndex, const QString &strTitle);
62 void setPageTitleIcon(int iIndex, const QIcon &icon, const QString &strIconToolTip = QString());
63 void setCurrentPage(int iIndex);
64 virtual QSize minimumSizeHint() const RT_OVERRIDE;
65
66private slots:
67
68 void sltHandleShowPageWidget();
69
70private:
71
72 void prepare();
73
74 QVBoxLayout *m_pMainLayout;
75 QMap<int, UIToolBoxPage*> m_pages;
76 int m_iCurrentPageIndex;
77 int m_iPageCount;
78};
79
80#endif /* !FEQT_INCLUDED_SRC_widgets_UIToolBox_h */
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use