1// Copyright (C) 2016 The Qt Company Ltd.
2// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
3
4#ifndef QDYNAMICTOOLBAREXTENSION_P_H
5#define QDYNAMICTOOLBAREXTENSION_P_H
6
7//
8// W A R N I N G
9// -------------
10//
11// This file is not part of the Qt API. It exists purely as an
12// implementation detail. This header file may change from version to
13// version without notice, or even be removed.
14//
15// We mean it.
16//
17
18#include <QtWidgets/private/qtwidgetsglobal_p.h>
19#include "QtWidgets/qtoolbutton.h"
20
21QT_REQUIRE_CONFIG(toolbutton);
22
23QT_BEGIN_NAMESPACE
24
25class Q_AUTOTEST_EXPORT QToolBarExtension : public QToolButton
26{
27 Q_OBJECT
28
29public:
30 explicit QToolBarExtension(QWidget *parent);
31 void paintEvent(QPaintEvent *) override;
32 QSize sizeHint() const override;
33
34public Q_SLOTS:
35 void setOrientation(Qt::Orientation o);
36
37protected:
38 bool event(QEvent *e) override;
39
40private:
41 Qt::Orientation m_orientation;
42};
43
44QT_END_NAMESPACE
45
46#endif // QDYNAMICTOOLBAREXTENSION_P_H
47

source code of qtbase/src/widgets/widgets/qtoolbarextension_p.h