Krita Source Code Documentation
Loading...
Searching...
No Matches
kis_boundary.h
Go to the documentation of this file.
1/*
2 * SPDX-FileCopyrightText: 2005 Bart Coppens <kde@bartcoppens.be>
3 *
4 * SPDX-License-Identifier: GPL-2.0-or-later
5 */
6#ifndef _KIS_BOUNDARY_H_
7#define _KIS_BOUNDARY_H_
8
9#include <QPainter>
10
11#include <kritabrush_export.h>
12
13#include "kis_types.h"
14
29class BRUSH_EXPORT KisBoundary
30{
31public:
34 void generateBoundary();
35
36 void paint(QPainter& painter) const;
37
39 QPainterPath path() const;
40
41private:
42 struct Private;
43 Private* const d;
44};
45
46#endif // _KIS_BOUNDARY_H_
Private *const d