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