1 | /* $Id: QIArrowButtonSwitch.h 106061 2024-09-16 14:03:52Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * VBox Qt GUI - Qt extensions: QIArrowButtonSwitch class declaration.
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2006-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_extensions_QIArrowButtonSwitch_h
|
---|
29 | #define FEQT_INCLUDED_SRC_extensions_QIArrowButtonSwitch_h
|
---|
30 | #ifndef RT_WITHOUT_PRAGMA_ONCE
|
---|
31 | # pragma once
|
---|
32 | #endif
|
---|
33 |
|
---|
34 | /* Qt includes: */
|
---|
35 | #include <QIcon>
|
---|
36 |
|
---|
37 | /* GUI includes: */
|
---|
38 | #include "QIRichToolButton.h"
|
---|
39 | #include "UILibraryDefs.h"
|
---|
40 |
|
---|
41 | /** QIRichToolButton extension
|
---|
42 | * representing arrow tool-button with text-label,
|
---|
43 | * can be used as collaps/expand switch in various places. */
|
---|
44 | class SHARED_LIBRARY_STUFF QIArrowButtonSwitch : public QIRichToolButton
|
---|
45 | {
|
---|
46 | Q_OBJECT;
|
---|
47 |
|
---|
48 | public:
|
---|
49 |
|
---|
50 | /** Constructs button passing @a pParent to the base-class. */
|
---|
51 | QIArrowButtonSwitch(QWidget *pParent = 0);
|
---|
52 |
|
---|
53 | /** Defines the @a iconCollapsed and the @a iconExpanded. */
|
---|
54 | void setIcons(const QIcon &iconCollapsed, const QIcon &iconExpanded);
|
---|
55 |
|
---|
56 | /** Defines whether the button is @a fExpanded. */
|
---|
57 | void setExpanded(bool fExpanded);
|
---|
58 | /** Returns whether the button is expanded. */
|
---|
59 | bool isExpanded() const { return m_fExpanded; }
|
---|
60 |
|
---|
61 | protected slots:
|
---|
62 |
|
---|
63 | /** Handles button-click. */
|
---|
64 | virtual void sltButtonClicked() RT_OVERRIDE RT_FINAL;
|
---|
65 |
|
---|
66 | protected:
|
---|
67 |
|
---|
68 | /** Handles key-press @a pEvent. */
|
---|
69 | virtual void keyPressEvent(QKeyEvent *pEvent) RT_OVERRIDE RT_FINAL;
|
---|
70 |
|
---|
71 | private:
|
---|
72 |
|
---|
73 | /** Updates icon according button-state. */
|
---|
74 | void updateIcon() { setIcon(m_fExpanded ? m_iconExpanded : m_iconCollapsed); }
|
---|
75 |
|
---|
76 | /** Holds whether the button is expanded. */
|
---|
77 | bool m_fExpanded;
|
---|
78 |
|
---|
79 | /** Holds the icon for collapsed button. */
|
---|
80 | QIcon m_iconCollapsed;
|
---|
81 | /** Holds the icon for expanded button. */
|
---|
82 | QIcon m_iconExpanded;
|
---|
83 | };
|
---|
84 |
|
---|
85 | #endif /* !FEQT_INCLUDED_SRC_extensions_QIArrowButtonSwitch_h */
|
---|