┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
path: root/src/panels/places/placesitemlistgroupheader.h
blob: dfb91f8477b0817e3dcb8f5672b65d09f50df44e (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 Peter Penz <[email protected]>
 *
 * SPDX-License-Identifier: GPL-2.0-or-later
 */

#ifndef PLACESITEMLISTGROUPHEADER_H
#define PLACESITEMLISTGROUPHEADER_H

#include "kitemviews/kstandarditemlistgroupheader.h"

class PlacesItemListGroupHeader : public KStandardItemListGroupHeader
{
    Q_OBJECT

public:
    explicit PlacesItemListGroupHeader(QGraphicsWidget* parent = nullptr);
    ~PlacesItemListGroupHeader() override;

protected:
    void paintSeparator(QPainter* painter, const QColor& color) override;

    QPalette::ColorRole normalTextColorRole() const override;
};
#endif