Krita Source Code Documentation
Loading...
Searching...
No Matches
colorrange.h
Go to the documentation of this file.
1/*
2 * colorrange.h -- Part of Krita
3 *
4 * SPDX-FileCopyrightText: 2004 Boudewijn Rempt (boud@valdyas.org)
5 *
6 * SPDX-License-Identifier: GPL-2.0-or-later
7 */
8
9#ifndef COLORRANGE_H
10#define COLORRANGE_H
11
12#include <QVariant>
13
14#include <KisActionPlugin.h>
15
17{
18 Q_OBJECT
19public:
20 ColorRange(QObject *parent, const QVariantList &);
21 ~ColorRange() override;
22
23private Q_SLOTS:
24 void slotActivated();
25 void selectOpaque(int id);
26};
27
28#endif // COLORRANGE_H
~ColorRange() override
Definition colorrange.cc:62
void slotActivated()
Definition colorrange.cc:66
ColorRange(QObject *parent, const QVariantList &)
Definition colorrange.cc:35
void selectOpaque(int id)
Definition colorrange.cc:74