1 | /* $Id: UIToolBox.h 98103 2023-01-17 14:15:46Z 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 "QIWithRetranslateUI.h"
|
---|
40 |
|
---|
41 | /* Forward declarations: */
|
---|
42 | class QVBoxLayout;
|
---|
43 | class QLabel;
|
---|
44 | class 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.). */
|
---|
48 | class SHARED_LIBRARY_STUFF UIToolBox : public QIWithRetranslateUI<QFrame>
|
---|
49 | {
|
---|
50 |
|
---|
51 | Q_OBJECT;
|
---|
52 |
|
---|
53 | signals:
|
---|
54 |
|
---|
55 |
|
---|
56 | public:
|
---|
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 |
|
---|
66 | protected:
|
---|
67 |
|
---|
68 | virtual void retranslateUi() /* override final */;
|
---|
69 |
|
---|
70 | private slots:
|
---|
71 |
|
---|
72 | void sltHandleShowPageWidget();
|
---|
73 |
|
---|
74 | private:
|
---|
75 |
|
---|
76 | void prepare();
|
---|
77 |
|
---|
78 | QVBoxLayout *m_pMainLayout;
|
---|
79 | QMap<int, UIToolBoxPage*> m_pages;
|
---|
80 | int m_iCurrentPageIndex;
|
---|
81 | int m_iPageCount;
|
---|
82 | };
|
---|
83 |
|
---|
84 | #endif /* !FEQT_INCLUDED_SRC_widgets_UIToolBox_h */
|
---|