Krita Source Code Documentation
Loading...
Searching...
No Matches
KoSvgTextReorderShapeInsideCommand.h
Go to the documentation of this file.
1/*
2 * SPDX-FileCopyrightText: 2025 Wolthera van Hövell tot Westerflier <griffinvalley@gmail.com>
3 *
4 * SPDX-License-Identifier: GPL-2.0-or-later
5 */
6#ifndef KOSVGTEXTREORDERSHAPEINSIDECOMMAND_H
7#define KOSVGTEXTREORDERSHAPEINSIDECOMMAND_H
8
9#include <kundo2command.h>
10#include <kritaflake_export.h>
11
12class KoSvgTextShape;
13class KoShape;
14
22{
23public:
30
31 KoSvgTextReorderShapeInsideCommand(KoSvgTextShape* textShape, QList<KoShape*> shape, MoveShapeType type, KUndo2Command *parent = nullptr);
33
34 void redo() override;
35 void undo() override;
36private:
37 struct Private;
38 QScopedPointer<Private> d;
39};
40
41#endif // KOSVGTEXTREORDERSHAPEINSIDECOMMAND_H
virtual void undo()
virtual void redo()
The KoSvgTextReorderShapeInsideCommand class Within a text shape, the order of the shapes inside dete...