KQuickImageEditor

mirrorcommand.cpp
1/*
2 * SPDX-FileCopyrightText: (C) 2020 Carl Schwan <carl@carlschwan.eu>
3 *
4 * SPDX-License-Identifier: LGPL-2.1-or-later
5 */
6
7#include "mirrorcommand.h"
8
9MirrorCommand::MirrorCommand(bool horizontal, bool vertical)
10 : m_horizontal(horizontal)
11 , m_vertical(vertical)
12{
13}
14
16{
17 return image.mirrored(m_horizontal, m_vertical);
18}
19
21{
22 return image.mirrored(m_horizontal, m_vertical);
23}
virtual QImage undo(QImage image) override
Revert a change to the document.
virtual QImage redo(QImage image) override
Applies the change to the document.
QImage mirrored(bool horizontal, bool vertical) &&
This file is part of the KDE documentation.
Documentation copyright © 1996-2024 The KDE developers.
Generated on Tue Mar 26 2024 11:19:40 by doxygen 1.10.0 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.