File indexing completed on 2024-03-24 04:02:22

0001 /*
0002     This file is part of the KDE libraries
0003     SPDX-FileCopyrightText: 2010 Teo Mrnjavac <teo@kde.org>
0004 
0005     SPDX-License-Identifier: LGPL-2.1-or-later
0006 */
0007 
0008 #ifndef KABOUT_APPLICATION_LIST_VIEW_H
0009 #define KABOUT_APPLICATION_LIST_VIEW_H
0010 
0011 #include <QListView>
0012 
0013 namespace KDEPrivate
0014 {
0015 class KAboutApplicationListView : public QListView
0016 {
0017     Q_OBJECT
0018 public:
0019     explicit KAboutApplicationListView(QWidget *parent = nullptr);
0020 
0021 protected:
0022     void wheelEvent(QWheelEvent *e) override;
0023 };
0024 
0025 } // namespace KDEPrivate
0026 
0027 #endif // KABOUT_APPLICATION_LIST_VIEW_H