File indexing completed on 2025-01-26 04:10:26

0001 /*
0002  * layergroupswitcher.h -- Part of Krita
0003  *
0004  * SPDX-FileCopyrightText: 2013 Boudewijn Rempt (boud@valdyas.org)
0005  *
0006  *  SPDX-License-Identifier: GPL-2.0-or-later
0007  */
0008 #ifndef LAYERGROUP_SWITCHER_H
0009 #define LAYERGROUP_SWITCHER_H
0010 
0011 #include <QVariant>
0012 
0013 #include <KisActionPlugin.h>
0014 
0015 class LayerGroupSwitcher : public KisActionPlugin
0016 {
0017     Q_OBJECT
0018 public:
0019     LayerGroupSwitcher(QObject *parent, const QVariantList &);
0020     ~LayerGroupSwitcher() override;
0021 
0022 private Q_SLOTS:
0023 
0024     void moveIntoNextGroup();
0025     void moveIntoPreviousGroup();
0026 };
0027 
0028 #endif // LAYERGROUP_SWITCHER_H