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 KisNodeSP node,
25 const QString strokeStyle = defaultStrokeStyle,
26 const QString fillStyle = defaultFillStyle);
27
28};
29
30#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-2025 The KDE developers.
Generated on Fri Jan 31 2025 12:06:53 by doxygen 1.13.2 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.