blob: 7c8eabf44a8fab75b9a563dc48c302da82c52a89 (
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
|
/*
* 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
|