File indexing completed on 2024-06-16 04:16:44

0001 /*
0002  * This file is part of Krita
0003  *
0004  * SPDX-FileCopyrightText: 2006 Cyrille Berger <cberger@cberger.net>
0005  *
0006  *  SPDX-License-Identifier: GPL-2.0-or-later
0007  */
0008 
0009 #ifndef _KIS_WDG_UNSHARP_H_
0010 #define _KIS_WDG_UNSHARP_H_
0011 
0012 #include <kis_config_widget.h>
0013 
0014 class Ui_WdgUnsharp;
0015 
0016 class KisWdgUnsharp : public KisConfigWidget
0017 {
0018     Q_OBJECT
0019 public:
0020     KisWdgUnsharp(QWidget * parent);
0021     ~KisWdgUnsharp() override;
0022     inline const Ui_WdgUnsharp* widget() const {
0023         return m_widget;
0024     }
0025     void setConfiguration(const KisPropertiesConfigurationSP) override;
0026     KisPropertiesConfigurationSP configuration() const override;
0027 private:
0028     Ui_WdgUnsharp* m_widget;
0029 };
0030 
0031 #endif