1 | /* |
2 | This file is part of the KDE libraries |
3 | SPDX-FileCopyrightText: 2010 Teo Mrnjavac <teo@kde.org> |
4 | |
5 | SPDX-License-Identifier: LGPL-2.1-or-later |
6 | */ |
7 | |
8 | #ifndef KABOUT_APPLICATION_LIST_VIEW_H |
9 | #define KABOUT_APPLICATION_LIST_VIEW_H |
10 | |
11 | #include <QListView> |
12 | |
13 | namespace KDEPrivate |
14 | { |
15 | class KAboutApplicationListView : public QListView |
16 | { |
17 | Q_OBJECT |
18 | public: |
19 | explicit KAboutApplicationListView(QWidget *parent = nullptr); |
20 | |
21 | protected: |
22 | void wheelEvent(QWheelEvent *e) override; |
23 | }; |
24 | |
25 | } // namespace KDEPrivate |
26 | |
27 | #endif // KABOUT_APPLICATION_LIST_VIEW_H |
28 | |