File indexing completed on 2024-04-21 03:56:13

0001 /*
0002     SPDX-FileCopyrightText: 2010 Klarälvdalens Datakonsult AB, a KDAB Group company <info@kdab.net>
0003     SPDX-FileContributor: Stephen Kelly <stephen@kdab.com>
0004 
0005     SPDX-License-Identifier: LGPL-2.0-or-later
0006 */
0007 
0008 #ifndef BREADCRUMBDIRECTIONWIDGET_H
0009 #define BREADCRUMBDIRECTIONWIDGET_H
0010 
0011 #include <QWidget>
0012 
0013 class BreadcrumbDirectionWidget : public QWidget
0014 {
0015     Q_OBJECT
0016 public:
0017     BreadcrumbDirectionWidget(QWidget *parent = nullptr, Qt::WindowFlags f = Qt::WindowFlags());
0018 
0019 protected:
0020     bool eventFilter(QObject *, QEvent *) override;
0021 };
0022 
0023 #endif