File indexing completed on 2024-12-22 04:15:12
0001 /* 0002 * SPDX-FileCopyrightText: 2023 killy |0veufOrever <80536642@qq.com> 0003 * SPDX-FileCopyrightText: 2023 Deif Lou <ginoba@gmail.com> 0004 * 0005 * SPDX-License-Identifier: GPL-2.0-or-later 0006 */ 0007 0008 #ifndef KISSAMPLESCREENCOLOR_H 0009 #define KISSAMPLESCREENCOLOR_H 0010 0011 #include <QVariant> 0012 0013 #include <KisActionPlugin.h> 0014 #include "kis_types.h" 0015 0016 class KisSampleScreenColor : public KisActionPlugin 0017 { 0018 Q_OBJECT 0019 0020 public: 0021 KisSampleScreenColor(QObject *parent, const QVariantList &); 0022 ~KisSampleScreenColor() override; 0023 0024 private Q_SLOTS: 0025 void slotSampleScreenColor(bool sampleRealCanvas); 0026 }; 0027 0028 #endif // KISSAMPLESCREENCOLOR_H