This file is indexed.

/usr/include/plasma/paintutils.h is in kdelibs5-dev 4:4.13.0-0ubuntu1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
/*
 *   Copyright 2005 by Aaron Seigo <aseigo@kde.org>
 *   Copyright 2008 by Andrew Lake <jamboarder@yahoo.com>
 *
 *   This program is free software; you can redistribute it and/or modify
 *   it under the terms of the GNU Library General Public License as
 *   published by the Free Software Foundation; either version 2, or
 *   (at your option) any later version.
 *
 *   This program is distributed in the hope that it will be useful,
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *   GNU General Public License for more details
 *
 *   You should have received a copy of the GNU Library General Public
 *   License along with this program; if not, write to the
 *   Free Software Foundation, Inc.,
 *   51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
 */

#ifndef PLASMA_PAINTUTILS_H
#define PLASMA_PAINTUTILS_H

#include <QtGui/QApplication>
#include <QtGui/QGraphicsItem>
#include <QtGui/QPainterPath>

#include <plasma/plasma_export.h>
#include "theme.h"

/** @headerfile plasma/paintutils.h <Plasma/PaintUtils> */

namespace Plasma
{

class Svg;

/**
 *  Namespace for all Image Effects specific to Plasma
 **/
namespace PaintUtils
{

/**
 * Creates a blurred shadow of the supplied image.
 */
PLASMA_EXPORT void shadowBlur(QImage &image, int radius, const QColor &color);

/**
 * Returns a pixmap containing text with blurred shadow.
 * Text and shadow colors default to Plasma::Theme colors.
 */
PLASMA_EXPORT QPixmap shadowText(QString text,
    const QFont &font,
    QColor textColor = Plasma::Theme::defaultTheme()->color(Plasma::Theme::TextColor),
    QColor shadowColor = Plasma::Theme::defaultTheme()->color(Plasma::Theme::BackgroundColor),
    QPoint offset = QPoint(1,1),
    int radius = 2);

PLASMA_EXPORT QPixmap shadowText(QString text,
    QColor textColor = Plasma::Theme::defaultTheme()->color(Plasma::Theme::TextColor),
    QColor shadowColor = Plasma::Theme::defaultTheme()->color(Plasma::Theme::BackgroundColor),
    QPoint offset = QPoint(1,1),
    int radius = 2);

PLASMA_EXPORT QPixmap texturedText(const QString &text, const QFont &font, Plasma::Svg *texture);

PLASMA_EXPORT void drawHalo(QPainter *painter, const QRectF &rect);

/**
 * Returns a nicely rounded rectanglular path for painting.
 */
PLASMA_EXPORT QPainterPath roundedRectangle(const QRectF &rect, qreal radius);

/**
 * center two pixmap together in the biggest rectangle
 * @since 4.5
 */
PLASMA_EXPORT void centerPixmaps(QPixmap &from, QPixmap &to);

/**
 * Blends a pixmap into another
 */
PLASMA_EXPORT QPixmap transition(const QPixmap &from, const QPixmap &to, qreal amount);

} // PaintUtils namespace

} // Plasma namespace

#endif