File indexing completed on 2024-05-12 15:56:46

0001 /*
0002  *  SPDX-FileCopyrightText: 2017 Dmitry Kazakov <dimula73@gmail.com>
0003  *
0004  *  SPDX-License-Identifier: GPL-2.0-or-later
0005  */
0006 
0007 #ifndef KOSELECTEDSHAPESPROXYSIMPLE_H
0008 #define KOSELECTEDSHAPESPROXYSIMPLE_H
0009 
0010 #include <QPointer>
0011 #include <KoSelectedShapesProxy.h>
0012 
0013 class KoShapeManager;
0014 
0015 
0016 class KRITAFLAKE_EXPORT KoSelectedShapesProxySimple : public KoSelectedShapesProxy
0017 {
0018     Q_OBJECT
0019 public:
0020     KoSelectedShapesProxySimple(KoShapeManager *shapeManager);
0021     KoSelection *selection() override;
0022 
0023 private:
0024     QPointer<KoShapeManager> m_shapeManager;
0025 };
0026 
0027 #endif // KOSELECTEDSHAPESPROXYSIMPLE_H