Krita

PaintingResources.h
1/*
2 * SPDX-FileCopyrightText: 2020 Scott Petrovic <scottpetrovic@gmail.com>
3 *
4 * SPDX-License-Identifier: GPL-2.0-or-later
5 */
6#ifndef LIBKIS_PAINTINGRESOURCES_H
7#define LIBKIS_PAINTINGRESOURCES_H
8
9#include "kis_figure_painting_tool_helper.h"
10
11/**
12 * @brief The PaintingResources namespace
13 * Sets up information related to making painting strokes.
14 * Used primarily in the Node class
15 *
16 */
18{
19 // These are set in Node.sip
20 const QString defaultStrokeStyle = "ForegroundColor";
21 const QString defaultFillStyle = "None";
22
23 KisFigurePaintingToolHelper createHelper(KisImageWSP image,
24 const QString strokeStyle = defaultStrokeStyle,
25 const QString fillStyle = defaultFillStyle);
26
27};
28
29#endif // LIBKIS_PAINTINGRESOURCES_H
The PaintingResources namespace Sets up information related to making painting strokes.
This file is part of the KDE documentation.
Documentation copyright © 1996-2024 The KDE developers.
Generated on Fri Jul 26 2024 11:55:54 by doxygen 1.11.0 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.