1 /*
2  * SPDX-FileCopyrightText: 2012 Emmanuel Pescosta <emmanuelpescosta099@gmail.com>
3  *
4  * SPDX-License-Identifier: GPL-2.0-or-later
5  */
6 
7 #ifndef FOLDERSITEMLISTWIDGET_H
8 #define FOLDERSITEMLISTWIDGET_H
9 
10 #include "kitemviews/kfileitemlistwidget.h"
11 
12 /**
13  * @brief Extends KFileItemListWidget to use the right text color.
14 */
15 class FoldersItemListWidget : public KFileItemListWidget
16 {
17     Q_OBJECT
18 
19 public:
20     FoldersItemListWidget(KItemListWidgetInformant* informant, QGraphicsItem* parent);
21     ~FoldersItemListWidget() override;
22 
23 protected:
24     QPalette::ColorRole normalTextColorRole() const override;
25 };
26 
27 #endif
28 
29 
30