VirtualBox

source: vbox/trunk/src/VBox/Frontends/VirtualBox/src/extensions/QIArrowButtonPress.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.0 KB
Line 
1/* $Id: QIArrowButtonPress.h 104358 2024-04-18 05:33:40Z vboxsync $ */
2/** @file
3 * VBox Qt GUI - Qt extensions: QIArrowButtonPress 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_extensions_QIArrowButtonPress_h
29#define FEQT_INCLUDED_SRC_extensions_QIArrowButtonPress_h
30#ifndef RT_WITHOUT_PRAGMA_ONCE
31# pragma once
32#endif
33
34/* GUI includes: */
35#include "QIRichToolButton.h"
36#include "UILibraryDefs.h"
37
38/** QIRichToolButton extension
39 * representing arrow tool-button with text-label,
40 * can be used as back/next buttons in various places. */
41class SHARED_LIBRARY_STUFF QIArrowButtonPress : public QIRichToolButton
42{
43 Q_OBJECT;
44
45public:
46
47 /** Button types. */
48 enum ButtonType { ButtonType_Back, ButtonType_Next };
49
50 /** Constructs button passing @a pParent to the base-class.
51 * @param enmButtonType Brings which type of the button it is. */
52 QIArrowButtonPress(ButtonType enmButtonType, QWidget *pParent = 0);
53
54protected:
55
56 /** Handles key-press @a pEvent. */
57 virtual void keyPressEvent(QKeyEvent *pEvent) RT_OVERRIDE;
58
59private slots:
60
61 /** Handles translation event. */
62 void sltRetranslateUI();
63
64private:
65
66 /** Holds the button-type. */
67 ButtonType m_enmButtonType;
68};
69
70#endif /* !FEQT_INCLUDED_SRC_extensions_QIArrowButtonPress_h */
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use