Krita Source Code Documentation
Loading...
Searching...
No Matches
SvgCssHelper.h
Go to the documentation of this file.
1/* This file is part of the KDE project
2 * SPDX-FileCopyrightText: 2009 Jan Hambrecht <jaham@gmx.net>
3 *
4 * SPDX-License-Identifier: LGPL-2.0-or-later
5 */
6
7#ifndef SVGCSSHELPER_H
8#define SVGCSSHELPER_H
9
10#include <QStringList>
11
12#include <QDomDocument>
13
15{
16public:
19
21 void parseStylesheet(const QDomElement &);
22
28 QStringList matchStyles(const QDomElement &element) const;
29
30private:
31 class Private;
32 Private * const d;
33};
34
35#endif // SVGCSSHELPER_H
Private *const d
QStringList matchStyles(const QDomElement &element) const
void parseStylesheet(const QDomElement &)
Parses css style sheet in given xml element.