File indexing completed on 2024-05-26 04:34:03

0001 /*
0002  *  SPDX-FileCopyrightText: 2022 Dmitry Kazakov <dimula73@gmail.com>
0003  *
0004  *  SPDX-License-Identifier: GPL-2.0-or-later
0005  */
0006 #ifndef KISCOMPOSITEOPOPTIONMODEL_H
0007 #define KISCOMPOSITEOPOPTIONMODEL_H
0008 
0009 #include <lager/cursor.hpp>
0010 #include <lager/extra/qt.hpp>
0011 
0012 #include "KisCompositeOpOptionData.h"
0013 
0014 
0015 class KisCompositeOpOptionModel : public QObject
0016 {
0017     Q_OBJECT
0018 public:
0019     KisCompositeOpOptionModel(lager::cursor<KisCompositeOpOptionData> optionData);
0020     lager::cursor<KisCompositeOpOptionData> optionData;
0021 
0022     LAGER_QT_CURSOR(QString, compositeOpId);
0023     LAGER_QT_CURSOR(bool, eraserMode);
0024 };
0025 
0026 #endif // KISCOMPOSITEOPOPTIONMODEL_H