Krita Source Code Documentation
Loading...
Searching...
No Matches
kis_color_source_option.h
Go to the documentation of this file.
1/*
2 * SPDX-FileCopyrightText: 2008 Thomas Zander <zander@kde.org>
3 *
4 * SPDX-License-Identifier: LGPL-2.0-or-later
5 */
6
7#ifndef _KIS_COLOR_SOURCE_OPTION_H
8#define _KIS_COLOR_SOURCE_OPTION_H
9
10#include <kritapaintop_export.h>
11
12#include <QScopedPointer>
13
14class KisColorSource;
15class KoID;
16class KisPainter;
18
19class PAINTOP_EXPORT KisColorSourceOption
20{
21public:
24
25 KisColorSource* createColorSource(const KisPainter* _painter) const;
26private:
27 struct Private;
28 const QScopedPointer<Private> d;
29};
30
31#endif
const QScopedPointer< Private > d
Definition KoID.h:30