Krita Source Code Documentation
Loading...
Searching...
No Matches
layergroupswitcher.h
Go to the documentation of this file.
1/*
2 * layergroupswitcher.h -- Part of Krita
3 *
4 * SPDX-FileCopyrightText: 2013 Boudewijn Rempt (boud@valdyas.org)
5 *
6 * SPDX-License-Identifier: GPL-2.0-or-later
7 */
8#ifndef LAYERGROUP_SWITCHER_H
9#define LAYERGROUP_SWITCHER_H
10
11#include <QVariant>
12
13#include <KisActionPlugin.h>
14
16{
17 Q_OBJECT
18public:
19 LayerGroupSwitcher(QObject *parent, const QVariantList &);
20 ~LayerGroupSwitcher() override;
21
22private Q_SLOTS:
23
24 void moveIntoNextGroup();
26};
27
28#endif // LAYERGROUP_SWITCHER_H
LayerGroupSwitcher(QObject *parent, const QVariantList &)