File indexing completed on 2024-12-22 04:15:05

0001 /*
0002  * colorrange.h -- Part of Krita
0003  *
0004  *  SPDX-FileCopyrightText: 2004 Boudewijn Rempt (boud@valdyas.org)
0005  *
0006  *  SPDX-License-Identifier: GPL-2.0-or-later
0007  */
0008 
0009 #ifndef COLORRANGE_H
0010 #define COLORRANGE_H
0011 
0012 #include <QVariant>
0013 
0014 #include <KisActionPlugin.h>
0015 
0016 class ColorRange : public KisActionPlugin
0017 {
0018     Q_OBJECT
0019 public:
0020     ColorRange(QObject *parent, const QVariantList &);
0021     ~ColorRange() override;
0022 
0023 private Q_SLOTS:
0024     void slotActivated();
0025     void selectOpaque(int id);
0026 };
0027 
0028 #endif // COLORRANGE_H