File indexing completed on 2024-05-26 04:33:49

0001 /*
0002  *  SPDX-FileCopyrightText: 2016 Dmitry Kazakov <dimula73@gmail.com>
0003  *
0004  *  SPDX-License-Identifier: GPL-2.0-or-later
0005  */
0006 
0007 #ifndef __KIS_COLORSMUDGEOP_SETTINGS_H
0008 #define __KIS_COLORSMUDGEOP_SETTINGS_H
0009 
0010 #include <QScopedPointer>
0011 #include <kis_brush_based_paintop_settings.h>
0012 
0013 
0014 class KisColorSmudgeOpSettings : public KisBrushBasedPaintOpSettings
0015 {
0016 public:
0017     KisColorSmudgeOpSettings(KisResourcesInterfaceSP resourcesInterface);
0018     ~KisColorSmudgeOpSettings() override;
0019 
0020     QList<KisUniformPaintOpPropertySP> uniformProperties(KisPaintOpSettingsSP settings, QPointer<KisPaintOpPresetUpdateProxy> updateProxy) override;
0021 
0022 private:
0023     struct Private;
0024     const QScopedPointer<Private> m_d;
0025 };
0026 
0027 typedef KisSharedPtr<KisColorSmudgeOpSettings> KisColorSmudgeOpSettingsSP;
0028 
0029 #endif /* __KIS_COLORSMUDGEOP_SETTINGS_H */