File indexing completed on 2024-05-26 04:32:08

0001 /*
0002  *  SPDX-FileCopyrightText: 2013 Sahil Nagpal <nagpal.sahil01@gmail.com>
0003  *
0004  * SPDX-License-Identifier: LGPL-2.0-or-later
0005 */
0006 
0007 #ifndef _KIS_DODGE_MIDTONES_ADJUSTMENT_H_
0008 #define _KIS_DODGE_MIDTONES_ADJUSTMENT_H_
0009 
0010 #include "KoColorTransformationFactory.h"
0011 
0012 class KisDodgeMidtonesAdjustmentFactory : public KoColorTransformationFactory
0013 {
0014 public:
0015 
0016     KisDodgeMidtonesAdjustmentFactory();
0017 
0018     QList< QPair< KoID, KoID > > supportedModels() const override;
0019 
0020     KoColorTransformation* createTransformation(const KoColorSpace* colorSpace, QHash<QString, QVariant> parameters) const override;
0021 
0022 };
0023 
0024 #endif