File indexing completed on 2024-05-19 04:26:43

0001 /*
0002  *  SPDX-FileCopyrightText: 2024 Dmitry Kazakov <dimula73@gmail.com>
0003  *
0004  *  SPDX-License-Identifier: GPL-2.0-or-later
0005  */
0006 #ifndef KISTRANSFORMMASKTESTINGINTERFACE_H
0007 #define KISTRANSFORMMASKTESTINGINTERFACE_H
0008 
0009 #include <QMutex>
0010 #include "kritaimage_export.h"
0011 
0012 class KRITAIMAGE_EXPORT KisTransformMaskTestingInterface
0013 {
0014 public:
0015     virtual ~KisTransformMaskTestingInterface();
0016 
0017     virtual void notifyForceUpdateTimedNode() = 0;
0018     virtual void notifyThreadSafeForceStaticImageUpdate() = 0;
0019     virtual void notifySlotDelayedStaticUpdate() = 0;
0020     virtual void notifyDecorateRectTriggeredStaticImageUpdate() = 0;
0021 
0022     virtual void notifyRecalculateStaticImage() = 0;
0023 };
0024 
0025 #endif // KISTRANSFORMMASKTESTINGINTERFACE_H