Krita Source Code Documentation
Loading...
Searching...
No Matches
KoSvgTextFlipShapeContourTypeCommand.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 KOSVGTEXTFLIPSHAPETYPECOMMAND_H
7#define KOSVGTEXTFLIPSHAPETYPECOMMAND_H
8
9#include <kundo2command.h>
10#include <kritaflake_export.h>
11
12class KoSvgTextShape;
13class KoShape;
14
16{
17public:
18 KoSvgTextFlipShapeContourTypeCommand(KoSvgTextShape* textShape, KoShape *shape, KUndo2Command *parent = nullptr);
20
21 void redo() override;
22 void undo() override;
23private:
24 struct Private;
25 QScopedPointer<Private> d;
26};
27
28#endif // KOSVGTEXTFLIPSHAPETYPECOMMAND_H
virtual void undo()
virtual void redo()