File indexing completed on 2024-06-09 04:28:22

0001 /*
0002  *  SPDX-FileCopyrightText: 2015 Wolthera van Hövell tot Westerflier <griffinvalley@gmail.com>
0003  *
0004  *  SPDX-License-Identifier: GPL-2.0-or-later
0005  */
0006 
0007 #ifndef KIS_TANGENTNORMAL_PAINTOP_SETTINGS_WIDGET_H_
0008 #define KIS_TANGENTNORMAL_PAINTOP_SETTINGS_WIDGET_H_
0009 
0010 #include <kis_brush_based_paintop_options_widget.h>
0011 
0012 
0013 class KisTangentNormalPaintOpSettingsWidget : public KisBrushBasedPaintopOptionWidget
0014 {
0015     Q_OBJECT
0016 
0017 public:
0018     KisTangentNormalPaintOpSettingsWidget(QWidget* parent, KisResourcesInterfaceSP resourcesInterface, KoCanvasResourcesInterfaceSP canvasResourcesInterface);
0019     ~KisTangentNormalPaintOpSettingsWidget() override;
0020 
0021     KisPropertiesConfigurationSP configuration() const override;
0022 };
0023 
0024 
0025 
0026 #endif // KIS_TANGENTNORMAL_PAINTOP_SETTINGS_WIDGET_H_