VirtualBox

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

Last change on this file was 104358, checked in by vboxsync, 7 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
RevLine 
[55401]1/* $Id: UIToolBox.h 104358 2024-04-18 05:33:40Z vboxsync $ */
[25177]2/** @file
[87301]3 * VBox Qt GUI - UIToolBox class declaration.
[25177]4 */
5
6/*
[98103]7 * Copyright (C) 2006-2023 Oracle and/or its affiliates.
[25177]8 *
[96407]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
[25177]26 */
27
[87301]28#ifndef FEQT_INCLUDED_SRC_widgets_UIToolBox_h
29#define FEQT_INCLUDED_SRC_widgets_UIToolBox_h
[76532]30#ifndef RT_WITHOUT_PRAGMA_ONCE
31# pragma once
32#endif
[25177]33
[84889]34/* Qt includes: */
[87301]35#include <QFrame>
36#include <QMap>
[84889]37
[40870]38/* Local includes: */
[104358]39#include "UILibraryDefs.h"
[26079]40
[40870]41/* Forward declarations: */
[87301]42class QVBoxLayout;
[84889]43class QLabel;
[87301]44class UIToolBoxPage;
[25177]45
[88271]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.). */
[104358]48class SHARED_LIBRARY_STUFF UIToolBox : public QFrame
[84915]49{
50
[84889]51 Q_OBJECT;
52
[84917]53signals:
54
55
[84889]56public:
57
[87301]58 UIToolBox(QWidget *pParent = 0);
[87364]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);
[87722]62 void setPageTitleIcon(int iIndex, const QIcon &icon, const QString &strIconToolTip = QString());
[87318]63 void setCurrentPage(int iIndex);
[93990]64 virtual QSize minimumSizeHint() const RT_OVERRIDE;
[84889]65
[84918]66private slots:
67
[87301]68 void sltHandleShowPageWidget();
[84918]69
[84889]70private:
71
72 void prepare();
73
[87301]74 QVBoxLayout *m_pMainLayout;
75 QMap<int, UIToolBoxPage*> m_pages;
[87318]76 int m_iCurrentPageIndex;
77 int m_iPageCount;
[84889]78};
79
[87301]80#endif /* !FEQT_INCLUDED_SRC_widgets_UIToolBox_h */
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use