[55401] | 1 | /* $Id: QIToolButton.h 106061 2024-09-16 14:03:52Z vboxsync $ */
|
---|
[25177] | 2 | /** @file
|
---|
[52727] | 3 | * VBox Qt GUI - Qt extensions: QIToolButton class declaration.
|
---|
[25177] | 4 | */
|
---|
| 5 |
|
---|
| 6 | /*
|
---|
[106061] | 7 | * Copyright (C) 2009-2024 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 |
|
---|
[76581] | 28 | #ifndef FEQT_INCLUDED_SRC_extensions_QIToolButton_h
|
---|
| 29 | #define FEQT_INCLUDED_SRC_extensions_QIToolButton_h
|
---|
[76532] | 30 | #ifndef RT_WITHOUT_PRAGMA_ONCE
|
---|
| 31 | # pragma once
|
---|
| 32 | #endif
|
---|
[25177] | 33 |
|
---|
[71346] | 34 | /* Qt includes: */
|
---|
[25177] | 35 | #include <QToolButton>
|
---|
| 36 |
|
---|
[71630] | 37 | /* GUI includes: */
|
---|
| 38 | #include "UILibraryDefs.h"
|
---|
| 39 |
|
---|
[71346] | 40 | /** QToolButton subclass with extended functionality. */
|
---|
[71630] | 41 | class SHARED_LIBRARY_STUFF QIToolButton : public QToolButton
|
---|
[25177] | 42 | {
|
---|
| 43 | Q_OBJECT;
|
---|
| 44 |
|
---|
| 45 | public:
|
---|
[39932] | 46 |
|
---|
[71346] | 47 | /** Constructs tool-button passing @a pParent to the base-class. */
|
---|
| 48 | QIToolButton(QWidget *pParent = 0);
|
---|
[39932] | 49 |
|
---|
[71346] | 50 | /** Sets whether the auto-raise status @a fEnabled. */
|
---|
| 51 | virtual void setAutoRaise(bool fEnabled);
|
---|
[54079] | 52 |
|
---|
[71346] | 53 | /** Removes the tool-button border. */
|
---|
| 54 | void removeBorder();
|
---|
[25177] | 55 | };
|
---|
| 56 |
|
---|
[76581] | 57 | #endif /* !FEQT_INCLUDED_SRC_extensions_QIToolButton_h */
|
---|